0byt3m1n1
Path:
/
data
/
11
/
0
/
156
/
48
/
971700
/
meta
/
1002566
/
mysql.backup
/
[
Home
]
File: 1_00e13bb_5.mysqlcluster27.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster27 Database: 1_00e13bb_5 -- ------------------------------------------------------ -- Server version 5.6.45-86.1-56-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-02-06 17:51:13','2018-02-06 17:51:13','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_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(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=205 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','http://demo.it-s.com/demo','yes'),(2,'home','http://demo.it-s.com/demo','yes'),(3,'blogname','demo','yes'),(4,'blogdescription','Just another WordPress site','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','tariq@it-s.com','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','login@example.com','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','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:89:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";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:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";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:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";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: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:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";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:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";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:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";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:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";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:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";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:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";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:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','startit','yes'),(41,'stylesheet','startit','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','posts','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'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'),(79,'widget_text','a:0:{}','yes'),(80,'widget_rss','a:0:{}','yes'),(81,'uninstall_plugins','a:0:{}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{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: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'),(93,'fresh_site','1','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'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'),(96,'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'),(97,'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'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:3:{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\";}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:4:{i:1570790451;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1570816275;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:1570866216;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";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'),(110,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1570788431;s:4:\"data\";a:4:{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\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}s:18:\"nav_menu_locations\";a:0:{}}','yes'),(121,'_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-5.2.3.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-5.2.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.3\";s:7:\"version\";s:5:\"5.2.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.3.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-5.2.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.3-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.3\";s:7:\"version\";s:5:\"5.2.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.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-5.1.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.2\";s:7:\"version\";s:5:\"5.1.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.6.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-5.0.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.6\";s:7:\"version\";s:5:\"5.0.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1570779250;s:15:\"version_checked\";s:6:\"4.9.11\";s:12:\"translations\";a:0:{}}','no'),(122,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1570789625;s:7:\"checked\";a:4:{s:7:\"startit\";s:3:\"2.7\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.5.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.0.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(123,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1570779253;s:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"4.0.2\";s:9:\"hello.php\";s:3:\"1.6\";}s:8:\"response\";a:2:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:9:\"hello.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','no'),(124,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:14:\"tariq@it-s.com\";s:7:\"version\";s:6:\"4.9.11\";s:9:\"timestamp\";i:1570779251;}','no'),(126,'_site_transient_timeout_browser_6316045c4380f2d9a3a0fddf62cb7494','1571384618','no'),(127,'_site_transient_browser_6316045c4380f2d9a3a0fddf62cb7494','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"77.0.3865.120\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(129,'_site_transient_timeout_community-events-bb7f157431189ebe342fccbc9170a37b','1570823022','no'),(130,'_site_transient_community-events-bb7f157431189ebe342fccbc9170a37b','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"39.40.97.0\";}s:6:\"events\";a:2:{i:0;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Islamabad\";s:3:\"url\";s:36:\"https://2019.islamabad.wordcamp.org/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2019-11-16 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:30:\"Islamabad, Islamabad, Pakistan\";s:7:\"country\";s:2:\"PK\";s:8:\"latitude\";d:33.7201418;s:9:\"longitude\";d:73.024578899999995;}}i:1;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:15:\"WordCamp Lahore\";s:3:\"url\";s:32:\"https://2019.lahore.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2019-11-30 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Lahore\";s:7:\"country\";s:2:\"PK\";s:8:\"latitude\";d:31.4787952;s:9:\"longitude\";d:74.304487899999998;}}}}','no'),(131,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1570823022','no'),(132,'_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:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News – – 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:\"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:\"Tue, 08 Oct 2019 21:14: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: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:40:\"https://wordpress.org/?v=5.3-beta3-46457\";s: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:51:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 20:58:43 +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:11:\"Development\";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:\"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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7312\";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:357:\"WordPress 5.3 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option) […]\";s: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:\"Francesca Marano\";s: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:3765:\"\n<p>WordPress 5.3 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta3.zip\">download the beta here</a> (zip). </li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there.</p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">beta 2</a> (and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>) over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F01%2F2019..10%2F08%2F2019&milestone=5.3&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">60 tickets have been closed</a> in the past week. </p>\n\n\n\n<h2>Some highlights </h2>\n\n\n\n<ul><li>Fixes and enhancements in the admin interface changes introduced in previous 5.3 beta releases.</li><li>Wording changes in login screen (<a href=\"https://core.trac.wordpress.org/ticket/43037\">#43037</a>).</li><li>Improved accessibility in media upload modal (<a href=\"https://core.trac.wordpress.org/ticket/47149\">#47149</a>).</li><li>Changes in the way the new error handling with images works (<a href=\"https://core.trac.wordpress.org/ticket/48200\">#48200</a>).</li><li>MediaElement.js has been updated from 4.2.6 to 4.2.13 (<a href=\"https://core.trac.wordpress.org/ticket/46681\">#46681</a>). The script is now also being loaded in the footer again. This fixes a regression that happened two years ago, so might be worth noting (<a href=\"https://core.trac.wordpress.org/ticket/44484\">#44484</a>).</li><li>Update to the REST API media endpoint to allow resuming of uploads (<a href=\"https://core.trac.wordpress.org/ticket/47987\">#47987</a>).</li></ul>\n\n\n\n<p>In addition to these, Beta 3 landed a number of small consistency and polish changes to the REST API, including an improvement to the permissions check used when editing comments, a fix for post type controller caching edge cases, and most importantly, the ability to use the _embed parameter to access the full data for a post using the /wp/v2/search endpoint.</p>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7312\";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:51:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: Alice Orru\";s: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:66:\"https://wordpress.org/news/2019/10/people-of-wordpress-alice-orru/\";s: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, 05 Oct 2019 04:24: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";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:10:\"Interviews\";s: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:\"https://wordpress.org/news/?p=7288\";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:376:\"You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Alice Orru, from Sardinia, Italy. Alice Orru was born in Sardinia, an […]\";s: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:\"Yvette Sonneveld\";s: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:10122:\"\n<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Alice Orru, from Sardinia, Italy.</strong></h2>\n\n\n\n<p>Alice Orru was born in Sardinia, an island in the middle of the Mediterranean Sea. As a child, she dreamt of becoming a flight attendant, traveling the world, and speaking many foreign languages.</p>\n\n\n\n<p>Unable to meet the height requirements of her chosen profession, Orru ended up choosing a different path in life, following the Italian mantra: “You have to study something that will guarantee a stable and secure job for life.”</p>\n\n\n\n<p>The unemployment rate in Sardinia is very high, a challenge shared throughout the surrounding islands. In addition to that, Alice wasn’t that keen on having the same job all her life, as her parents had.</p>\n\n\n\n<p>When Orru was 22 she moved to Siena, Tuscany, to finish her studies. That is when she created her first personal blog. The website was built on an Italian platform named Tiscali, which she later migrated to WordPress.com.</p>\n\n\n\n<p>After 2 years in Tuscany Orru moved to Strasbourg, France. She studied French and worked several jobs while living there. Her first serious job was in Milan – working 40 hours/week in the marketing department of a large, international company. She found herself surrounded by ambitious colleagues and a boss who constantly requested extra —unpaid— working hours per day.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?fit=632%2C422&ssl=1\" alt=\"Alice Orru\" class=\"wp-image-7291\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?w=1920&ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?w=1264&ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Alice Orru</figcaption></figure>\n\n\n\n<h2>Choices, choices, choices…</h2>\n\n\n\n<p>Alice gave up blogging because she wasn’t feeling inspired enough to write. She questioned whether she really wanted to do that job forever; working 10 hours per day under the neon lights of an office. It forced her to set aside her dreams for the time being, and for a while, she mainly lived for the weekends.</p>\n\n\n\n<p>Alice decided to leave the job and moved to Barcelona, Spain, all by herself, in 2012.</p>\n\n\n\n<p>After a few months of intense Spanish learning at the university, she found a job in an international clinic as a “Patient Coordinator.” Orru assisted international patients coming to Barcelona for their treatments. She acted as their translator, interpreter and administrative consultant. </p>\n\n\n\n<p>Patients came from Italy, France, England, Morocco, Senegal, and several other countries. Alice was so inspired by some of their stories, that she started to write again: She dusted off her WordPress blog and filled it with stories about her new life in Barcelona and some of the women she met at the clinic. “I was feeling stronger and more independent than ever,” Orru expressed.</p>\n\n\n\n<h2>Technical issues led to unexpected opportunities</h2>\n\n\n\n<p>In the summer of 2015, Alice was writing on her blog and got stuck with a technical problem. While she was searching through the WordPress.com documentation, she saw a pop-up in the bottom right corner of her screen. It was a staff member of Automattic, checking if she needed help. They chatted for a few minutes and the problem was solved. Alice left the chat with one question, though: how did that person on chat find a support job with WordPress?</p>\n\n\n\n<p>Alice found the official WordPress job page: <a href=\"http://jobs.wordpress.net/\"><strong>jobs.wordpress.net</strong></a> and noticed a job offer that caught her attention: WP Media, a French startup, was looking for a polyglot and remote customer service teammate for one of their plugins, WP Rocket. She read their requirements: fluency in English, French and possibly other languages, excellent experience with WordPress, and some coding skills.</p>\n\n\n\n<p>She knew she didn’t meet all the requirements, but could speak 4 languages, and she had a WordPress blog. She didn’t know anything about PHP, though. Orru had been a WordPress.com user for years and knew she was ready to learn more.</p>\n\n\n\n<p>Orru wrote a cover letter and sent her CV. A Skype interview was conducted and several days later she received the news that she had gotten the job! </p>\n\n\n\n<h2><strong>A steep learning curve</strong></h2>\n\n\n\n<p>The early days in her new job were intense. Alice felt inexperienced but was supported by her teammates. She started studying and reading everything about WordPress for beginners. Initially, she answered easy tickets from customers. All the while her teammates were sending useful material to read, setting up video-calls for 1 to 1 training, and encouraging her the entire time.</p>\n\n\n\n<p>Soon, Orru was replying to customers whose first language was either Spanish or Italian in their native language. This was much appreciated and resulted in several happy comments. Until that moment the plugin’s support had been offered only in English and French.</p>\n\n\n\n<h2><strong>Finding her way in the WordPress community</strong></h2>\n\n\n\n<p>At WordCamp Paris 2016, one of Alice’s teammates introduced her to how the WordPress community collaborated and kept in contact through Slack.</p>\n\n\n\n<p>“You speak multiple languages, why don’t you try to contribute to the polyglots team?” he asked.</p>\n\n\n\n<p>Alice knew very little about contributing to WordPress. She had only been working for WP Media for 6 months and didn’t feel ready to dive into a new challenge and start also contributing to WordPress.</p>\n\n\n\n<p>Yet, curiosity led her to join both the local Italian and the global WordPress Community on Slack. For the first few months, she mainly observed what was happening the channels. Then, she attended WordCamp Milan and met some members of the Italian Polyglots team.</p>\n\n\n\n<p>It was love at first string! Laura, one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=it_IT\"><strong>General Translation Editors</strong></a> (GTE) for Italy, taught her how to start contributing and translating, following the polyglots guidelines. She also told her about the Italian community’s big efforts to work together, consistently, to boost and grow WordPress related events in Italy.</p>\n\n\n\n<p>With her teammates’ encouragement, Orru applied to WordCamps as a speaker and gave her first talk in December 2016 at WordCamp Barcelona. After that, she both spoke at WordCamp Torino on April 2017 and at WordCamp Europe in 2017.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?fit=632%2C356&ssl=1\" alt=\"\" class=\"wp-image-7292\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?w=1280&ssl=1 1280w, https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?resize=300%2C169&ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?resize=1024%2C576&ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?resize=768%2C432&ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Alice Orru speaking at WordCamp Europe, in Paris, in 2017</figcaption></figure>\n\n\n\n<h2><strong>Dreams evolve, all the time!</strong></h2>\n\n\n\n<p>Orru knows that her experiences are not just due to luck. She used her previous skills and passions and adapted them to a new career and life path.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“We all have some skills; and if we don’t know which they are exactly, we should take some time to make a list of the things we’re really good at. With that in mind, just try. Apply. Get involved. Don’t get stuck in the feeling of ‘I can’t do it because I don’t know enough’. So that’s what I did. Without even realizing it, I started putting into reality the dream of the little girl who was born on an island and wanted to travel and speak different languages.WordPress made this possible. I’m now part of a big community, and I am proud of it.”</p><cite>Alice Orru</cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?w=1024&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=768%2C576&ssl=1 768w\" sizes=\"(max-width: 109px) 100vw, 109px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7288\";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:48:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"The Month in WordPress: September 2019\";s: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:73:\"https://wordpress.org/news/2019/10/the-month-in-wordpress-september-2019/\";s: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, 02 Oct 2019 08:05:43 +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:18:\"Month in 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7280\";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:338:\"September has been a particularly busy month in the WordPress community—a lot of important work has been done as everyone in the project works towards an upcoming major release. Read on to find out more about this and everything else that has been going on over the past month. WordPress 5.2.3 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:7586:\"\n<p>September has been a particularly busy month in the WordPress community—a lot of important work has been done as everyone in the project works towards an upcoming major release. Read on to find out more about this and everything else that has been going on over the past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.3 Security and Maintenance Release</h2>\n\n\n\n<p>Early in September, <a href=\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\">version 5.2.3 of WordPress was released</a> as a security and maintenance release. Sixty-two individuals contributed to its 29 fixes and enhancements.</p>\n\n\n\n<p>The security issues fixed in this release owe thanks to numerous people who disclosed them responsibly. You can read more about the vulnerability reporting process <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">in the Core handbook</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3 Enters Beta</h2>\n\n\n\n<p>WhileWordPress 5.3 is slated for release on November 12, it has already entered the beta phase with <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">the second beta release being made available</a> at the end of September. As this is a major release, it will feature a number of new features and enhancements, including <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">significant improvements to the block editor</a>, <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">updates to the Site Health component</a>, <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">new block APIs</a>, <a href=\"https://make.wordpress.org/core/2019/09/23/core-widgets-new-aria-current-attribute-in-wordpress-5-3/\">accessibility updates</a>, and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">much more</a>.</p>\n\n\n\n<p>You can test the 5.3 beta release by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a> on any WordPress site, although as this is software that is currently in development, we don’t recommend installing it on a live site.</p>\n\n\n\n<p>Want to get involved in building this release? <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Test the beta</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Date/Time Component Improvements</h2>\n\n\n\n<p>For over a year, contributors involved in <a href=\"https://make.wordpress.org/core/components/date-time/\">the Date/Time component</a> of WordPress Core have been working hard on the “wp_date” project. The goal of this project is to fix and streamline the way that Core handles times and dates throughout the platform.</p>\n\n\n\n<p>This ambitious project has seen incremental changes over the last few Core releases. The upcoming 5.3 release <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">will include the final and most significant changes</a> to the component, bringing much-needed stability to time handling in WordPress Core.</p>\n\n\n\n<p>Want to get involved in the Date/Time component of WordPress Core? <a href=\"https://make.wordpress.org/core/components/date-time/\">Learn more about it</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-datetime channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Theme Review Team Structure</h2>\n\n\n\n<p>After recent discussions around the goals of the Theme Review team, <a href=\"https://make.wordpress.org/themes/2019/09/24/new-theme-review-team-structure/\">some changes have been made</a> to the leadership structure of the team. The team leads are now ‘representatives’ of different areas of the work that they do. This flat structure allows for representatives to work in more loosely defined areas so they contribute to the team in more diverse ways, and helps the team to be more focused on setting and achieving their goals. The new structure is outlined <a href=\"https://make.wordpress.org/themes/handbook/about/members/\">in the team handbook</a>.</p>\n\n\n\n<p>Want to get involved in reviewing themes for WordPress? Follow <a href=\"https://make.wordpress.org/themes/\">the Theme Review team blog</a>, and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Default Theme: Twenty Twenty</h2>\n\n\n\n<p>The upcoming 5.3 release will also include <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">a new default theme for WordPress</a>, <em>Twenty Twenty</em>. This theme will have a strong focus on readability and accessibility while being optimized for the block editor that first shipped with WordPress 5.0.</p>\n\n\n\n<p>Development of <em>Twenty Twenty</em> has been going quickly, with <a href=\"https://make.wordpress.org/core/2019/09/30/twenty-twenty-update/\">a recent update</a> showing more of the design and layouts that you can expect when the theme is released with WordPress 5.3 in November.</p>\n\n\n\n<p>Want to get involved in building <em>Twenty Twenty</em>? You can <a href=\"https://github.com/WordPress/twentytwenty\">contribute on GitHub</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Gutenberg project has continued to see regular updates with <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">the latest version</a> set to be included in WordPress 5.3.</li><li>Members of the Community Team <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\">will run a workshop</a> to help event organizers create welcoming and diverse spaces for attendees. </li><li>There are some <a href=\"https://make.wordpress.org/updates/2019/09/20/wordpress-user-pro-survey-11-questions-and-a-script/\">proposed updates for the annual WordPress user survey</a> that need community feedback.</li><li><a href=\"https://make.wordpress.org/docs/2019/09/23/summary-for-helphub-meeting-23-september-2019/\">Work continues on the HelpHub project</a> where contributors are moving documentation to the updated support portal.</li><li>The Gutenberg team performed further usability tests in August, <a href=\"https://make.wordpress.org/test/2019/09/06/gutenberg-usability-testing-for-august-2019/\">with some interesting results</a>.</li><li><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\">Version 5.0 of BuddyPress was released</a> near the end of this month, featuring a new REST API, improved group management, and other enhancements.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7280\";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:51:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Sep 2019 21:43: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:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:\"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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7262\";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:321:\"WordPress 5.3 Beta 2 is now available! This software is still in development, so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge […]\";s: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:\"Francesca Marano\";s: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:3037:\"\n<p>WordPress 5.3 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta2.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. </p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>, over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=09%2F24%2F2019..&milestone=5.3&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">45 tickets have been closed</a> since then. </p>\n\n\n\n<h2>Some highlights</h2>\n\n\n\n<ul><li>Work continues on the <strong>block editor</strong>.</li><li>Bugs fixed on<strong> Twenty Twenty</strong>.</li><li><strong>Accessibility</strong> bugs fixes and enhancements on the interface changes introduced with 5.3 beta 1:<ul><li>Iterate on the admin interface</li><li>Reduce potential backward compatibility issues</li><li>Improve consistency between admin screens and the block editor</li><li>Better text zoom management</li></ul></li><li>Support <code>rel=\"ugc\"</code> attribute value in comments (<a href=\"https://core.trac.wordpress.org/ticket/48022\">#48022</a>) – this particular ticket shows the WordPress project ability to integrate quick solutions to things that are changing unexpectedly – like Google new features.</li></ul>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7262\";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:51:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Sep 2019 18:36: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:\"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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7114\";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:321:\"WordPress 5.3 Beta 1 is now available! This software is still in development, so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge […]\";s: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:\"Francesca Marano\";s: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:9121:\"\n<p>WordPress 5.3 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. Here are some of the big items to test, so we can find and resolve as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor: features and improvements</h2>\n\n\n\n<p>Twelve releases of the Gutenberg plugin are going to be merged into 5.3 which means there’s a long list of exciting new features. </p>\n\n\n\n<p>Here are just a few of them:</p>\n\n\n\n<ul><li>Group block and grouping interactions</li><li>Columns block improvements (width support + patterns)</li><li>Table block improvements (text alignment support, header/footer support, colors)</li><li>Gallery block improvements (reordering inline, caption support)</li><li>Separator block improvements (color support)</li><li>Latest Posts block improvements (support excerpt, content)</li><li>List block improvements (indent/outdent shortcuts, start value and reverse order support)</li><li>Button block improvements (support target, border radius)</li><li>Animations and micro interactions (moving blocks, dropdowns, and a number of small animations to improve the UX)</li><li>Accessibility Navigation Mode which will allow you to navigate with the keyboard between blocks without going into their content.</li><li>Block Style Variations API</li></ul>\n\n\n\n<p>Plus a number of other improvements, amongst them:</p>\n\n\n\n<ul><li>Data Module API improvements (useSelect/useEffect)</li><li>Inserter Help Panel</li><li>Extensibility: DocumentSettingsPanel</li><li>Snackbar notices</li><li>Typewriter Experience</li><li>Fix a number of Accessibility report issues</li></ul>\n\n\n\n<p>If you want to see all the features for each release, here are direct links to the release posts: <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">6.5</a>, <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">6.4</a>, <a href=\"https://make.wordpress.org/core/2019/08/14/whats-new-in-gutenberg-14-august/\">6.3</a>, <a href=\"https://make.wordpress.org/core/2019/07/31/whats-new-in-gutenberg-31-july/\">6.2</a>, <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\">6.1</a>, <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">6.0</a>, <a href=\"https://make.wordpress.org/core/2019/06/12/whats-new-in-gutenberg-12th-june/\">5.9</a>, <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">5.8</a>, <a href=\"https://make.wordpress.org/core/2019/05/15/whats-new-in-gutenberg-15th-may/\">5.7</a>, <a href=\"https://make.wordpress.org/core/2019/05/01/whats-new-in-gutenberg-1st-may/\">5.6</a>, <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">5.5</a>, and <a href=\"https://make.wordpress.org/core/2019/04/03/whats-new-in-gutenberg-3rd-april/\">5.4</a>.</p>\n\n\n\n<h3>Continuous effort on performance</h3>\n\n\n\n<p>The team working on the block editor managed to shave off 1.5 seconds of loading time for a particularly sizeable post (~ 36,000 words, ~ 1,000 blocks) since WordPress 5.2.</p>\n\n\n\n<h2>A new default theme: welcome Twenty Twenty</h2>\n\n\n\n<p>WordPress 5.3 introduces <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>, the latest default theme in our project history. </p>\n\n\n\n<p>This elegant new theme is based on the WordPress theme <a href=\"https://www.andersnoren.se/teman/chaplin-wordpress-theme/\">Chaplin</a> which was released on the WordPress.org theme directory earlier this summer. </p>\n\n\n\n<p>It includes full support for the block editor, empowering users to find the right design for their message.</p>\n\n\n\n<h2>Wait! There is more</h2>\n\n\n\n<p>5.3 is going to be a rich release with the inclusion of numerous enhancements to interactions and the interface.</p>\n\n\n\n<h2>Admin interface enhancements</h2>\n\n\n\n<p>Design and Accessibility teams worked together to port some parts of Gutenberg styles into the whole wp-admin interface. Both teams are going to iterate on these changes during the 5.3 beta cycle. These improved styles fix many accessibility issues, improve color contrasts on form fields and buttons, add consistency between editor and admin interfaces, modernize the WordPress color scheme, add better zoom management, and more.</p>\n\n\n\n<h3>Big Images are coming to WordPress</h3>\n\n\n\n<p>Uploading non-optimized, high-resolution pictures from your smartphone isn’t a problem anymore. WordPress now supports resuming uploads when they fail as well as larger default image sizes. That way pictures you add from the block editor look their best no matter how people get to your site.</p>\n\n\n\n<h3>Automatic image rotation during upload</h3>\n\n\n\n<p>Your images will be correctly rotated upon upload according to the EXIF orientation. This feature was first proposed nine years ago. Never give up on your dreams to see your fixes land in WordPress!</p>\n\n\n\n<h3>Site Health Checks</h3>\n\n\n\n<p>The improvements introduced in 5.3 make it easier to identify and understand areas that may need troubleshooting on your site from the Tools -> Health Check screen.</p>\n\n\n\n<h3>Admin Email Verification</h3>\n\n\n\n<p>You’ll now be periodically asked to check that your admin email address is up to date when you log in as an administrator. This reduces the chance that you’ll get locked out of your site if you change your email address.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<h3>Time/Date component fixes</h3>\n\n\n\n<p>Developers can now work with <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.</p>\n\n\n\n<h3>PHP 7.4 Compatibility</h3>\n\n\n\n<p>The WordPress core team is actively preparing to support PHP 7.4 when it is released later this year. WordPress 5.3 contains <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=closed&status=new&status=reopened&status=reviewing&keywords=~php74&milestone=5.3&order=priority\">multiple changes</a> to remove deprecated functionality and ensure compatibility. Please test this beta release with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings. </p>\n\n\n\n<h3>Other Changes for Developers</h3>\n\n\n\n<ul><li>Multisite<ul><li>Filter sites by status<ul><li><a href=\"https://core.trac.wordpress.org/ticket/37392\">https://core.trac.wordpress.org/ticket/37392</a> </li><li><a href=\"https://core.trac.wordpress.org/ticket/37684\">https://core.trac.wordpress.org/ticket/37684</a> </li></ul></li><li>Save database version in site meta<ul><li><a href=\"https://core.trac.wordpress.org/ticket/41685\">https://core.trac.wordpress.org/ticket/41685</a> </li></ul></li></ul></li><li>Code modernization and PHP 7.4 support<ul><li><a href=\"https://core.trac.wordpress.org/ticket/47678\">https://core.trac.wordpress.org/ticket/47678</a> </li><li><a href=\"https://core.trac.wordpress.org/ticket/47783\">https://core.trac.wordpress.org/ticket/47783</a></li></ul></li><li>Toggle password view<ul><li><a href=\"https://core.trac.wordpress.org/ticket/42888\">https://core.trac.wordpress.org/ticket/42888</a></li></ul></li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for more <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">5.3 related developer notes</a> in the coming weeks detailing other changes that you should be aware of.</p>\n\n\n\n<h2>What’s next</h2>\n\n\n\n<p>There have been over 400 tickets fixed in WordPress 5.3 so far with numerous bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7114\";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:51:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Abdullah Ramzan\";s: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/news/2019/09/people-of-wordpress-abdullah-ramzan/\";s: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, 06 Sep 2019 18:21: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:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";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:10:\"Interviews\";s: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:\"https://wordpress.org/news/?p=7086\";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:391:\"You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Abdullah Ramzan, from Lahore, Punjab, Pakistan. Abdullah Ramzan was born and brought […]\";s: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:\"Yvette Sonneveld\";s: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:6788:\"\n<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Abdullah Ramzan, from Lahore, Punjab, Pakistan.</strong></h2>\n\n\n\n<p>Abdullah Ramzan was born and brought up in the under-developed city of <a href=\"https://en.wikipedia.org/wiki/Layyah\"><strong>Layyah</strong></a>, which is situated in Southern Punjab, Pakistan and surrounded by desert and the river Sindh.</p>\n\n\n\n<p>He graduated from college in his home town and started using a computer in 2010 when he joined <a href=\"https://gcuf.edu.pk/\"><strong>Government College University Faisalabad</strong></a>. Abdullah’s introduction to WordPress happened while he was finishing the last semester of his degree. His final project was based in WordPress.</p>\n\n\n\n<p>Ramzan’s late mother was the real hero in his life, helping him with his Kindergarten homework and seeing him off to school every day. </p>\n\n\n\n<p>Before her heart surgery, Ramzan visited her in the hospital ICU, where she hugged him and said: “<strong>Don’t worry, everything will be good</strong>.” Sadly, his mother died during her surgery. However, her influence on Ramzan’s life continues.</p>\n\n\n\n<h3><strong>Start of Ramzan’s Career:</strong></h3>\n\n\n\n<p>After graduation, Ramzan struggled to get his first job. He first joined PressTigers<strong></strong> as a Software Engineer and met Khawaja Fahad Shakeel<a href=\"https://twitter.com/FahadShakeel\"><strong></strong></a>, his first mentor. Shakeel provided Ramzan with endless support. Something had always felt missing in his life, but he felt like he was on the right track for the first time in his life when he joined the WordPress community. </p>\n\n\n\n<h3><strong>Community – WordCamps and Meetups:</strong></h3>\n\n\n\n<p>Although Ramzan had used WordPress since 2015, attending WordPress meetups and open source contributions turned out to be a game-changer for him. He learned a lot from the WordPress community and platform, and developed strong relationships with several individuals. One of them is <a href=\"https://twitter.com/jainnidhi03\"><strong></strong></a>Nidhi Jain from Udaipur India who he works with on WordPress development. The second is <a href=\"https://twitter.com/desrosj\"><strong></strong></a>Jonathan Desrosiers who he continues to learn a lot from.</p>\n\n\n\n<p>In addition, Usman Khalid<a href=\"https://twitter.com/Usman__Khalid\"><strong></strong></a>, the lead organizer of WC Karachi, mentored Ramzan, helping him to develop his community skills. </p>\n\n\n\n<p>With the mentorship of these contributors, Ramzan is confident supporting local WordPress groups and helped to organize WordCamp Karachi, where he spoke for the first time at an international level event. He believes that WordPress has contributed much to his personal identity. </p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=632%2C422&ssl=1\" alt=\"Abdullah Ramzan among a group of community members at WordCamp Karachi 2018\" class=\"wp-image-7088\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?w=2048&ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?w=1264&ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2019/09/AbdullahRamzan.jpeg?w=1896&ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Abdullah Ramzan at WordCamp Karachi 2018</figcaption></figure>\n\n\n\n<h3><strong>WordPress and the Future:</strong></h3>\n\n\n\n<p>As a <a href=\"https://www.meetup.com/WordPress-Lahore/members/?op=leaders&sort=name\"><strong>co-organizer of WordPress Meetup Lahore,</strong></a> he would love to involve more people in the community leadership team, to provide a platform for people to gather under one roof, to learn and share something with each other. </p>\n\n\n\n<p>But he has loftier ambitions. Impressed by <a href=\"https://walktowc.eu/\">Walk to WordCamp Europe</a>, Abdullah is seriously considering walking to WordCamp Asia. He also one day hopes for the opportunity to serve his country as a senator of Pakistan<a href=\"http://www.senate.gov.pk/\"><strong></strong></a> and intends to enter the next senate election.</p>\n\n\n\n<h3><strong>Words of Encouragement</strong></h3>\n\n\n\n<p>Abdullah Ramzan knows there is no shortcut to success. “You have to work hard to achieve your goals,” explained Ramzan. He still has much he wishes to accomplish and hopes to be remembered for his impact on the project.</p>\n\n\n\n<p>Abdullah believes WordPress can never die as long as people don’t stop innovating to meet new demands. The beauty of WordPress is that it is made for everyone.</p>\n\n\n\n<p>Ramzan encouraged, “If you seriously want to do something for yourself, do something for others first. Go for open source, you’ll surely learn how to code. You’ll learn how to work in a team. Join local meetups, meet with the folks: help them, learn from them, and share ideas.”</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?w=1024&ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=300%2C225&ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=768%2C576&ssl=1 768w\" sizes=\"(max-width: 109px) 100vw, 109px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7086\";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:51:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.2.3 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:84:\"https://wordpress.org/news/2019/09/wordpress-5-2-3-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 05 Sep 2019 01:51: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: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: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7064\";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:368:\"WordPress 5.2.3 is now available! This security and maintenance release features 29 fixes and enhancements. Plus, it adds a number of security fixes—see the list below. These bugs affect WordPress versions 5.2.2 and earlier; version 5.2.3 fixes them, so you’ll want to upgrade. If you haven’t yet updated to 5.2, there are also updated versions […]\";s: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:\"Jake Spurlock\";s: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:7645:\"\n<p>WordPress 5.2.3 is now available! </p>\n\n\n\n<p>This security and maintenance release features 29 fixes and enhancements. Plus, it adds a number of security fixes—see the list below.</p>\n\n\n\n<p>These bugs affect WordPress versions 5.2.2 and earlier; version 5.2.3 fixes them, so you’ll want to upgrade. </p>\n\n\n\n<p>If you haven’t yet updated to 5.2, there are also updated versions of 5.0 and earlier that fix the bugs for you.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<ul><li>Props to <a href=\"https://blog.ripstech.com/authors/simon-scannell/\">Simon Scannell of RIPS Technologies</a> for finding and disclosing two issues. The first, a cross-site scripting (XSS) vulnerability found in post previews by contributors. The second was a cross-site scripting vulnerability in stored comments. </li><li>Props to <a href=\"https://security-consulting.icu/blog/\">Tim Coen</a> for disclosing an issue where validation and sanitization of a URL could lead to an open redirect. </li><li>Props to Anshul Jain for disclosing reflected cross-site scripting during media uploads.</li><li>Props to <a href=\"https://fortiguard.com/\">Zhouyuan Yang of Fortinet’s FortiGuard Labs</a> who disclosed a vulnerability for cross-site scripting (XSS) in shortcode previews.</li><li>Props to Ian Dunn of the Core Security Team for finding and disclosing a case where reflected cross-site scripting could be found in the dashboard.</li><li>Props to Soroush Dalili (<a href=\"https://twitter.com/irsdl?lang=en\">@irsdl</a>) from NCC Group for disclosing an issue with URL sanitization that can lead to cross-site scripting (XSS) attacks.</li><li>In addition to the above changes, we are also updating jQuery on older versions of WordPress. This change was <a href=\"https://core.trac.wordpress.org/ticket/47020\">added in 5.2.1</a> and is now being brought to older versions. </li></ul>\n\n\n\n<p>You can browse the <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=5.2.3&order=priority\">full list of changes on Trac</a>.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version <a href=\"https://wordpress.org/support/wordpress-version/version-5-2-3/\">5.2.3 documentation page</a>.</p>\n\n\n\n<p>WordPress 5.2.3 is a short-cycle maintenance release. The next major release will be <a href=\"https://make.wordpress.org/core/5-3/\">version 5.3.</a></p>\n\n\n\n<p>You can download WordPress 5.2.3 from the button at the top of this page, or visit your<strong> Dashboard → Updates</strong> and click <strong>Update Now</strong>. </p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>This release brings together contributions from more than 62 other people. Thank you to everyone who made this release possible!</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/alpipego/\">Alex Goller</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/762e5e74/\">Ashish Shukla</a>, <a href=\"https://profiles.wordpress.org/wpboss/\">Aslam Shekh</a>, <a href=\"https://profiles.wordpress.org/backermann1978/\">backermann1978</a>, <a href=\"https://profiles.wordpress.org/cdog/\">Catalin Dogaru</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/aprea/\">Chris Aprea</a>, <a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/danmicamediacom/\">dan@micamedia.com</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/iseulde/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">epiqueras</a>, <a href=\"https://profiles.wordpress.org/fencer04/\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/flaviozavan/\">flaviozavan</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gqevu6bsiz/\">gqevu6bsiz</a>, <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jikamens/\">jikamens</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa,</a> <a href=\"https://profiles.wordpress.org/karlgroves/\">karlgroves</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/majemedia/\">Maje Media LLC</a>, <a href=\"https://profiles.wordpress.org/mspatovaliyski/\">Martin Spatovaliyski</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nayana123/\">nayana123</a>, <a href=\"https://profiles.wordpress.org/greatislander/\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>, <a href=\"https://profiles.wordpress.org/bassgang/\">Paul Vincent Beigang</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vjik/\">Sergey Predvoditelev</a>, <a href=\"https://profiles.wordpress.org/sharaz/\">Sharaz Shahid</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">tellthemachines</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/tsewlliw/\">Will West</a>, and <a href=\"https://profiles.wordpress.org/yarnboy/\">yarnboy</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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7064\";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:48:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"The Month in WordPress: August 2019\";s: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:70:\"https://wordpress.org/news/2019/09/the-month-in-wordpress-august-2019/\";s: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, 02 Sep 2019 10:00:13 +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:18:\"Month in 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7059\";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:374:\"This has been a particularly busy month, with a number of interesting and ambitious proposals for the WordPress project along with active progress across the entire community. Core Development and Schedule The upcoming minor release of WordPress, v5.2.3, is currently in the release candidate phase and available for testing. Following that, the next major 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s: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:9644:\"\n<p>This has been a particularly busy month, with a number of interesting and ambitious proposals for the WordPress project along with active progress across the entire community. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Core Development and Schedule</h2>\n\n\n\n<p>The upcoming minor release of WordPress, v5.2.3, is currently <a href=\"https://make.wordpress.org/core/2019/08/22/wordpress-5-2-3-rc-1/\">in the release candidate phase</a> and available for testing.</p>\n\n\n\n<p>Following that, the next major release is v5.3 and the Core team has laid out <a href=\"https://make.wordpress.org/core/2019/08/21/wordpress-5-3-schedule-and-scope/\">a schedule and scope</a> for development. In addition, <a href=\"https://make.wordpress.org/core/2019/08/27/bug-scrub-schedule-for-5-3/\">a bug scrub schedule</a> and <a href=\"https://make.wordpress.org/accessibility/2019/08/28/wordpress-5-3-accessibility-focused-bug-scrub-schedule/\">an accessibility-focused schedule</a> have been set out to provide dedicated times for contributors to work on ironing out the bugs in the release.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Proposal for User Privacy Improvements</h2>\n\n\n\n<p>The Core Privacy Team <a href=\"https://make.wordpress.org/core/2019/08/07/feature-plugin-discussion-a-consent-and-logging-mechanism-for-user-privacy/\">has proposed a feature plugin</a> to build a consent and logging mechanism for user privacy. This project will focus on improving the user privacy controls in WordPress Core in order to protect site owners and users alike.</p>\n\n\n\n<p>The proposal includes some useful information about building effective controls for users, how other projects have worked on similar efforts, and what kind of time and resources the project will need in order to be developed.</p>\n\n\n\n<p>Want to get involved in this feature project? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-privacy channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> where there are open office hours every Wednesday at 19:00 UTC.</p>\n\n\n\n<h2>Core Notification System Proposal</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/08/05/feature-project-proposal-wp-notify/\">A proposal has been made</a> for a new feature project to build a robust notification system for WordPress Core. The aim of the project is to build a system to handle notifications for site owners that can be extended by plugin and theme developers.</p>\n\n\n\n<p>This proposal comes on the back of <a href=\"https://core.trac.wordpress.org/ticket/43484\">a Trac ticket</a> opened 18 months ago. With weekly meetings to discuss the project, the team behind WP Notify are <a href=\"https://make.wordpress.org/core/2019/08/28/wp-notify-meeting-recap-august-26-2019/\">in the planning phase</a> while they establish exactly how to develop the feature.<br></p>\n\n\n\n<p>Want to get involved in this feature project? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> – meetings for this project happen every Monday at 14:00 and 22:00 UTC.</p>\n\n\n\n<h2>Local WordPress Development Environment</h2>\n\n\n\n<p>Members of the Core Team <a href=\"https://make.wordpress.org/core/2019/08/05/wordpress-local-environment/\">have put together a local development environment for WordPress</a> that runs on Docker. This environment provides an easy way for developers to get involved with WordPress core development. </p>\n\n\n\n<p>The work on this was inspired by the environment used for local Gutenberg development, <a href=\"https://make.wordpress.org/core/2019/08/30/gutenberg-local-environment-rewrite/\">which has since been improved</a> based on the new work that has been done here.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2019/08/05/wordpress-local-environment/\">The announcement post</a> explains how to use the Docker environment. If you have any feedback or bug reports, please comment on the post directly.</p>\n\n\n\n<h2>Updates for Older Versions of WordPress</h2>\n\n\n\n<p>On July 30, the Security Team shared that security updates need to undergo the same testing and release process for every major version of WordPress. This means they have to provide long-term support for over fifteen major versions of WordPress. This requires a lot of time and effort, and <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\">the team has sought feedback on potential solutions for this challenge</a>. </p>\n\n\n\n<p>Following this discussion, <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/\">a proposal was made to auto-update old versions of WordPress to v4.7</a>. This proposal garnered many responses and has since been updated to incorporate feedback from comments. The current recommendation is to secure the six latest versions and to eventually auto-update all older versions of WordPress to 4.7. Since this proposal was made, it has been discussed at <a href=\"https://make.wordpress.org/hosting/2019/08/26/hosting-meeting-notes-august-19-2019/\">Hosting Team meetings</a> and <a href=\"https://make.wordpress.org/core/2019/08/16/follow-up-discussion-on-major-auto-updates/\">Dev Chat meetings</a>, and the conversation is still ongoing.</p>\n\n\n\n<p>Want to provide feedback on this proposal? Comment on <a href=\"https://make.wordpress.org/core/2019/08/07/proposal-auto-update-old-versions-to-4-7/\">the original post</a> with your thoughts.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The recommended minimum PHP version for WordPress Core <a href=\"https://make.wordpress.org/core/2019/08/13/increasing-the-recommended-php-version-in-core/\">has been increased to 7.0</a>.</li><li>Gutenberg development continues at a rapid pace with <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">new updates</a> coming out every month.</li><li>The Core Team is kicking off bug scrub and triage sessions <a href=\"https://make.wordpress.org/core/2019/08/26/apac-triage-and-bug-scrub-sessions/\">at APAC-friendly times</a>.</li><li>WordCamp US announced <a href=\"https://2019.us.wordcamp.org/schedule/\">the event schedule</a> to take place on November 1-3.</li><li>The Plugin Team reminded developers that <a href=\"https://make.wordpress.org/plugins/2019/08/23/reminder-developers-must-comply-with-the-forum-guidelines/\">they need to stick to the Plugin Directory forum guidelines</a> if they choose to use them for support.</li><li>WordPress project leadership is looking at <a href=\"https://make.wordpress.org/updates/2019/07/30/update-sanctions-and-open-source/\">how to respond to political sanctions</a> in light of the open-source nature of the project. </li><li>The Community Team has proposed <a href=\"https://make.wordpress.org/community/2019/08/19/proposal-speaker-feedback-tool/\">a WordCamp speaker feedback tool</a> that will allow more reliable and consistent feedback for WordCamps speakers all over the world.</li><li>The Five for the Future project now has <a href=\"https://make.wordpress.org/updates/2019/08/29/five-for-the-future-proposed-scope-and-mockups/\">more complete mockups</a> and a plan to move forward.</li><li>The Theme Review Team decided to terminate the Trusted Authors program for a number of reasons <a href=\"https://make.wordpress.org/themes/2019/08/14/trusted-author-program-a-year-of-its-journey/\">outlined in the announcement post</a>.</li><li>The Design Team is taking a look at <a href=\"https://make.wordpress.org/design/2019/08/28/discussion-about-the-about-page/\">how they can improve the About page</a> in future WordPress releases.</li><li>This month saw <a href=\"https://make.wordpress.org/cli/2019/08/14/wp-cli-release-v2-3-0/\">the release of v2.3 of WP-CLI</a>, including a number of new commands and improvements.</li><li>WordCamp websites can now make use of <a href=\"https://make.wordpress.org/community/2019/08/19/wordcamp-blocks-are-live/\">custom blocks in the block editor</a> for crafting their content.</li><li>The Mobile Team are looking for testers for the v13.2 release of the <a href=\"https://make.wordpress.org/mobile/2019/08/27/call-for-testing-wordpress-for-android-13-2/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2019/08/29/call-for-testing-wordpress-for-ios-13-2/\">iOS</a> apps.</li><li>The WordCamp Asia team <a href=\"https://2020.asia.wordcamp.org/2019/08/20/wordcamp-asia-logo-a-design-journey\">published an interesting look</a> at the journey they took to design the event logo.</li><li><a href=\"https://make.wordpress.org/community/2019/08/26/call-for-volunteers-2020-global-sponsorship-working-group/\">A working group of volunteers is being formed</a> to work out the details for the Global Sponsorship Program in 2020.</li><li>In an effort to increase the accessibility of available WordPress themes, the Theme Review Team now requires that <a href=\"https://make.wordpress.org/themes/2019/08/03/planning-for-keyboard-navigation/\">all themes include keyboard navigation</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7059\";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:51:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Amanda Rush\";s: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:67:\"https://wordpress.org/news/2019/08/people-of-wordpress-amanda-rush/\";s: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 Aug 2019 21:23:23 +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:\"heropress\";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:10:\"Interviews\";s: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:\"https://wordpress.org/news/?p=7047\";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:373:\"You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories. Meet Amanda Rush from Augusta, Georgia, USA. Amanda Rush is a 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s: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:6543:\"\n<p><em>You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Amanda Rush from Augusta, Georgia, USA.</strong></h2>\n\n\n\n<p>Amanda Rush is a WordPress advocate with a visual disability. She first started using computers in 1985, which enabled her to turn in homework to her sighted teachers. Screen reader technology for Windows was in its infancy then, so she worked in DOS almost exclusively.</p>\n\n\n\n<p>After graduating high school, Amanda went to college to study computer science, programming with DOS-based tools since compilers for Windows were still inaccessible. As part of her computer science course of study, she learned HTML which began her career in web development.</p>\n\n\n\n<h2>How Amanda got started with WordPress</h2>\n\n\n\n<p>Amanda began maintaining a personal website, and eventually began publishing her own content using LiveJournal. However, controlling the way the page around her content looked was hard, and she soon outgrew the hosted solution.</p>\n\n\n\n<p>So in 2005, Amanda bought customerservant.com, set up a very simple CMS for blogging, and started publishing there. She accepted the lack of design and content, and lack of easy customization because she wasn’t willing to code her own solution. Nor did she want to move to another hosted solution, as she liked being able to customize her own site, as well as publish content.</p>\n\n\n\n<h3><strong>Hebrew dates led her to WordPress</strong></h3>\n\n\n\n<p>At some point, Amanda was looking for an easy way to display the Hebrew dates alongside the Gregorian dates on her blog entries. Unfortunately, the blogging software she was using at the time, did not offer customization options at that level. She decided to research alternative solutions and came across a WordPress plugin that did just that. </p>\n\n\n\n<p>The fact that WordPress would not keep her locked into a visual editor, used themes to customize styling, and offered ways to mark up content, immediately appealed to Amanda. She decided to give it a go.</p>\n\n\n\n<h3><strong>Accessibility caused her to dive deeper</strong></h3>\n\n\n\n<p>When the software Amanda used at work became completely inaccessible, she started learning about WordPress. While she was learning about this new software, <a href=\"https://en.wikipedia.org/wiki/Web_2.0\">Web 2.0</a> was introduced. The lack of support for it in the screen reader she used meant that WordPress administration was completely inaccessible. To get anything done, Amanda needed to learn to find her way in WordPress’ file structure.</p>\n\n\n\n<p>Eventually Amanda started working as an independent contractor for the largest screen reader developer in the market, Freedom Scientific. She worked from home every day and hacked on WordPress after hours.</p>\n\n\n\n<p>Unfortunately Amanda hit a rough patch when her job at Freedom Scientific ended. Using her savings she undertook further studies for various Cisco and Red Hat certifications, only to discover that the required testing for these certifications were completely inaccessible. She could study all she wanted, but wasn’t able to receive grades to pass the courses.</p>\n\n\n\n<p>She lost her financial aid, her health took a turn for the worse, she was diagnosed with Lupus, and lost her apartment. Amanda relocated to Augusta where she had supportive friends who offered her a couch and a roof over her head.</p>\n\n\n\n<h3><strong>But Amanda refused to give up</strong></h3>\n\n\n\n<p>Amanda continued to hack WordPress through all of this. It was the only stable part of her life. She wanted to help make WordPress accessible for people with disabilities, and in 2012 joined the WordPress Accessibility Team. Shortly after that, she finally got her own place to live, and started thinking about what she was going to do with the rest of her working life.</p>\n\n\n\n<p>Listening to podcasts led her to take part in <a href=\"http://wordsesh.org/\">WordSesh</a>, which was delivered completely online and enabled Amanda to participate without needing to travel. She began to interact with WordPress people on Twitter, and continued to contribute to the community as part of the WordPress Accessibility Team. Things had finally started to pick up.</p>\n\n\n\n<h2><strong>Starting her own business</strong></h2>\n\n\n\n<p>In 2014, Amanda officially launched her own business, <a href=\"http://www.customerservant.com/\">Customer Servant Consultancy</a>. Since WordPress is open source, and becoming increasingly accessible, Amanda could modify WordPress to build whatever she wanted and not be at the mercy of web and application developers who know nothing about accessibility. And if she got stuck, she could tap into the community and its resources.</p>\n\n\n\n<p>Improving her circumstances and becoming more self-sufficient means Amanda was able to take back some control over her life in general. She was able to gain independence and create her own business despite being part of the blind community, which has an 80% unemployment rate. </p>\n\n\n\n<p>In her own words:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>We’re still fighting discrimination in the workplace, and we’re still fighting for equal access when it comes to the technology we use to do our jobs. But the beauty of WordPress and its community is that we can create opportunities for ourselves.</em></p><p><em>I urge my fellow blind community members to join me inside this wonderful thing called WordPress. Because it will change your lives if you let it.</em></p><cite>Amanda Rush, entrepreneur</cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo-1.jpg?fit=632%2C474&ssl=1\" alt=\"\" class=\"wp-image-7026\" width=\"110\" height=\"83\" /></figure></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7047\";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:48:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2019\";s: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:68:\"https://wordpress.org/news/2019/08/the-month-in-wordpress-july-2019/\";s: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 Aug 2019 09:56:05 +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:18:\"Month in 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7040\";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:336:\"This month has been characterized by exciting plans and big announcements – read on to find out what they are and what it all means for the future of the WordPress project. WordCamp Asia Announced The inaugural WordCamp Asia will be in Bangkok, Thailand, on February 21-23, 2020. This will be the first regional WordCamp […]\";s: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:\"Hugh Lashbrooke\";s: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:6983:\"\n<p>This month has been characterized by exciting plans and big announcements – read on to find out what they are and what it all means for the future of the WordPress project.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordCamp Asia Announced</h2>\n\n\n\n<p>The inaugural WordCamp Asia will be in Bangkok, Thailand, on February 21-23, 2020. This will be the first regional WordCamp in Asia and it comes after many years of discussions and planning. You can find more information about the event <a href=\"https://2020.asia.wordcamp.org/\">on their website</a> and subscribe to stay up to date with the latest information.</p>\n\n\n\n<p>This is the latest flagship event in the WordCamp program, following WordCamps Europe and US. Tickets <a href=\"https://2020.asia.wordcamp.org/tickets/\">are now on sale</a> and the <a href=\"https://2020.asia.wordcamp.org/call-for-speakers/\">call for speakers</a> is open. Want to get involved in WordCamp Asia? Keep an eye out for volunteer applications, or buy a micro sponsor ticket. You can also join the #wcasia channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a> for updates.</p>\n\n\n\n<h2>WordCamp US Planning Continues</h2>\n\n\n\n<p>The WordCamp US organizing team is excited to announce some new additions to this year’s WCUS in St. Louis, Missouri, on November 1-3, 2019. The first is that there will be an onsite KidsCamp: child-friendly lessons that introduce your young one(s) to the wonderful world of WordPress. <a href=\"https://2019.us.wordcamp.org/kidscamp/\">You can register your child for KidsCamp here</a>. In addition, free, onsite childcare will be provided at this year’s event – <a href=\"https://2019.us.wordcamp.org/child-care/\">you can sign up here</a>.</p>\n\n\n\n<p>Looking for further ways to get involved? The <a href=\"https://2019.us.wordcamp.org/call-for-volunteers-form/\">call for volunteers is now open</a>. For more information on WordCamp US, <a href=\"https://2019.us.wordcamp.org/\">please visit the event website</a>.</p>\n\n\n\n<h2>Exploring Updates to the WordPress User & Developer Survey</h2>\n\n\n\n<p>To improve the annual WordPress User & Developer Survey, <a href=\"https://make.wordpress.org/updates/2019/06/28/updates-to-the-wordpress-user-developer-survey/\">a call has been made</a> for updates and additional questions that can help us all better understand how people use WordPress.</p>\n\n\n\n<p>To improve the survey, contributor teams are suggesting topics and information that should be gathered to inform contributor work in 2020. Please add your feedback <a href=\"https://make.wordpress.org/updates/2019/06/28/updates-to-the-wordpress-user-developer-survey/\">to the post</a>.</p>\n\n\n\n<h2>Gutenberg Usability Testing Continues</h2>\n\n\n\n<p>Usability tests for Gutenberg continued through June 2019, and <a href=\"https://make.wordpress.org/test/2019/07/10/gutenberg-usability-testing-for-june-2019/\">insights from three recent videos were published</a> last month. This month’s test was similar to WordCamp Europe’s usability tests, and you can read more about those in the <a href=\"https://make.wordpress.org/test/2019/07/05/wceu-usability-test-results-part-one/\">part one</a> and <a href=\"https://make.wordpress.org/test/2019/07/09/wceu-usability-test-results-part-two/\">part two</a> posts. Please help by watching these videos and sharing your observations as comments on the relevant post.</p>\n\n\n\n<p>If you want to help with usability testing, you can also join the #research channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>, or you can write a test script that can be usability tested for Gutenberg.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/updates/2019/07/23/proposal-a-wordpress-advisory-board/\">A proposal has been made</a> to put together a nominated WordPress Advisory Board – this is certainly an exciting development for the project.</li><li>The Design team <a href=\"https://make.wordpress.org/design/2019/06/28/wceu-contribution-day-recap-design-team/\">reported on the work they did</a> at the WordCamp Europe Contributor Day.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/07/22/theme-sniffer-v1-1-0-and-wpthemereview-v0-2-0-release/\">has released updated versions</a> of their ThemeSniffer tool and coding standards.</li><li>The Security team <a href=\"https://make.wordpress.org/core/2019/07/29/should-security-fixes-continue-to-be-backported-to-very-old-versions-of-wordpress/\">is looking for feedback</a> on whether security fixes should continue to be backported to very old versions of WordPress. </li><li>The Design and Community teams have worked together to come up with <a href=\"https://make.wordpress.org/community/2019/07/29/proposal-clearer-wordcamp-and-wordpress-chapter-meetup-logo-guidelines/\">official guidelines for how WordCamp logos should be designed</a>.</li><li>The Core team has implemented <a href=\"https://make.wordpress.org/core/2019/07/12/php-coding-standards-changes/\">a few changes</a> to the PHP coding standards within WordPress Core.</li><li>The Community Team <a href=\"https://make.wordpress.org/community/2019/07/26/discussion-what-to-do-in-case-of-irreconcilable-differences/\">is looking for feedback</a> on a tough decision that needs to be made regarding the implementation of the licence expectations within the meetup program.</li><li>The Design team <a href=\"https://make.wordpress.org/design/2019/07/11/block-directory-in-wp-admin-concepts/\">has presented some designs</a> for a Block Directory within the WordPress dashboard.</li><li>A recent release of WordPress saw an increase in the minimum required version of PHP – the Core team is now looking at <a href=\"https://make.wordpress.org/core/2019/07/29/proposal-for-increasing-recommended-php-version-in-wordpress/\">increasing that minimum further</a>.</li><li>The Site Health feature was first introduced in the 5.1 release of WordPress, and at WordCamp Europe this year <a href=\"https://make.wordpress.org/core/2019/07/01/new-core-component-site-health/\">a new Core component for the feature was added to the project structure</a>.</li><li>The Community Team has posted some interesting data regarding <a href=\"https://make.wordpress.org/community/2019/07/29/numbers-in-the-netherlands/\">WordCamps in the Netherlands</a> over the last few years, as well as <a href=\"https://make.wordpress.org/community/2019/07/31/wordcamps-in-2018/\">WordCamps in 2018</a>.</li><li>The WordCamp Europe team <a href=\"https://2019.europe.wordcamp.org/2019/07/15/survey-results/\">released the results of the attendee survey</a> from this year’s event in Berlin.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7040\";s: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:32:\"https://wordpress.org/news/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:9:\"\n 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:4:\"\n 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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s: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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 11 Oct 2019 07:43:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 08 Oct 2019 21:14:26 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20180206170026\";}','no'),(133,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1570823022','no'),(134,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1570779822','no'),(135,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1570823022','no'),(136,'_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:53:\"WPTavern: WordPress 5.3 Improves Large Image Handling\";s: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:29:\"https://wptavern.com/?p=94814\";s: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://wptavern.com/wordpress-5-3-improves-large-image-handling\";s: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:2222:\"<p><a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\" rel=\"noopener noreferrer\">WordPress 5.3 Beta 3</a> was released this week and RC 1 is right around the corner, expected <a href=\"https://make.wordpress.org/core/5-3/\" rel=\"noopener noreferrer\" target=\"_blank\">October 15</a>. Core contributors have been publishing developer notes on new features landing in this release. One exciting enhancement that hasn’t received much attention yet is WordPress’ updated <a href=\"https://core.trac.wordpress.org/ticket/47873\" rel=\"noopener noreferrer\" target=\"_blank\">handling of large images</a>.</p>\n<p>Many WordPress users don’t consider the size of the images they are uploading to their sites, and modern smartphones are capable of producing very high quality images at very large file sizes. WordPress 5.3 will automatically detect large images (with a default threshold of 2560px) and generate a “web-optimized maximum size.” The threshold is used as the max-height and max-width value to scale down the image for use as the largest available size. A new <code>big_image_size_threshold</code> filter is available for developers who want to change the threshold size or disable the new feature altogether.</p>\n<p>WordPress will store the original image size so that it is still accessible and a new function is available for fetching its path: <code>wp_get_original_image_path()</code>. It is also used to generate all the image sub-sizes.</p>\n<p>More than two million WordPress users rely on plugins like Imsanity, Smushit, and EWWW Image Optimizer to optimize images. They often include additional features for bulk resizing previously uploaded images. WordPress’ new large image handling <a href=\"https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/#comment-37044\" rel=\"noopener noreferrer\" target=\"_blank\">should not interfere with image optimization plugins</a>, because it doesn’t affect the default settings that they often hook into and use to perform additional optimizations. The new core enhancement may be suitable to replace these plugins for some users who only require the bare minimum optimization on upload.</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, 10 Oct 2019 19:46: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: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: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:76:\"WPTavern: MachoThemes, Modula Parent Company, Acquires Three Gallery Plugins\";s: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:29:\"https://wptavern.com/?p=94816\";s: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:85:\"https://wptavern.com/machothemes-modula-parent-company-acquires-three-gallery-plugins\";s: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:3453:\"<p><a href=\"https://www.machothemes.com\">MachoThemes</a>, the WordPress development company behind the <a href=\"https://wordpress.org/plugins/modula-best-grid-gallery/\">Modula Gallery</a> plugin, has acquired three gallery plugins. The company is currently rolling the first two of the plugins, <a href=\"https://wordpress.org/plugins/final-tiles-grid-gallery-lite/\">Final Tiles Grid Gallery Lite</a> and <a href=\"https://wordpress.org/plugins/photoblocks-grid-gallery/\">PhotoBlocks Grid Gallery</a>, into Modula. The third plugin, <a href=\"https://wordpress.org/plugins/everlightbox/\">EverLightbox</a>, will remain as a standalone project.</p>\n\n\n\n<p>The three plugins were purchased from Diego Imbriani of GreenTreeLabs. This was not MachoThemes’ first acquisition from Imbriani. They acquired the original Modula plugin from him over two years ago. From there, they grew the user base and continued developing the plugin.</p>\n\n\n\n<p>At this time, the exact details of the financial terms are not available to the public, but the transaction was in the range of low-to-mid 5-figures.</p>\n\n\n\n<p>The acquisition is a part of MachoThemes’ growth strategy for building a larger audience for their Modula plugin, which currently has over 60,000 active installations. “We liked their feature set, their quirkiness, and overall what they stand for,” said MachoThemes owner Christian Raiber of the reasons behind the acquisition.</p>\n\n\n\n<p>The merge of Final Tiles and PhotoBlocks affects over 34,000 plugin users. MachoThemes does not plan to continue supporting or developing them as individual plugins.</p>\n\n\n\n<p>The team is in the process of building a migration script to allow users to bring their existing galleries over to the Modula plugin. It is important that users migrate to Modula or another option because unsupported versions of their current plugins may not work in the future.</p>\n\n\n\n<p>Both plugins are similar to Modula by allowing users to create a gallery separately from the primary post content screen. However, the user interface and experience between all three plugins are nothing alike. Merging the plugins into Modula means that MachoThemes can work on a single interface and experience for users.</p>\n\n\n\n<p>Users may be worried about losing features when migrating to a new plugin. “Most of these options already exist in Modula, under a different name, setting or otherwise paid extension,” said Raiber. “There are a few interesting options in these plugins indeed, and they’ve already sparked new ideas for the team to experiment with.”</p>\n\n\n\n<p>Raiber said his company would reach out to users. “We’ll have videos, doc entries, and a dedicated page on wp-modula.com,” he said of the transition. The company plans to keep the plugins available for the next six months but may extend that period depending on how the transition for users is going.</p>\n\n\n\n<p>The EverLightbox plugin will remain separate for those who want a lightbox feature for the standard WordPress galleries but not a full gallery-editing plugin. “We will continue to support the plugin and work hard to ensure that all users have a smooth-sailing experience with the plugin just as we have been for all of the plugins we’ve been building,” said Raiber.</p>\n\n\n\n<p>The company plans to continue developing and supporting EverLightbox for the long term.</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, 10 Oct 2019 19:21: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:14:\"Justin Tadlock\";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:79:\"WPTavern: ExpressionEngine Under New Ownership, Will Remain Open Source for Now\";s: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:29:\"https://wptavern.com/?p=94761\";s: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:89:\"https://wptavern.com/expressionengine-under-new-ownership-will-remain-open-source-for-now\";s: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:7521:\"<p>EllisLab founder Rick Ellis <a href=\"https://expressionengine.com/blog/expressionengine-has-a-new-owner\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> yesterday that ExpressionEngine has been acquired by Packet Tide, the parent company of <a href=\"https://eeharbor.com\" rel=\"noopener noreferrer\" target=\"_blank\">EEHarbor</a>, one of the most successful EE add-on providers and development agencies in the community. A year ago EllisLab, the developers of EE core, was acquired by Digital Locations but Ellis said the company ended up not being a good fit for the future of the CMS:</p>\n<blockquote><p>A year ago, EllisLab was acquired by Digital Locations in order to facilitate the transition of ExpressionEngine from a commercial software application to an open source one. That transition was successful, but it became apparent in recent months that ExpressionEngine didn’t fit perfectly within the goals of Digital Locations, as it seeks to build a business in Artificial Intelligence.</p>\n<p>We decided that what was best for ExpressionEngine was to seek a new owner, one that could devote all the resources necessary for ExpressionEngine to flourish.</p></blockquote>\n<p>In November 2018, <a href=\"https://wptavern.com/expressionengine-goes-open-source-after-16-years\" rel=\"noopener noreferrer\" target=\"_blank\">EE went open source</a>, adopting the <a href=\"https://expressionengine.com/license\" rel=\"noopener noreferrer\" target=\"_blank\">Apache License Version 2.0</a>, after 16 years of being locked down under restrictive licensing. EE’s dwindling community of product developers and site builders were hopeful that the new open source licensing would expand EE’s reach and bring back developers who had migrated to alternatives like <a href=\"https://craftcms.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Craft</a>.</p>\n<p>After the acquisition announcement, the EE community was concerned whether or not it will remain free and open source. Although the software’s homepage sports the tagline “The Open-Source CMS that supports YOU all the way,” EE’s new owners have left the option open for reconsidering its licensing further down the road. They plan to stick with the open source license for the time being. When asked directly in the <a href=\"https://t.co/gjVhmpqqn1?amp=1\" rel=\"noopener noreferrer\" target=\"_blank\">EE Slack</a>, EE Harbor developer <a href=\"https://twitter.com/TomJaeger\" rel=\"noopener noreferrer\" target=\"_blank\">Tom Jaeger</a> said, “That is our plan for now, although at this stage we’re looking at everything with a fresh eye towards what’s best.” The company has <a href=\"https://eeharbor.com/faq\" rel=\"noopener noreferrer\" target=\"_blank\">published a list of FAQs</a> with the same information.</p>\n<p>Brian Litzinger, a developer at <a href=\"https://boldminded.com/\" rel=\"noopener noreferrer\" target=\"_blank\">BoldMinded</a>, who has created more than 36 add-ons for EE, and is also on the EECA (ExpressionEngine Community Association) board that organizes EEConf, said he has confirmed that EEHarbor plans to keep the CMS open source.</p>\n<p>“The board spoke to new ownership just today actually, and they have every intention of keeping it open source,” Litzinger said. “I can’t speak for the whole community, but since going open source my add-on sales have not significantly increased or decreased.</p>\n<p>“As with any open source project there has been feedback and pull requests from the community, but nothing significant (e.g. large features). The community as a whole is pretty excited about the new ownership and ExpressionEngine’s future though.”</p>\n<p>Shawn Maida, founder of <a href=\"https://fostermade.co\" rel=\"noopener noreferrer\" target=\"_blank\">Foster Made</a>, a company that also sells ExpressionEngine add-ons, said he has not seen a significant direct change in the economics of EE since the project went open source.</p>\n<p>“I think the real question here is what business model best enables the growth and continued support of the CMS itself, and how is that balanced against the growth of the community,” Maida said. “As a business that offers some add-ons for ExpressionEngine, we need to see both continued growth in ExpressionEngine as a platform and growth in the community, so I think the license model that best enables that matters.”</p>\n<p>Travis Smith, president of <a href=\"https://www.hopstudios.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Hop Studios</a>, has been working with EE since its early days. As someone who is deeply invested in the EE community, he said that he doesn’t think a prospective licensing change would impact the broader community as much as having a clear vision for the CMS’s future.</p>\n<p>“I think a licensing change per se wouldn’t be good or bad, but a well-articulated and communicated vision for the CMS’s future would be really helpful for a community that feels unsure at the moment,” Smith said.</p>\n<p>“I do think that the exposure that going open source gave into the development process overall at EllisLab was an improvement, and that new features and bug fixes were getting added at a decent pace.”</p>\n<p>EE may have changed its licensing to be open source but it is not a community-led project where major decisions happen by a consensus of a diverse representation of community leadership.</p>\n<p>“I didn’t observe the community gaining (or applying?) much input or influence over the future of ExpressionEngine in the past year,” Smith said. “I think there was still a feeling of ‘EE is EllisLab’s project’ — and that this change of ownership might shake the community’s devs out of that default assumption, which would be a good thing.”</p>\n<p>In the <a href=\"https://eeharbor.com/faq\" rel=\"noopener noreferrer\" target=\"_blank\">FAQs EEHarbor published today</a>, the company confirmed that it will be developing new features and that it will consider feedback submitted from the community:</p>\n<blockquote><p>While we are in the early stages of long-term strategic planning, we already have a lot of thoughts and ideas around where to take ExpressionEngine based on our own experience. However, it’s not just about us. We are also very interested in collaborating with the ExpressionEngine community. Everyone is more than welcome to submit feedback for us to review as we consider the future of ExpressionEngine</p></blockquote>\n<p>After 16 years under a restrictive license, EE is an interesting example of a newly open source, corporate-led project with a community that is rediscovering its place while ownership of the software is transferred from one company to another. Responses to the acquisition are mostly positive, and users seem excited about Packet Tide’s first planned initiative – finishing development on ExpressionEngine 6.0. Ellis described this upcoming release as “an exciting new version we’ve been quietly working on behind the scenes.” It will include a new control panel with a dark theme, along with add-on and service integrations inside the app.</p>\n<p>EEHarbor does not plan to merge its add-ons with ExpressionEngine core at this time, and the statement published today reiterates the company’s commitment to “keep the add-on marketplace fair and open to all developers.”</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, 09 Oct 2019 23: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: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:82:\"WPTavern: Rosa 2 Restaurant Theme Provides a Frustrating and Satisfying 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94769\";s: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:93:\"https://wptavern.com/rosa-2-restaurant-theme-provides-a-frustrating-and-satisfying-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9220:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><a href=\"https://pixelgrade.com/themes/restaurants/rosa2/\">Rosa 2</a> is the sequel to Pixelgrade’s best-selling theme, Rosa. The new theme re-imagines its previous incarnation in the context of the block editor (Gutenberg). I was provided a copy of the theme for free to test and provide my thoughts. </p>\n\n\n\n<p>The theme sells for $75/year, or you can pay a one-time fee of $95 for lifetime access. The <a href=\"https://pixelgrade.com/blog/product/meet-rosa-2/\">product launch post</a> could make anyone excited about this theme, but is it worth it?</p>\n\n\n\n<p><strong>TLDR;</strong> Rosa 2 made for a satisfying experience when building restaurant-style pages. However, the early learning curve and basic setup were frustrating. It also lacks some of the polish I’d expect at a premium price.</p>\n\n\n\n<h2>A Rundown of the Issues</h2>\n\n\n\n<p>Before I dive into the good things about Rosa 2 (and there are some nice things about this theme), let me dive into the frustrating aspects. There were so many pain points that I nearly gave up on the theme several times. However, I soldiered on in the hopes of understanding why this theme might be worth using.</p>\n\n\n\n<h3>Install the Required Plugins First</h3>\n\n\n\n<p>Let me save you some time right now. When the theme says that it requires the <a href=\"https://wordpress.org/plugins/customify/\">Customify</a> and <a href=\"https://wordpress.org/plugins/nova-blocks/\">Nova Blocks</a> plugins, it truly requires them. Otherwise, the theme looks and behaves nothing like the demo or screenshots. It may as well not be the same theme.</p>\n\n\n\n<p>When first activating the theme, the front page of your website will become a completely white screen. It is not the dreaded <a href=\"https://wordpress.org/support/article/common-wordpress-errors/#the-white-screen-of-death\">White Screen of Death</a> caused by an error. Instead, the theme is forcibly hiding the content with custom styles.</p>\n\n\n\n<p><em>Why?</em> Yeah, good question. </p>\n\n\n\n<p>I see no reason to do so. Outside of changing some code (which I did), users must activate the plugins to make their content appear. There is no technical reason this should be the case when using this theme.</p>\n\n\n\n<p>There should be no path in which a user installs a theme only to have their content disappear.</p>\n\n\n\n<p>I get it. I was told these were required plugins. The theme even provides easy installation and activation links via the TGM Plugin Activation script. I also get that WordPress lacks any sort of real dependency system for handling this feature. That doesn’t make it any less of a poor user experience.</p>\n\n\n\n<p>As a developer, I thought I’d trick the system and test the theme without those plugins installed. I wanted to see what the theme looked like out of the box, which you can see in the following screenshot.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Oh, and that big block of category links in the above screenshot, it never goes away. It just sits there on your blog posts page. It is hard-coded in the posts page template (<code>home.php</code>). Rosa 2 is billed as a restaurant theme, so it might be acceptable if you don’t plan on running a blog.</p>\n\n\n\n<h3>Header and Nav Problems</h3>\n\n\n\n<p>The default header looks nothing like the screenshots, demo, or video for the theme. After nearly two hours of using the theme, I was ready to throw in the towel and rule this theme out as a lost cause. Not being able to get the basic nav menu set up for the theme was an exercise in self-punishment that I wouldn’t wish on anyone.</p>\n\n\n\n<p>It turns out that the Nova Blocks plugin really is required. <em>Did I mention that you should install the required plugins first?</em></p>\n\n\n\n<h3>Stretched images</h3>\n\n\n\n<p>On blog and archive pages, expect stretched featured images that attempt to fill out the box next to the excerpt for existing posts. There doesn’t seem to be any remedy to this outside of uploading new images. </p>\n\n\n\n<p>The theme uses the standard <code>post-thumbnail</code> size but does not define this size in the code. For those unfamiliar with the technical aspects when using this specific size, the theme should ideally define it via the <code>set_post_thumbnail_size()</code> function.</p>\n\n\n\n<h3>Sticky header</h3>\n\n\n\n<p>The large sticky header gave me a gut-wrenching feeling that walls were closing in on me. I became light-headed and dizzy. I found it tough to breathe. This is not hyperbole. I’m dead serious.</p>\n\n\n\n<p>On a personal note, I’ve had some issues with claustrophobia for the last couple of years. I first had this feeling after being stuck indoors for two weeks while watching over one of my cats who had surgery. I typically work from the porch where I can get fresh air, but that was one of the worst periods of my life. </p>\n\n\n\n<p>Since then, I often get this same feeling when sites have large sticky headers. It feels like the walls are closing down. <em>I wonder if others have similar issues.</em></p>\n\n\n\n<p>This feeling could be alleviated if the theme minimized the sticky-header height while scrolling down the page. Fortunately, the theme allows users to choose a static header, which I strongly suggest using. There are some other spacing and sizing options for the header area, which can help shrink some of this down.</p>\n\n\n\n<h2>Where the Theme Shines</h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/rosa2-custom-page.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>If there is one thing this theme does well, it is making it simple to create pages for a restaurant via the Nova Blocks plugin. Within minutes of creating a custom page, I had a restaurant-style page set up and ready to go.</p>\n\n\n\n<p>When coupled with Nova Blocks, the theme beautifully handles the process of creating custom pages with numerous unique outcomes. The integration with the plugin is brilliant. Each block has custom demo content that you can easily modify.</p>\n\n\n\n<p>Some of the names of the blocks and block options were cutesy and fun, such as “Hero of the Galaxy,” but they became a slight nuisance when wanting to quickly figure out the purpose of a block. I could see some users becoming annoyed at the names, and they might not be ideal for some professional settings. They were kind of fun though. I have mixed feelings about them.</p>\n\n\n\n<h2>How Does the Theme Handle Gutenberg?</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Rosa 2 is a theme primarily built for the block editor. It wonderfully handled core block output in my tests. </p>\n\n\n\n<p>When using Gutenberg-ready themes, I view the pullquote block as sort of the theme designer’s signature. It is one of those blocks where designers can have a lot of fun and put a unique spin on the display. I’m a fan of the pullquote style in this theme (pictured above).</p>\n\n\n\n<p>On the whole, it works well. When coupled with Nova Blocks, you have a lot of power at your disposal.</p>\n\n\n\n<h2>How Does the Code Stack Up?</h2>\n\n\n\n<p>Rosa 2 is lightweight in terms of custom code. Nearly all of the functionality is within the accompanying plugins. Because this is a theme review, I didn’t dive into the plugin code.</p>\n\n\n\n<p>From a purely technical standpoint, the theme does most things according to standards.</p>\n\n\n\n<p>There are some things I’d change from an architectural standpoint. For example, the file for its Customify plugin integration is over 1,100 lines of code. I would break that down to more digestible bits, which would help with long-term maintenance and bug hunting.</p>\n\n\n\n<p>Some of the editor-related JavaScript code could be more efficient. Repeated patterns should be grouped together to make the code smaller. The editor JavaScript file is not large, but every byte counts in a world where developers assume everyone is running on Gigabit internet connections.</p>\n\n\n\n<p>The primary stylesheet is 173 kb, which is <em>OMGBBQ</em> large, especially when you top it off with 100s of kb coming from the stylesheets and scripts loaded by Nova Blocks plugin. Unless you’re a user who is heavily optimizing your site, you can count on some slow page loads.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>I’d only recommend this theme to people who have more patience than me. While I didn’t follow instructions right off the bat (as a reviewer, I’m trying to push limits and break things), the theme did have some pain points that simply made for a frustrating process.</p>\n\n\n\n<p>I’m in the camp of people who believes themes should work out of the box. This theme doesn’t work without some setup. You’ll need to put in some legwork to get it going. However, once you make it over the initial hump, you can build some beautiful page layouts.</p>\n\n\n\n<p>I suggest using it strictly for its defined purpose of building a restaurant website. The typography is designed well enough for blogging, but the overall theme isn’t well-suited to 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, 09 Oct 2019 19:47: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:14:\"Justin Tadlock\";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:40:\"WordPress.org blog: WordPress 5.3 Beta 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7312\";s: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/news/2019/10/wordpress-5-3-beta-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3723:\"<p>WordPress 5.3 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta3.zip\">download the beta here</a> (zip). </li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there.</p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">beta 2</a> (and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>) over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F01%2F2019..10%2F08%2F2019&milestone=5.3&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">60 tickets have been closed</a> in the past week. </p>\n\n\n\n<h2>Some highlights </h2>\n\n\n\n<ul><li>Fixes and enhancements in the admin interface changes introduced in previous 5.3 beta releases.</li><li>Wording changes in login screen (<a href=\"https://core.trac.wordpress.org/ticket/43037\">#43037</a>).</li><li>Improved accessibility in media upload modal (<a href=\"https://core.trac.wordpress.org/ticket/47149\">#47149</a>).</li><li>Changes in the way the new error handling with images works (<a href=\"https://core.trac.wordpress.org/ticket/48200\">#48200</a>).</li><li>MediaElement.js has been updated from 4.2.6 to 4.2.13 (<a href=\"https://core.trac.wordpress.org/ticket/46681\">#46681</a>). The script is now also being loaded in the footer again. This fixes a regression that happened two years ago, so might be worth noting (<a href=\"https://core.trac.wordpress.org/ticket/44484\">#44484</a>).</li><li>Update to the REST API media endpoint to allow resuming of uploads (<a href=\"https://core.trac.wordpress.org/ticket/47987\">#47987</a>).</li></ul>\n\n\n\n<p>In addition to these, Beta 3 landed a number of small consistency and polish changes to the REST API, including an improvement to the permissions check used when editing comments, a fix for post type controller caching edge cases, and most importantly, the ability to use the _embed parameter to access the full data for a post using the /wp/v2/search endpoint.</p>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developer notes</a> tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</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:\"Tue, 08 Oct 2019 20:58:43 +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:16:\"Francesca Marano\";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:56:\"WPTavern: The Evolution of Anonymity in the Internet Age\";s: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:29:\"https://wptavern.com/?p=94745\";s: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:67:\"https://wptavern.com/the-evolution-of-anonymity-in-the-internet-age\";s: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:9328:\"<p>As a child of the ’90s, I was growing up in one of the largest transitional periods in human history. The Internet Age was upon us.</p>\n\n\n\n<p>I was born and raised in a small community in rural Alabama. The country. The backwoods. To give you an idea of how small the place was, my entire school (grades K-12) had around 800 students. While I was fortunate enough that my family could afford to travel for vacation almost every year, I mostly lived a sheltered life.</p>\n\n\n\n<p>I rode bikes down the dirt road and explored neighbors’ hunting lands with my best friend in the summer. We’d get up at dawn, grab some provisions, and cycle out for the day’s adventure. We’d race old lawnmowers, build unstable treehouses, and swim in what were likely snake-infested creeks. We’d camp out under the stars. Our parents never asked where we were. As long as we showed up for supper and took a bath a few times each week to scrub the dirt off, we were generally left up to our own imaginations.</p>\n\n\n\n<p>There was another aspect of growing up in the ’90s, and that was video games. At 16, I spent most of the summer in the fields picking watermelons or throwing bales of hay onto a trailer. It was hard work, but it kept me supplied with whatever video games I wanted. When not out in the wild, my best friend and I would be glued to a 19-inch television playing the Nintendo 64 (and later the Sega Dreamcast).</p>\n\n\n\n<p>I lived in this somewhat country-bumpkin bubble with no idea of the outside world.</p>\n\n\n\n<p>Then came the explosion of the internet. My family never had a computer at home. That left me to access this wonderful new thing during school hours or at a friend’s house.</p>\n\n\n\n<p>Like pretty much every teen boy I knew at the time, the best use of the internet was logging into adult chatrooms and hoping to chat with a woman. Yeah, the average teenage boy wasn’t doing anything productive with the internet, even in the ’90s. Big surprise there. This isn’t groundbreaking news, folks. Move along.</p>\n\n\n\n<p>There were other uses of chatrooms, such as finding other gamers. That’s where my original love of the internet began. I could talk to people across the world about Nintendo and Sega games. I even started getting pen-pals where we would exchange weekly emails.</p>\n\n\n\n<p>At the time, there was this common saying among adults, “You don’t know who you’re talking to on that thing. It could be a fat, 40-year-old man living in his parents’ basement.” <em>Hey, why you throwin’ shade at heavyset men? Just tell me it could be a psycho.</em></p>\n\n\n\n<p>My parents drilled this lesson into my brain. School teachers did the same. Like my peers at the time, I was required to use a pseudonym when going online. The thought of using a real name was almost unheard of. As teens, we’d joke about the basement-dwelling bogeyman who our parents and teachers warned us against. It was all a game to us despite there being legitimate fears, particularly now that I have 20 years of hindsight at my disposal.</p>\n\n\n\n<p>That’s where I came up with my username of <a href=\"https://profiles.wordpress.org/greenshady\">greenshady</a>, by the way. One day I may even tell what it means. One day. For now, I’ll keep all of you who have asked about it over the years guessing.</p>\n\n\n\n<p>I used that username for years because there was always this little voice in the back of my mind telling me to remain anonymous.</p>\n\n\n\n<h2>Anonymity in the Age of Transparency</h2>\n\n\n\n<p>I’m not exactly sure at what point attitudes toward anonymity changed. Social networks likely played a huge role transitioning us from silly screen names to using our real-life names on the internet. Otherwise, it’d be harder for our real-life friends to find us on Facebook, Twitter, and elsewhere.</p>\n\n\n\n<p>This prevailing attitude toward anonymity didn’t limit itself to social networks. More and more, people shunned the idea of anonymous posts or comments on blogs and elsewhere. </p>\n\n\n\n<p>There’s likely some form of stardom attached to using real names as well. Everyone is just one video, one blog post, or one tweetstorm away from their 15 minutes in the spotlight.</p>\n\n\n\n<p>Even within the WordPress community over the years, I’ve witnessed a shift toward automatically disliking anonymous comments. The prevailing idea is that a person’s contribution to a discussion has less worth if it’s hidden behind the veil of anonymity, that one’s opinions are invalid if they cannot be backed up by a real name. </p>\n\n\n\n<p>It opens the person to attack not based on their ideas but on how they choose to present themselves online. This is a part of the culture that is unhealthy.</p>\n\n\n\n<p>In a time when you can effectively be shut out from the modern-day public square for making one wrong statement, anonymity is more important than ever for some. Often, there’s no recourse for missteps after you’ve been taken down by the angry horde over a lapse in judgment. Once your name has been hauled through the mud and back again, there’s little you can do about it.</p>\n\n\n\n<p>That little voice in the back of my mind, the one carefully crafted by my parents and teachers, is a reminder that a simpler period during the Internet Age once existed.</p>\n\n\n\n<p>There are other pockets of the internet where the pseudonym has persisted. One area is in gaming. You’d be the oddball if using a real name in an online multiplayer match. <em>I suppose “Brett” or “Molly” doesn’t strike fear in the heart’s of enemies.</em> The entire culture of online gaming is built upon anonymity, which is at odds with much of the internet world today. Frankly, I find it oddly satisfying.</p>\n\n\n\n<p>I do wonder whether a real name online is important for civil discourse. Quite often, online personas are much different than their real-life counterparts. I mean, have you seen the numerous alpha-male groups on social networks made up of men who all think they’re the leaders of the pack? <em>Hmmm…maybe there was some truth to that basement-dweller theory, after all. Thanks for the heads up, Mom and Dad.</em></p>\n\n\n\n<p>The point is that an online persona, even attached to a real name, is still a persona. It’s not much different than a fake user handle.</p>\n\n\n\n<p>I’d wager that the need to see a person’s real name has more to do with knowing exactly who to shun for controversial ideas rather than attaching some sort of validity to it. Usernames can be altered. You’re pretty much stuck with your real name, and mishaps follow your real name around.</p>\n\n\n\n<p>As we were reviewing the Tavern’s <a href=\"https://wptavern.com/comment-policy\">comment policy</a> last week, one point I brought up is that I believe we should allow anonymous comments. A large reason for this is that people should feel safe to communicate their thoughts within the community. While I won’t get into the specifics of internal discussions, I do hope that it’s something we officially remove from the policy.</p>\n\n\n\n<p>Being in favor of anonymity does not mean being in favor of personal attacks or handing over a license to use a vulgar term as a username. It’s about protecting people’s ability to speak freely without fear of becoming an outcast within the community for an unpopular opinion.</p>\n\n\n\n<p>Sometimes anonymity provides people the freedom they need to effectively discuss ideas. More importantly, it allows them to be a part of the community in a way that they choose.</p>\n\n\n\n<h2>Are We Moving back?</h2>\n\n\n\n<p>With the European Union, Japan, Australia, and other countries passing stricter privacy laws, there’s a growing movement to protect privacy across the world. While this movement has focused more on large corporations and what they do with personal data, there’s an underlying fear that’s likely been there from the beginning.</p>\n\n\n\n<p>People are coming to the realization that we gave up too much.</p>\n\n\n\n<p>We handed over our names. And, once we handed over our names, it was a slippery slope to handing over everything else about ourselves. If you dig deep enough you can find the names of all my cats and when they were all born.</p>\n\n\n\n<p>I’m not sure how I feel about that. I’m in too deep at this point.</p>\n\n\n\n<p>My parents from 20 years ago would not have liked the idea too much. My dad just uses YouTube to watch videos on building stuff for the most part today (it took years to stop him sending me email chains), but my stepmom is right there along with everyone else on social networks.</p>\n\n\n\n<p>It’s odd to look back on the past 20 years to see how some of our initial fears surrounding anonymity have transformed. In another 20 years, we’ll all be back to using pseudonyms again. Call me out on it if I’m wrong. I do wonder if we’ll look back at this time and think everyone was crazy for using their real names.</p>\n\n\n\n<p>I welcome your anonymous comments on this post. Just don’t use “wanker” for your handle.</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, 08 Oct 2019 19: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:79:\"WPTavern: GNU Project Maintainers Move to Oust Richard Stallman from Leadership\";s: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:29:\"https://wptavern.com/?p=94714\";s: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:\"https://wptavern.com/gnu-project-maintainers-move-to-oust-richard-stallman-from-leadership\";s: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:5486:\"<p>GNU Project maintainers are working to oust Richard Stallman from his position as head of the organization. In a joint <a href=\"https://guix.gnu.org/blog/2019/joint-statement-on-the-gnu-project/\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> published yesterday morning, a collection of 22 GNU maintainers and developers thanked Stallman for his work and declared that he can no longer represent the project:</p>\n<blockquote><p>We, the undersigned GNU maintainers and developers, owe a debt of gratitude to Richard Stallman for his decades of important work in the free software movement. Stallman tirelessly emphasized the importance of computer user freedom and laid the foundation for his vision to become a reality by starting the development of the GNU operating system. For that we are truly grateful.</p>\n<p>Yet, we must also acknowledge that Stallman’s behavior over the years has undermined a core value of the GNU project: the empowerment of all computer users. GNU is not fulfilling its mission when the behavior of its leader alienates a large part of those we want to reach out to.</p>\n<p>We believe that Richard Stallman cannot represent all of GNU.</p></blockquote>\n<p><a href=\"https://www.stallman.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Stallman’s personal website</a> continues to prominently display his intentions to remain in the leadership role. He added the header to his site, following the publication of remarks he made regarding a 17-year old victim of sex trafficker Jeffrey Epstein, which precipitated his <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\" rel=\"noopener noreferrer\" target=\"_blank\">resignation from both MIT and the Free Software Foundation</a>:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/Screen-Shot-2019-10-07-at-9.44.17-PM.png?ssl=1\"><img /></a></p>\n<p>The Stallman saga has continued to grow stranger in the aftermath of his resignations, as many were concerned that he would be homeless after his website featured a notice that he was “<a href=\"https://web.archive.org/web/20190929052858/https://stallman.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Seeking Housing</a>,” accompanied by a <a href=\"https://web.archive.org/web/20190929045948/https://stallman.org/seeking-housing.html\" rel=\"noopener noreferrer\" target=\"_blank\">link</a> leading to his specific requirements for a temporary residence. His personal site was also reportedly <a href=\"http://techrights.org/2019/09/29/fsf-defaced-rms/\" rel=\"noopener noreferrer\" target=\"_blank\">vandalized</a> nine days ago with a message that he was stepping down from the GNU.</p>\n<p>The defacement with the false GNU resignation message was reverted shortly thereafter on September 30, and replaced with the header saying he continues to be “Chief GNUisance of the GNU Project” with no intention of stopping soon. Stallman has not yet publicly acknowledged the statement from the GNU maintainers. He has also not yet responded to our request for comment.</p>\n<p>Yesterday the Free Software Foundation (FSF) published a <a href=\"https://www.fsf.org/news/fsf-and-gnu\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> indicating it was re-evaluating its working relationship with the GNU project, which has provided some of its technical infrastructure, fiscal sponsorship, and copyright assignment:</p>\n<blockquote><p>GNU decision-making has largely been in the hands of GNU leadership. Since RMS resigned as president of the FSF, but not as head of GNU (“Chief GNUisance”), the FSF is now working with GNU leadership on a shared understanding of the relationship for the future. As part of that, we invite comments from free software community members.</p></blockquote>\n<p>Stallman responded the next day, indicating he wanted to work with FSF on restructuring the relationship between the two organizations:</p>\n<blockquote><p>I recently resigned as president of the FSF, but the FSF continues to provide several forms of crucial support for the GNU Project. As head of the GNU Project, I will be working with the FSF on how to structure<br />\nthe GNU Project’s relationship with the FSF in the future.</p></blockquote>\n<p>The FSF maintains some critical responsibilities in that it currently <a href=\"https://en.wikipedia.org/wiki/Free_Software_Foundation#History\" rel=\"noopener noreferrer\" target=\"_blank\">holds the copyrights to enforce the GPL</a>. Stallman has recently called on people to <a href=\"http://techrights.org/2019/10/01/what-stallman-wants/\" rel=\"noopener noreferrer\" target=\"_blank\">continue supporting the FSF’s work</a>, despite his resignation from the organization.</p>\n<p>The small contingency of GNU project maintainers who penned the <a href=\"https://guix.gnu.org/blog/2019/joint-statement-on-the-gnu-project/\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> published yesterday seem to be on the same page with FSF in its rejection of Stallman’s leadership. Their message concludes with their intention to overhaul the leadership of the free software movement to be more inclusive of the people who have been alienated by Stallman’s behavior over the years:</p>\n<p>“We think it is now time for GNU maintainers to collectively decide about the organization of the project. The GNU Project we want to build is one that everyone can trust to defend their freedom.”</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, 08 Oct 2019 04:33: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: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:96:\"WPTavern: Google Chrome Announces Rollout Plan for Blocking Mixed Content Beginning January 2020\";s: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:29:\"https://wptavern.com/?p=94672\";s: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:107:\"https://wptavern.com/google-chrome-announces-rollout-plan-for-blocking-mixed-content-beginning-january-2020\";s: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:3405:\"<p>The Google Security Team has <a href=\"https://security.googleblog.com/2019/10/no-more-mixed-messages-about-https_3.html\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> a timeline for when Chrome will begin blocking <a href=\"https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content\" rel=\"noopener noreferrer\" target=\"_blank\">mixed content</a> by default in order to ensure that HTTPS browsing is more secure. Mixed content refers to HTTPS pages that load resources, such as images, videos, stylesheets, and scripts, over HTTP.</p>\n<p>The gradual rollout will begin with Chrome 79, which is scheduled for release in December 2019. The browser already blocks mixed scripts and iframes, but this release will add a new setting (that can be toggled on or off) for users to unblock it on a per-site basis.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/site-settings-unblock-mixed-content.png?ssl=1\"><img /></a></p>\n<p>The next phase of the rollout will progress with Chrome 80, due in January 2020, where mixed audio and video resources will get auto-upgraded to HTTPS. If they fail to load over HTTPS, Chrome will automatically block them. Mixed images will still load but Chrome will display a “Not Secure” warning in the omnibox next to the URL.</p>\n<p>The last phase of the rollout is planned for February 2020. Along with the release of Chrome 81, mixed content images will bet auto-upgraded to HTTPS and Chrome will block them if they fail to load.</p>\n<p>The Google Security Team reports that Chrome users now spend more than 90% of their browsing time on HTTPS on both desktop and mobile. The plan to begin blocking mixed content is targeted at addressing insecure holes in SSL implementations of sites that have already made the switch to HTTPS.</p>\n<p>WordPress site owners have plenty of time to ensure all their resources load over HTTPS. The official plugin directory has <a href=\"https://wordpress.org/plugins/search/mixed+content/\" rel=\"noopener noreferrer\" target=\"_blank\">several popular plugins</a> that can assist with fixing problems with mixed content. <a href=\"https://wordpress.org/plugins/really-simple-ssl/\" rel=\"noopener noreferrer\" target=\"_blank\">Really Simple SSL</a>, a plugin that is active on more than 3 million sites, has a built-in mixed content scan that shows users what they need to do if they aren’t seeing the green lock in the omnibar yet. It also includes a “mixed content fixer” for the back-end.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/mixed-content-scan-really-simple-ssl.png?ssl=1\"><img /></a></p>\n<p>Other popular plugins, such as <a href=\"https://wordpress.org/plugins/http-https-remover/\" rel=\"noopener noreferrer\" target=\"_blank\">SSL Mixed Content Fix</a> (20k active installs) and <a href=\"https://wordpress.org/plugins/ssl-insecure-content-fixer/\" rel=\"noopener noreferrer\" target=\"_blank\">SSL Insecure Content Fixer</a> (300k active installs) are focused specifically on fixing these issues and may assist in making other installed plugins compatible with HTTPS. They include tools that will diagnose insecure content and automatically perform basic fixes. The SSL Insecure Content Fixer plugin is also compatible with WordPress multisite and includes a network settings page to set defaults for the entire network.</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, 07 Oct 2019 19:09: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: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:102:\"WPTavern: U.S. Supreme Court Denies Domino’s Appeal to Determine Whether Websites Must Be Accessible\";s: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:29:\"https://wptavern.com/?p=94674\";s: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:\"https://wptavern.com/u-s-supreme-court-denies-dominos-appeal-to-determine-whether-websites-must-be-accessible\";s: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:6872:\"<p>In what is seen as a win for accessibility advocates, the U.S. Supreme Court denied Domino’s petition to appeal a lower-court decision on whether the pizza chain’s website and mobile app must be accessible to those with disabilities. The earlier U.S. 9th Circuit court <a href=\"http://cdn.ca9.uscourts.gov/datastore/opinions/2019/01/15/17-55504.pdf\">ruled that websites fall under</a> Title III of the American with Disabilities Act (ADA).</p>\n\n\n\n<p>The original case was brought forth by Guillermo Robles, a blind man, who claimed the Domino’s website and app did not allow him to place an order in 2016. Robles, like many other people with disabilities, relies on screen-reader software to use the web. Despite using such software, he was not able to make an order.</p>\n\n\n\n<p>The primary issue of the case was whether the ADA applied to websites or apps in the same way that they applied to brick-and-mortar locations. Title III specifically points out public places of accommodation but not websites.</p>\n\n\n\n<p>The specific <a href=\"https://www.ada.gov/regs2010/titleIII_2010/titleIII_2010_regulations.htm\">section of the ADA</a> related to the case reads as follows:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Section 36.201(a) contains the general rule that prohibits discrimination on the basis of disability in the full and equal enjoyment of goods, services, facilities, privileges, advantages, and accommodations of any place of public accommodation.</p><p>Full and equal enjoyment means the right to participate and to have an equal opportunity to obtain the same results as others to the extent possible with such accommodations as may be required by the Act and these regulations. It does not mean that an individual with a disability must achieve an identical result or level of achievement as persons without a disability.</p></blockquote>\n\n\n\n<p>The 9th Circuit decided the ADA also applied to businesses on the internet.</p>\n\n\n\n<p>There were three key issues in the case: whether the ADA applied to the website and app, whether Domino’s had fair notice to comply, and whether the court or the Department of Justice (DOJ) should decide the case.</p>\n\n\n\n<p>The DOJ is the body that regulates the ADA. Since it was signed into law in 1990, the DOJ has not created specific guidelines for how businesses can ensure their websites are within the law.</p>\n\n\n\n<p>One argument is that it would have been cheaper and easier for Domino’s to follow accessibility standards such as the Web Content Accessibility Guidelines (WCAG). Such arguments don’t address the need for meaningful regulations from a governing body. The WCAG are not legal guidelines in the U.S. However, the 9th Circuit ruled that the lack of guidelines does not remove Domino’s responsibility.</p>\n\n\n\n<p>Circuit Judge John B. Owens wrote in the <a href=\"https://www.supremecourt.gov/DocketPDF/18/18-1539/102950/20190613153344483_DominosPetitionAppendix.pdf\">9th Circuit decision</a>, “While we understand why Domino’s wants DOJ to issue specific guidelines for website and app accessibility, the Constitution only requires that Domino’s receive fair notice of its legal duties, not a blueprint for compliance with its statutory obligations.”</p>\n\n\n\n<p>The lack of such regulations is why this case was important from Domino’s standpoint. While they lost the case, it may further push the need for more specific guidelines for businesses, both large and small, to follow.</p>\n\n\n\n<p>The lack of specific regulations could also be seen as <em>a feature rather than a bug</em>, to use a developer phrase. Government-specific rules are often slow to keep up with the changing nature of the web. Guidelines that apply one day may need to change soon thereafter. It also leaves businesses the ability to make their websites accessible via a method of their choice rather than limiting what they can do to potentially bureaucratic rules that are out of touch with the modern web.</p>\n\n\n\n<p>At the same time, it could leave smaller business owners without large legal and website development budgets wondering if they could be looking at lawsuits in the future. Courts were flooded with <a href=\"https://www.3playmedia.com/2019/06/12/2018sweb-accessibility-lawsuits/\">2,285 accessibility lawsuits in 2018</a>, which was nearly triple the 814 cases in 2017.</p>\n\n\n\n<h2>What Does This Mean for Website owners in the U.S.?</h2>\n\n\n\n<p>In terms of the case, the Supreme Court didn’t make a ruling. They denied Domino’s petition and left the decision of the 9th Circuit in place, which covers much of the western U.S. In the coming years, more cases will make their way through the courts. More than likely, case law will continue becoming stronger in favor of making websites compliant with the ADA.</p>\n\n\n\n<p>If you run an online business, it’s past time to make sure your website is accessible. It could be years before the current law is amended or new ones are written on the legislative level. The winds of change will likely not favor those with inaccessible websites as more court decisions come down.</p>\n\n\n\n<p>In a nutshell, businesses with websites, apps, or other online presences need to make sure all people have access to their goods or services. While there are no specific guidelines in the U.S., <a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">WCAG</a> is the largely agreed-upon standards internationally.</p>\n\n\n\n<p>If you’re a small business owner using WordPress, you should start with a WordPress <a href=\"https://wordpress.org/themes/tags/accessibility-ready/\">theme labeled as accessibility-ready</a>. It is worth noting that “accessibility-ready” does not mean that your website will automatically become accessible. It simply means that the WordPress theme meets a minimum number of accessibility guidelines. Custom content on your website should also follow the same guidelines.</p>\n\n\n\n<p>Accessibility is not a set-it-and-forget-it type of thing. It’s something that business owners need to continually evaluate and make sure that all their customers, regardless of how that person accesses the internet, can enjoy the same services equally.</p>\n\n\n\n<p>The official theme review team is working through a long-term plan to <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\">make all themes accessible</a> at WordPress.org. Many theme businesses outside of WordPress.org also comply with those same guidelines. If purchasing a theme, you should check with the business beforehand.</p>\n\n\n\n<p>As always, if you’re unsure whether your website meets legal guidelines, you’ll need to consult a lawyer who specializes in website accessibility.</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, 07 Oct 2019 18:02: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:14:\"Justin Tadlock\";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:51:\"WordPress.org blog: People of WordPress: Alice Orru\";s: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:\"https://wordpress.org/news/?p=7288\";s: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:66:\"https://wordpress.org/news/2019/10/people-of-wordpress-alice-orru/\";s: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:8390:\"<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Alice Orru, from Sardinia, Italy.</strong></h2>\n\n\n\n<p>Alice Orru was born in Sardinia, an island in the middle of the Mediterranean Sea. As a child, she dreamt of becoming a flight attendant, traveling the world, and speaking many foreign languages.</p>\n\n\n\n<p>Unable to meet the height requirements of her chosen profession, Orru ended up choosing a different path in life, following the Italian mantra: “You have to study something that will guarantee a stable and secure job for life.”</p>\n\n\n\n<p>The unemployment rate in Sardinia is very high, a challenge shared throughout the surrounding islands. In addition to that, Alice wasn’t that keen on having the same job all her life, as her parents had.</p>\n\n\n\n<p>When Orru was 22 she moved to Siena, Tuscany, to finish her studies. That is when she created her first personal blog. The website was built on an Italian platform named Tiscali, which she later migrated to WordPress.com.</p>\n\n\n\n<p>After 2 years in Tuscany Orru moved to Strasbourg, France. She studied French and worked several jobs while living there. Her first serious job was in Milan – working 40 hours/week in the marketing department of a large, international company. She found herself surrounded by ambitious colleagues and a boss who constantly requested extra —unpaid— working hours per day.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?fit=632%2C422&ssl=1\" alt=\"Alice Orru\" class=\"wp-image-7291\" />Alice Orru\n\n\n\n<h2>Choices, choices, choices…</h2>\n\n\n\n<p>Alice gave up blogging because she wasn’t feeling inspired enough to write. She questioned whether she really wanted to do that job forever; working 10 hours per day under the neon lights of an office. It forced her to set aside her dreams for the time being, and for a while, she mainly lived for the weekends.</p>\n\n\n\n<p>Alice decided to leave the job and moved to Barcelona, Spain, all by herself, in 2012.</p>\n\n\n\n<p>After a few months of intense Spanish learning at the university, she found a job in an international clinic as a “Patient Coordinator.” Orru assisted international patients coming to Barcelona for their treatments. She acted as their translator, interpreter and administrative consultant. </p>\n\n\n\n<p>Patients came from Italy, France, England, Morocco, Senegal, and several other countries. Alice was so inspired by some of their stories, that she started to write again: She dusted off her WordPress blog and filled it with stories about her new life in Barcelona and some of the women she met at the clinic. “I was feeling stronger and more independent than ever,” Orru expressed.</p>\n\n\n\n<h2>Technical issues led to unexpected opportunities</h2>\n\n\n\n<p>In the summer of 2015, Alice was writing on her blog and got stuck with a technical problem. While she was searching through the WordPress.com documentation, she saw a pop-up in the bottom right corner of her screen. It was a staff member of Automattic, checking if she needed help. They chatted for a few minutes and the problem was solved. Alice left the chat with one question, though: how did that person on chat find a support job with WordPress?</p>\n\n\n\n<p>Alice found the official WordPress job page: <a href=\"http://jobs.wordpress.net/\"><strong>jobs.wordpress.net</strong></a> and noticed a job offer that caught her attention: WP Media, a French startup, was looking for a polyglot and remote customer service teammate for one of their plugins, WP Rocket. She read their requirements: fluency in English, French and possibly other languages, excellent experience with WordPress, and some coding skills.</p>\n\n\n\n<p>She knew she didn’t meet all the requirements, but could speak 4 languages, and she had a WordPress blog. She didn’t know anything about PHP, though. Orru had been a WordPress.com user for years and knew she was ready to learn more.</p>\n\n\n\n<p>Orru wrote a cover letter and sent her CV. A Skype interview was conducted and several days later she received the news that she had gotten the job! </p>\n\n\n\n<h2><strong>A steep learning curve</strong></h2>\n\n\n\n<p>The early days in her new job were intense. Alice felt inexperienced but was supported by her teammates. She started studying and reading everything about WordPress for beginners. Initially, she answered easy tickets from customers. All the while her teammates were sending useful material to read, setting up video-calls for 1 to 1 training, and encouraging her the entire time.</p>\n\n\n\n<p>Soon, Orru was replying to customers whose first language was either Spanish or Italian in their native language. This was much appreciated and resulted in several happy comments. Until that moment the plugin’s support had been offered only in English and French.</p>\n\n\n\n<h2><strong>Finding her way in the WordPress community</strong></h2>\n\n\n\n<p>At WordCamp Paris 2016, one of Alice’s teammates introduced her to how the WordPress community collaborated and kept in contact through Slack.</p>\n\n\n\n<p>“You speak multiple languages, why don’t you try to contribute to the polyglots team?” he asked.</p>\n\n\n\n<p>Alice knew very little about contributing to WordPress. She had only been working for WP Media for 6 months and didn’t feel ready to dive into a new challenge and start also contributing to WordPress.</p>\n\n\n\n<p>Yet, curiosity led her to join both the local Italian and the global WordPress Community on Slack. For the first few months, she mainly observed what was happening the channels. Then, she attended WordCamp Milan and met some members of the Italian Polyglots team.</p>\n\n\n\n<p>It was love at first string! Laura, one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=it_IT\"><strong>General Translation Editors</strong></a> (GTE) for Italy, taught her how to start contributing and translating, following the polyglots guidelines. She also told her about the Italian community’s big efforts to work together, consistently, to boost and grow WordPress related events in Italy.</p>\n\n\n\n<p>With her teammates’ encouragement, Orru applied to WordCamps as a speaker and gave her first talk in December 2016 at WordCamp Barcelona. After that, she both spoke at WordCamp Torino on April 2017 and at WordCamp Europe in 2017.</p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?fit=632%2C356&ssl=1\" alt=\"\" class=\"wp-image-7292\" />Alice Orru speaking at WordCamp Europe, in Paris, in 2017\n\n\n\n<h2><strong>Dreams evolve, all the time!</strong></h2>\n\n\n\n<p>Orru knows that her experiences are not just due to luck. She used her previous skills and passions and adapted them to a new career and life path.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“We all have some skills; and if we don’t know which they are exactly, we should take some time to make a list of the things we’re really good at. With that in mind, just try. Apply. Get involved. Don’t get stuck in the feeling of ‘I can’t do it because I don’t know enough’. So that’s what I did. Without even realizing it, I started putting into reality the dream of the little girl who was born on an island and wanted to travel and speak different languages.WordPress made this possible. I’m now part of a big community, and I am proud of it.”</p><cite>Alice Orru</cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" /></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</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:\"Sat, 05 Oct 2019 04:24: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:16:\"Yvette Sonneveld\";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:76:\"WPTavern: WooSesh 2019 Scheduled for October 9 and 10: Registration Now Open\";s: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:29:\"https://wptavern.com/?p=94416\";s: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:86:\"https://wptavern.com/woosesh-2019-scheduled-for-october-9-and-10-registration-now-open\";s: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:2715:\"<p><a href=\"https://woosesh.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WooSesh</a> is happening next week on October 9 and 10, and registration is now open. This is the second edition of the virtual WooCommerce event hosted by <a href=\"https://wpsessions.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPSessions</a>. In addition to presentations focused entirely on e-commerce, the event will include a “Hallway Track” that offers opportunities for attendees to connect with each other, along with virtual swag donated by various WordPress companies.</p>\n<p>Day 1 will cover a wide range of topics for WooCommerce professionals with a focus on store builders, including sessions on designing with blocks, sales tax, optimizing the checkout experience, and store emails. The first day will also feature a two-hour “State of the Woo” keynote address from the WooCommerce team. They plan to discuss case studies, lessons learned, and priorities for the year ahead.</p>\n<p>Day 2 will focus on more technical topics for WooCommerce developers, such as “Custom Tables and the Checkout Bottleneck,” solving store UX problems, and productizing development work.</p>\n<p>The event is being organized by Brian Richards and Patrick Rauland. For the past two years it has been the official successor to the previously held in-person WooConf events. Given how successful WooSesh has been in connecting the WooCommerce community, it’s easy to see why WooConf has not yet been reinstated.</p>\n<p>“One thing I can say, having helped three WooConfs and both WooSesh’s, is that a virtual event is a fraction of the cost,” Rauland said. “And we had twice as many people show up live for WooSesh compared to an in person event.”</p>\n<p>In 2018, WooSesh had 2,800 registrants and more than 1,400 who participated live during the event. Rauland reported that 900 people watched the keynote address. After the conclusion, 94% of respondents to an attendee survey said they would like to attend again the next year.</p>\n<p>Last year attendees could watch all sessions for free as long as they attended at least one presentation during the live event. This year sessions will be free during the event to encourage maximum engagement, and the recordings will be available on WPSessions.com for a fee after its conclusion.</p>\n<p>Tickets are free, thanks to sponsors that include WooCommerce, Jilt, and Avalara. Attendees can <a href=\"https://woosesh.com\" rel=\"noopener noreferrer\" target=\"_blank\">register</a> on the website and <a href=\"https://woosesh.com/#schedule\" rel=\"noopener noreferrer\" target=\"_blank\">preview the schedule</a> in their own timezones.</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, 04 Oct 2019 19:10: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:\"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:77:\"WPTavern: WordPress.org Bumps PHP Maximum for Plugin Directory to Version 7.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:29:\"https://wptavern.com/?p=94637\";s: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:\"https://wptavern.com/wordpress-org-bumps-php-maximum-for-plugin-directory-to-version-7-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4315:\"<p>The WordPress.org SVN system received a version bump to 7.2 on October 3. This change means that plugin authors can now use newer PHP syntax in plugins they submit to the official plugin directory. In the future, the version maximum will match what’s running on WordPress.org. </p>\n\n\n\n<p>This should be good news for any plugin developers who are using newer PHP syntax. Previously, authors were able to submit code using newer PHP functions if they had a compatibility check in the same file. However, newer syntax wasn’t allowed.</p>\n\n\n\n<p>“The issue was that the Linter (being stuck on 7.0) prevented anyone from checking in code via SVN that used 7.1+ standards,” said Mika Epstein from the plugin review team. “So things like the Spaceship operator would fail on commit and you’d be told the syntax was invalid. This was holding back certain plugins from committing code into the directory.”</p>\n\n\n\n<p>Epstein first opened a <a href=\"https://meta.trac.wordpress.org/ticket/3791\">ticket to address the issue</a> 13 months ago but said she’d been quietly asking for a fix for a while longer.</p>\n\n\n\n<p>The max PHP version isn’t listed anywhere in the <a href=\"https://developer.wordpress.org/plugins/wordpress-org/\">plugin guidelines</a>. Technically, it’s an SVN limitation on WordPress.org and not something the plugin team chose. However, for plugin authors, they may not have known about the issue until their plugin was rejected by the system. They would then message the plugin team about the problem. “I may end up putting something in the docs, but it’s a somewhat uncommon occurrence,” said Epstein.</p>\n\n\n\n<p>This has been an issue for some plugin authors since PHP 7.1 was released, which was December 1, 2016. “It was a once a year issue, then twice, and then it inched up to every couple months,” said Epstein. “As of September, at least once a month someone would hit this and complain to plugins.”</p>\n\n\n\n<p>One potential problem with blocking newer PHP code is with plugins that rely on third-party libraries, which may only have security patches in more recent versions. However, Epstein said that she was not aware of any security issues that resulted from the version limitation.</p>\n\n\n\n<p>Andrey “Rarst” Savchenko pointed out in the ticket that “7.2 was released almost two years ago.” While he says it’s an improvement over the previous 7.0 limitation, version 7.2 should not be a hard ceiling for plugins in the repository.</p>\n\n\n\n<p>PHP 7.3 was released on December 16, 2018, and PHP 7.4 <a href=\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\">will be released</a> on November 28, 2019.</p>\n\n\n\n<p>“Given PHP’s poor adoption curves,” responded Dion Hulse, “all that this means is that you can’t release a plugin through WordPress.org that only works on 15% of WordPress sites. “You can even use newer functions in PHP if including compat code, just not newer syntax.”</p>\n\n\n\n<p>Plugin author Josh Pollock <a href=\"https://twitter.com/Josh412/status/1100487567236059136\">called awareness to the issue</a> on Twitter in February. “Hours later, I’m downgrading a dependency, because it requires another dependency, which requires PHP 7.1.”</p>\n\n\n\n<p>“I think we got lucky and there were no bugs,” Pollock said of downgrading to an earlier version of the dependency. “I don’t think I’ve used SVN since. I’m really fortunate that’s not a part of my life anymore.”</p>\n\n\n\n<p>“I agree with Rarst,” said Pollock. “We should be allowing for PHP 7 and making it easier for plugins not to support sites on out of date versions of PHP.” This echoes the sentiment of other developers who are pushing for WordPress to adopt newer standards or at least allow them to do so in their own plugins in the official directory.</p>\n\n\n\n<p>For the majority of plugin authors, this should be a non-issue as long as the SVN system remains updated to match the version of PHP used on WordPress.og.</p>\n\n\n\n<p>PHP 7.2 will lose active support on November 30, 2019, and security support on November 30, 2020.</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, 04 Oct 2019 16:41:19 +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:14:\"Justin Tadlock\";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:134:\"WPTavern: Matt Mullenweg and David Heinemeier Hansson Discuss WordPress Market Share, Monopolies, and Power in Open Source Communities\";s: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:29:\"https://wptavern.com/?p=94234\";s: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:143:\"https://wptavern.com/matt-mullenweg-and-david-heinemeier-hansson-discuss-wordpress-market-share-monopolies-and-power-in-open-source-communities\";s: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:18041:\"<p>In what began as a heated conversation on Twitter, Automattic CEO Matt Mullenweg and Ruby on Rails creator and Basecamp co-founder David Heinemeier Hansson took to the airwaves to debate opposing viewpoints on market share, monopolies, and power in open source communities. Hansson reacted to a statement Mullenweg made in an interview after <a href=\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\" rel=\"noopener noreferrer\" target=\"_blank\">Salesforce Ventures invested $300 million in Automattic</a> last month.</p>\n<p>“I think there’s potential to get to a similar market share as Android, which I believe now has 85% of all handsets,” Mullenweg told <a href=\"https://techcrunch.com/2019/09/19/automattic-ceo-matt-mullenweg-about-raising-300-million-and-the-open-web/\" rel=\"noopener noreferrer\" target=\"_blank\">TechCrunch</a>. “When you think about it, open source has a virtuous cycle of adoption, people building on the platform and more adoption.”</p>\n<p>Hansson reacted on Twitter, sparking a conversation that received 116 comments.</p>\n<p>“‘We want every website, whether it’s e-commerce or anything to be powered by WordPress’ is a nasty, monopolistic goal,” he said. “Listening to Matt muse about 85% marketshare dreams is a real downer. But $300m is a down payment on monopoly dreams.”</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">“We want every website, whether it’s e-commerce or anything to be powered by WordPress” is a nasty, monopolistic goal. Listening to Matt muse about 85% marketshare dreams is a real downer. But $300m is a down payment on monopoly dreams. <a href=\"https://t.co/hf4HShISug\">https://t.co/hf4HShISug</a></p>\n<p>— DHH (@dhh) <a href=\"https://twitter.com/dhh/status/1174695189090308096?ref_src=twsrc%5Etfw\">September 19, 2019</a></p></blockquote>\n<p></p>\n<p>In an episode titled “<a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\" rel=\"noopener noreferrer\" target=\"_blank\">Open Source and Power</a>,” Mullwenweg joined Hansson on the Rework podcast for a more in-depth discussion that dives deeper into Mullenweg’s remarks on WordPress’ potential market share.</p>\n<p>Hansson contends that he would like to see a very large, rich ecosystem of providers of tools and services on the web and expressed concern about WordPress growing many times faster than any of its competitors.</p>\n<p>Mullenweg countered that unique domains are not the only measure of a monopoly. He also referenced Shopify as having a thriving business with a small percentage of the e-commerce platform market share.</p>\n<p>“Even though open source can become a bit of a standard, it doesn’t prevent others from starting on it,” Mullenweg said. “The truth is if I had an evil hat on – let’s say I started doing evil monopoly stuff, people could easily fork the software – and they would. There’s a checks and balances there.”</p>\n<p>This is a <a href=\"https://wptavern.com/wordpress-governance-project-looks-for-new-leadership\" rel=\"noopener noreferrer\" target=\"_blank\">classic power dynamic in BDFL-led open source projects</a> where the potential for a fork checks the project leader’s actions.</p>\n<p>Hansson challenges Mullenweg’s assertion that a fork would be a threat to the project, arguing that this power is illusionary when a project has become as dominant as WordPress:</p>\n<blockquote><p>Technically someone could fork Ruby on Rails tomorrow. What is the likelihood that fork is going to succeed? Once you have this juggernaut of network effects, WordPress is growing so much faster than anyone else, the gravitational pull is huge. Should someone fork it, introducing incompatibilities, what is the likelihood that is going to be a serious contender? From me, my assessment is extremely low, just the same as if someone was to fork Ruby on Rails today and call it Snoopy on Pails. The odds of that being anything other than a curiosity for two days on Hacker News is extremely low.</p></blockquote>\n<p>The notion of Snoopy on Pails injected a bit of humor into the debate that remained high intensity for the hour-long discussion, but it also illustrated Hansson’s point regarding the absurdity of any kind of WordPress fork becoming a real threat to the project’s momentum.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">it was a privilege to have <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> come on <a href=\"https://twitter.com/reworkpodcast?ref_src=twsrc%5Etfw\">@reworkpodcast</a> and debate <a href=\"https://twitter.com/dhh?ref_src=twsrc%5Etfw\">@dhh</a> on tech monopolies and power dynamics in open source: <a href=\"https://t.co/Aewq4QTwFe\">https://t.co/Aewq4QTwFe</a>. Also thanks to <a href=\"https://twitter.com/AdamStddrd?ref_src=twsrc%5Etfw\">@AdamStddrd</a> for making this graphic that will make sense if you listen to the episode <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f603.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/4cqZpX2uJk\">pic.twitter.com/4cqZpX2uJk</a></p>\n<p>— Wailin Wong (@VelocityWong) <a href=\"https://twitter.com/VelocityWong/status/1179025482416820224?ref_src=twsrc%5Etfw\">October 1, 2019</a></p></blockquote>\n<p></p>\n<p>“Open source can provide a veil over true power and who has that power, and I would argue that WordPress being in the position that it is, a third of all sites, is tremendous power,” Hansson said. “Even if that power is somewhat distributed, it’s still very much so located mostly with the company backing that engine and that you built a commercial business on top of it that even uses the name, goes even further to say there’s a lot of power here.</p>\n<p>“Why would venture capitalists invest half a billion dollars into WordPress if they didn’t see Automattic as a company as having a lot of power over WordPress? The whole reason someone is able to raise that kind of money is off the back of someone who can pitch: ‘We have over a third of all websites on the internet and we think we can get to 85%.’ That’s a very compelling venture story.”</p>\n<p>Mullenweg counters that if a Rails fork couldn’t attract a lot of users, that speaks to the Hansson’s stewardship of the project. He said that a typical WordPress release has 400-500 contributors with an estimated 10% from Automattic.</p>\n<p>“If 200 of those went someplace else because I did something really brain dead, that would be a pretty serious competitor, and there are some examples of that in open source history,” Mullenweg said. He contended that forks with enough weight behind them can become very interesting. On this point the two project leaders remained at odds.</p>\n<h3>How Open Source Market Dominance Impacts Diversity of Tools and Services on the Web</h3>\n<p>One of Hansson’s chief concerns with WordPress reaching 85% market share is what he described as the “death of diversity.” He perceives this pursuit of increased adoption as growing open source in monopolistic ways.</p>\n<p>“We’re living through an era right now where a small handful of big tech companies are exerting a completely undue amount of power over the internet, over discourse, over all sorts of things, and that’s something we should try to recoil from and at least learn from, not aspire to building more of,” Hansson said. “That’s what got this going – why isn’t WordPress in a great place only being a third of all the sites of the internet. Why does it need to get to 85%? Why does its growth need to be that explosive and that wild?”</p>\n<p>This is a question many in the WordPress community have asked in the past. Does the mission of democratizing publishing necessitate such a zealous drive towards market dominance?</p>\n<p>“I don’t want to see this concentration of power in one engine, no matter how good it is,” Hansson said.</p>\n<p>It is at this juncture that Mullenweg revealed more of his vision for WordPress becoming the “operating system of the web,” an idea he has floated several times over the past few years.</p>\n<p>“You have referred to WordPress a lot of times as blogging,” Mullenweg said. “I think of it more like a platform. If you look at how a lot of people are building on it, they use WordPress to bootstrap something that doesn’t look like WordPress at all. It might not even have a website. It might be powering just an API. It might be a headless or decoupled installation. It could be a store.”</p>\n<p>He likened the idea to Apache and nginx having a dominant market share (<a href=\"https://www.datanyze.com/market-share/web-and-application-servers/apache-http-server-market-share\" rel=\"noopener noreferrer\" target=\"_blank\">55%</a> and <a href=\"https://www.datanyze.com/market-share/web-and-application-servers/nginx-market-share\">23%</a> respectively) in the server space.</p>\n<p>“That doesn’t prevent the different types of websites that are built on it,” Mullenweg said. “If nginx got to 80 or 85%, that wouldn’t prevent the diversity or what people could put on their websites. WordPress could get to 85% and it wouldn’t mean that there’s any sort of monoculture or lack of diversity. If anything, it would allow people to focus more on what’s different and not recreating the WYSIWYG, the user system, the login, all that stuff we have all built a million times and you just don’t need to anymore, if something like WordPress solves your needs.”</p>\n<p>Hansson asked what it would look like if 85% of the web ran on WordPress, a question that the community behind the project hasn’t deeply examined yet. He encouraged listeners to consider what they want the internet to look like in the future:</p>\n<blockquote><p>What is the future I’d like to live in? What does a healthy, open, free internet look like? To me it looks like an internet with tons of different providers, tons of different tools, and what we collaborate around is protocols, not consolidation of software market share, that gives individuals and companies or even projects outsized power to dictate the matters of the internet.</p></blockquote>\n<p>Matt clarified that his comments on an 85% market share are not a goal, but rather a “trailing indicator” in the quest to create the best possible experience for developers and users. A growing market share is a signal of adoption in that sense, not a goal in itself.</p>\n<h3>WordPress Community Reactions to the Debate</h3>\n<p>After the initial exchange on Twitter, the broader tech community seemed delighted to hear Mullenweg and Hansson square off in a civil debate on topics that affect so many people working on the web. The conversation touched on a lot of the friction points in the WordPress ecosystem with Automattic being one of the most powerful companies driving WordPress’ market share. Many listeners were grateful for answers to questions they have had for years.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not sure <a href=\"https://twitter.com/dhh?ref_src=twsrc%5Etfw\">@dhh</a> realizes it, but he spoke for hundreds if not thousands of WordPress community members that have had similar questions for <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> spanning the last few years. Most aren’t afforded the same opportunity or carry the same clout to have it. <a href=\"https://t.co/z7wSIGJKAZ\">https://t.co/z7wSIGJKAZ</a></p>\n<p>— Matt Medeiros (@mattmedeiros) <a href=\"https://twitter.com/mattmedeiros/status/1179201126878629888?ref_src=twsrc%5Etfw\">October 2, 2019</a></p></blockquote>\n<p></p>\n<p>However, the idea of WordPress as web infrastructure and the level of market dominance (85%) discussed in the podcast are controversial and even off-putting for some who are deeply invested in the platform.</p>\n<p>“Matt appears to think of WordPress as infrastructure for the web, in the same way that Google and Facebook think of themselves as infrastructure for the web,” Morten Rand-Hendriksen said.</p>\n<p>“In the conversation about the dangers of market control, monopolization, and monoculture, Matt says, ‘We are not a grain, we are the soil.’ The only way to interpret that from my position is ‘WordPress is not a thing on the web. It is the web,’ i.e. infrastructure. A future where WP is web infrastructure is something I think very few people actually want, open source or not.”</p>\n<p>On the podcast, Mullenweg argued that open source allows for competition in a way proprietary software does not, but Rand-Hendriksen said he sees this as a logical fallacy.</p>\n<p>“He talks at the same time about WP being infrastructure and powering 85% of the web AND about this being a reason for others to fight it with other solutions,” he said. “So monopolization leads to competition somehow. I don’t think WordPress is infrastructure, or that it should power 85% of the web, especially after hearing this conversation.</p>\n<p>“If we truly believe in this idea of open source as diversification and forking, WP should actively support other projects and try to not be the dominant force on the web. WP is not infrastructure, it is very much a grain that has become a monoculture.”</p>\n<p>Matt Medeiros, host of the <a href=\"http://youtube.com/themattreport\" rel=\"noopener noreferrer\" target=\"_blank\">Matt Report podcast</a> focused on WordPress business and entrepreneurs, said that while the conversation answered a lot of questions, it left him wanting more.</p>\n<p>“The cloud of uncertainty that hangs above a large portion of this community is directly formed from lack of clear communication in both <a href=\"http://WordPress.org\">WordPress.org</a> and how Automattic + Jetpack move in lockstep with the open source project,” Medeiros said. “As we see hundreds of millions of dollars invested, with billions of dollars of valuation going to a single company, surely the optics leave one wondering how all of this gets repaid to investors?”</p>\n<p>Automattic invariably comes under more public scrutiny regarding its investments due to having the WordPress project lead as its CEO. One interesting observation Mullenweg made during podcast is that Automattic is just one of many larger players that make up the the WordPress economy, which he has previously estimated at $10 billion/year.</p>\n<p>“Automattic makes probably 2-3% of the revenue in the WordPress world,” Mullenweg said. “There are companies like GoDaddy, which might not contribute very much back to core, but probably have 3 or 4 times the number of subscribers than us running WordPress. I think about that a lot. I want to grow the whole ecosystem, not just our slice of it.”</p>\n<p>Revenue is not always equal to influence, and a good portion of the end of the podcast tackled questions about power and leadership in open source.</p>\n<p>“David’s questions are spun from the threads that fear monopoly on the web, as much as we fear a singular rule of decision making in the open source project,” Medeiros said. “I think David did well at challenging Matt’s view on the desire of world domination and how undesirable it is to earn the title of Benevolent Dictator — but it left me wanting more. For example, in an attempt to throw a curveball, Matt pointed out, the investment is made in Automattic — not WordPress — a point so opaque it didn’t fool David, but didn’t have him pressing any deeper.</p>\n<p>“Had David viewed this conversation through the lens of our community, he would know that Automattic and WordPress.com enjoy the full benefit of leveraging the WordPress brand, a brand protected by a foundation that Matt himself founded, which may have guided the podcast episode into the ethics of it all.”</p>\n<p>While Mullenweg’s claim that “WordPress belongs to you as much as it belongs to anyone else” is true in the sense that the software is freely available to be used and modified by anyone, the full power of <a href=\"http://wpandlegalstuff.com/using-wordpress-trademarks-business-product-service/\" rel=\"noopener noreferrer\" target=\"_blank\">leveraging the WordPress brand</a> does not belong to everyone.</p>\n<p>“I don’t think Matt would have been willing to have this kind of conversation with me or most members from the the general community, so I’m glad someone of David’s clout was able to engage here,” Medeiros said. “I do sympathize with all that Matt is responsible for and it’s not a challenge I think I’d be up for, given the opportunity. I love this community and want to see people stay, contribute, and flourish — not walk away because they felt unheard. DHH isn’t the hero we asked for, but he’s the hero we need right now. Hopefully he continues to keep a watchful eye over where WordPress is heading.”</p>\n<p>If you only listen to one podcast this week, <a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\" rel=\"noopener noreferrer\" target=\"_blank\">Hansson’s conversation with Mullenweg</a> is an invigorating battle of opposing open source ideals held as a respectful exchange. In defending their positions, both reveal how their experiences of the early days of the web shaped their ideologies and approaches to open source project leadership and commercialization. Conversations like these are rare but long overdue, as the WordPress community considers its growing influence on the future of the web.</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, 03 Oct 2019 18:59:47 +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: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:65:\"WPTavern: WordPress Theme Review Team Brings Back Review Shindigs\";s: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:29:\"https://wptavern.com/?p=94599\";s: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:76:\"https://wptavern.com/wordpress-theme-review-team-brings-back-review-shindigs\";s: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:3730:\"<p>The WordPress theme review team (TRT) is kicking off a review weekend October 5 and will begin at 10:00 Coordinated Universal Time (UTC). These events, called “review shindigs,” are marathon sessions where the team joins together to review themes and teach best practices. The current plan is to hold the event on the first Saturday of every month.</p>\n\n\n\n<p>“The goal of the review weekend is to get together and do as many quality reviews as possible,” wrote Carolina Nymark, one of the team’s review representatives, in the <a href=\"https://make.wordpress.org/themes/2019/10/03/review-weekend\">event’s announcement</a>. Events sometimes have different goals, depending on what the team needs to work on at the time. </p>\n\n\n\n<p>Most of the event will happen over the team’s <a href=\"https://wordpress.slack.com/messages/themereview\">Slack channel</a>. They will also hold a live presentation or Q&A on Zoom at 13:00 UTC. Anyone is welcome to attend (the Zoom link will be provided in Slack). This will help teach those who are interested in how to perform reviews and check common issues. Anyone attending is also able to submit topics for discussion in the comments on the announcement post.</p>\n\n\n\n<p>The TRT originally <a href=\"https://make.wordpress.org/themes/2019/09/24/meeting-notes-for-tuesday-24th-september-2019/\">announced plans</a> for the event after the last team meeting, but it was overshadowed by other news, such as the <a href=\"https://wptavern.com/theme-review-team-restructures-into-project-representatives\">team moving to a flat structure</a>. “Not sure if anyone but myself will be there,” joked Nymark. “It’s short notice. Some of the team reps already had other plans.”</p>\n\n\n\n<p>Anyone from the WordPress community is allowed to participate in the event by simply commenting on a ticket without being assigned a review. Nymark provided links on <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">how to become a reviewer</a> and the team’s <a href=\"https://make.wordpress.org/themes/handbook/get-involved/onboarding-for-new-reviewers/\">reviewer onboarding process</a> to get new reviewers started.</p>\n\n\n\n<p>Review shindigs can help new reviewers because it puts them in touch with more experienced reviewers at a time when they know someone will be online to answer questions. They’re also a team-building exercise where people can join together and work toward a common goal.</p>\n\n\n\n<p>Currently, <a href=\"https://themes.trac.wordpress.org/\">214 tickets</a> are awaiting review. A successful event would significantly cut that number down.</p>\n\n\n\n<h2>Events From the Past</h2>\n\n\n\n<p>Theme review shindigs have seen varying levels of success over the years. In the TRT’s earliest days, review gatherings were regular events and helped keep the ever-growing ticket queue under control. Participation waned over time as leaders within the team switched to other projects or no longer had time to run the events. Proposals to bring back them back have not gone far in the last couple of years.</p>\n\n\n\n<p>The last TRT shindig was a <a href=\"https://make.wordpress.org/themes/2016/12/05/december-shindig-recap/\">December 2016 event</a> that saw over 50 participants. Reviewers worked on 108 tickets throughout the weekend. The event also coincided with contributor day at WordCamp US, which helped bump up participation numbers.</p>\n\n\n\n<p>Jose Castaneda, Cristiano Zanca, Benjamin Lu, and Afzaal Ahmed held a live stream that covered how to load scripts and styles in themes in the previous review event.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s: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, 03 Oct 2019 18:29: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:14:\"Justin Tadlock\";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: Debating OSS with DHH\";s: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:22:\"https://ma.tt/?p=50262\";s: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:44:\"https://ma.tt/2019/10/debating-oss-with-dhh/\";s: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:931:\"<p>The other week I ended up going back and forth in tweets with <a href=\"https://dhh.dk/\">David Heinemeier Hansson</a>, it wasn’t going anywhere but he graciously invited me to their podcast and we were able to expand the discussion in a way I found really refreshing and mind-opening.</p>\n\n\n\n<p>DHH and I have philosophies around work and open source that I believe overlap 95% or more, so that makes where we have differences all that more interesting to mine. Although we would see each other logged into the same server 15 years ago, we haven’t actually spoken directly until this podcast started, but the conversation flowed so naturally you’d think we have been talking since then.</p>\n\n\n\n<p>Check out the <a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\">episode on Open Source and Power on the Rework Podcast</a>, hopefully you enjoy listening as much as we enjoyed recording 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:\"Thu, 03 Oct 2019 00:04: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: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:56:\"WPTavern: First Look at PHP 7.4 for WordPress Developers\";s: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:29:\"https://wptavern.com/?p=94552\";s: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:67:\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\";s: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:7152:\"<p>PHP 7.4 is slated for release on November 28, 2019. WordPress 5.3 will also <a href=\"https://core.trac.wordpress.org/ticket/47783\">include several commits</a> that address deprecated features.</p>\n\n\n\n<p>It’s unlikely that most WordPress plugin and theme developers will be able to use the new PHP 7.4 features for a while except when working on setups where they have some measure of control over the environment. Given WordPress’ reluctance to bump the minimum PHP version to the latest supported versions, it could be years before it’s safe to use new features. However, developers should make sure their plugins and themes are compatible with 7.4. It’s also good practice to keep up with current features.</p>\n\n\n\n<p>WordPress 5.2 <a href=\"https://wordpress.org/news/2019/05/jaco/\">bumped the minimum requirement</a> to PHP 5.6 with a recommendation of PHP 7.3. The following is the breakdown for current <a href=\"https://wordpress.org/about/stats/\">PHP usage stats</a> for WordPress installs:</p>\n\n\n\n<ul><li>PHP 7.3 – 9.6%</li><li>PHP 7.2 – 22.2%</li><li>PHP 7.1 – 13.5%</li><li>PHP 7.0 – 14.9%</li><li>PHP 5.6 – 25.7%</li></ul>\n\n\n\n<p>Currently, PHP 7.2 and 7.3 are the only versions receiving active support. PHP will drop security support for version 7.1 on December 1.</p>\n\n\n\n<h2>New Features</h2>\n\n\n\n<p>PHP 7.4 includes a number of <a href=\"https://www.php.net/manual/en/migration74.php\">new features</a> that will make writing code easier. The following is a small overview of some of the features that will likely be useful for WordPress plugin and theme authors.</p>\n\n\n\n<h3>Typed Properties</h3>\n\n\n\n<p>PHP first introduced type hinting in 5.0 and has continued improving the feature. PHP 7.0 introduced return type declarations. PHP 7.4 steps it up a notch and allows developers to declare types for class properties. This lets developers make sure the type of data assigned to a specific property is always that data type.</p>\n\n\n\n<p>In the following example, the <code>$id</code> property can only be assigned an integer and the <code>$title</code> property a string. Attempting to assign the wrong data type will result in a fatal error if strict types are declared. Otherwise, PHP will coerce the value to the correct type.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nclass Event {\n\n public int $id;\n\n public string $title;\n}\n</pre>\n\n\n<h3>Arrow Functions</h3>\n\n\n\n<p>Many developers have been clamoring for arrow functions similar to JavaScript. They are pretty sweet to use. However, PHP’s arrow functions, also called “short closures,” are slightly different. PHP 7.4 introduces the <code>fn</code> keyword (now a reserved keyword). Short closures can only contain one expression and have no <code>return</code> keyword. They’re not quite as powerful as their JavaScript cousins, but they do offer a quick solution for some scenarios.</p>\n\n\n\n<p>For example, the following code snippet shows two different ways to build an array of user emails from a collection of user objects.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Old way, but still acceptable.\n$value = array_map( function( $user ) {\n return $user->user_email;\n}, $users );\n\n// New way.\n$value = array_map( fn( $user ) => $user->user_email, $users );\n</pre>\n\n\n<h3>Unpacking Inside of Arrays</h3>\n\n\n\n<p>Argument unpacking was <a href=\"https://www.php.net/manual/en/migration56.new-features.php\">introduced in PHP 5.6</a>, so this may still be unfamiliar territory for many developers in the WordPress space. It’s been an invaluable feature in some of my projects.</p>\n\n\n\n<p>PHP 7.4 allows developers to unpack an array within an array. This should be faster than <code>array_merge()</code> because the spread operator (<code>...</code>) is a language construct rather than a function.</p>\n\n\n\n<p>Consider the following example of injecting an array of two colors within a larger array of colors.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n$colors_a = [ \'green\', \'blue\' ];\n\n$colors_b = [ \'red\', ...$colors_a, \'yellow\', \'purple\' ];\n\n// [ \'red\', \'green\', \'blue\', \'yellow\', \'purple\' ];\n</pre>\n\n\n<h3>Null Coalescing Assignment Operator</h3>\n\n\n\n<p>The null coalescing assignment operator is a shorthand way of combining an <code>isset()</code> check with a ternary operator.</p>\n\n\n\n<p>The following example shows how to check the <code>$product[\'id\']</code> variable. If it’s set, do nothing. Else, assign it the value on the right. You can see the evolution of the code between PHP versions. It’s much simpler to write in 7.4.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Pre-PHP 7.0.\n$product[\'id\'] = isset( $product[\'id\'] ) ? $product[\'id\'] : 0;\n\n// PHP 7.0.\n$product[\'id\'] = $product[\'id\'] ?? 0;\n\n// PHP 7.4.\n$product[\'id\'] ??= 0;\n</pre>\n\n\n<h2>Deprecated Features</h2>\n\n\n\n<p>PHP 7.4 will deprecate several features. Plugin and theme authors will want to <a href=\"https://www.php.net/manual/en/migration74.deprecated.php\">consult the complete list</a> to determine whether they should update any outdated code. I cherry-picked a few items that I’ve seen in plugin and theme code over the last few years. Most other deprecated features are unlikely in current code bases.</p>\n\n\n\n<h3>Nested Ternary Operators Without Parenthesis</h3>\n\n\n\n<p>Nested ternary operators are generally something you should avoid as a developer. Seriously. Just don’t write them. They’re tough to follow and are prone to bugs due to human error. However, if you’re going to throw caution to the wind and dismiss good advice, at least use parenthesis. PHP 7.4 deprecated nested ternaries without them.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\n$value = $a ? $b : $c ? $d : $e;\n\n// OK.\n$value = ( $a ? $b : $c ) ? $d : $e;\n\n// OK.\n$value = $a ? $b : ( $c ? $d : $e );\n</pre>\n\n\n<h3>Using array_key_exists() on Objects</h3>\n\n\n\n<p>Developers should not use <code>array_key_exists()</code> on objects simply because objects are not arrays. Instead, use the more appropriate <code>property_exists()</code> function or <code>isset()</code>.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\nif ( array_key_exists( $property, $object ) ) {}\n\n// OK.\nif ( property_exists( $object, $property ) ) {}\n\n// OK.\nif ( isset( $object->$property ) ) {}\n</pre>\n\n\n<h3>Array and String Offset Access With Curly Braces</h3>\n\n\n\n<p>Using curly braces for array and string offset access is a bit more of a rarity, but I’ve seen it in the wild a couple of times. Make sure you’re using square brackets such as <code>[]</code> instead of curly brackets like <code>{}</code>.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\n$value = $a{ $key };\n\n// OK.\n$value = $a[ $key ];\n</pre>\";s: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, 02 Oct 2019 18:16: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:14:\"Justin Tadlock\";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:74:\"WPTavern: BuddyPress 5.0 Introduces BP REST API, Paving the Way for Blocks\";s: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:29:\"https://wptavern.com/?p=94453\";s: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:\"https://wptavern.com/buddypress-5-0-introduces-bp-rest-api-paving-the-way-for-blocks\";s: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:3919:\"<p><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\" rel=\"noopener noreferrer\" target=\"_blank\">BuddyPress 5.0.0</a> “Le Gusto” was released this week with the long-awaited BP REST API, a new Invitations API, and BuddyPress info on the Site Health screen. The release was named for a favorite pizza restaurant in Fortaleza, Brazil, where BP REST API contributor and core committer <a href=\"https://profiles.wordpress.org/espellcaste/\" rel=\"noopener noreferrer\" target=\"_blank\">Renato Alves</a> resides.</p>\n<p>The new REST API is <a href=\"https://developer.buddypress.org/bp-rest-api/\" rel=\"noopener noreferrer\" target=\"_blank\">fully documented</a> and includes endpoints for members, groups, activities, private messages, screen notifications and extended profiles.</p>\n<p>The first feature powered by the new API is an improved interface for managing group members. It enables administrators to quickly search for specific members to promote, demote, ban, or remove.</p>\n<p><div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4\">https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4</a></div></p>\n<p>BuddyPress 5.0 also includes a new <a href=\"https://bpdevel.wordpress.com/2019/09/16/new-invitations-api-coming-in-buddypress-5-0/\" rel=\"noopener noreferrer\" target=\"_blank\">BP Invitations API</a> to help developers better manage group invites and membership requests.</p>\n<p>BuddyPress site administrators may notice <a href=\"https://wptavern.com/buddypress-5-0-to-display-debug-info-in-the-new-site-health-info-screen\" rel=\"noopener noreferrer\" target=\"_blank\">a new panel in the Site Health Info screen</a>, containing plugin-specific debug information that may be useful when seeking help in the forums.</p>\n<p>This release <a href=\"https://wptavern.com/buddypress-5-0-to-update-password-control-to-match-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">updates the BP Nouveau template pack</a> to use the same password control as the one used in WordPress core. It provides a more consistent interface for users when setting their passwords on the registration page and on the user’s general settings page.</p>\n<h3>Blocks Are Coming to BuddyPress</h3>\n<p>The BP REST API offers a myriad of opportunities for developers to create new interactive features and front-end experiences, as well as improve performance by replacing AJAX calls. It also opens up the world of block creation. BP core contributors and community developers will have a much easier time creating blocks, since Gutenberg mainly uses REST.</p>\n<p>In anticipation of BP blocks, <a href=\"https://wptavern.com/buddypress-5-0-to-add-category-for-storing-buddypress-blocks\" rel=\"noopener noreferrer\" target=\"_blank\">5.0 includes a new panel in the block inserter</a> that allows developers to organize their custom blocks under a BuddyPress category.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/buddypress-blocks-panel.png?ssl=1\"><img /></a></p>\n<p>BuddyPress 6.0 <a href=\"https://buddypress.trac.wordpress.org/ticket/8048\" rel=\"noopener noreferrer\" target=\"_blank\">may include core blocks for specific components</a> and core blocks may ultimately replace the plugin’s existing widgets. Contributors are still discussing which blocks to begin building. They are looking to get community feedback on blocks that will be the most useful, particularly from BuddyPress theme developers. The team <a href=\"https://bpdevel.wordpress.com/2019/10/01/bp-dev-chat-agenda-october-2-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">plans to discuss 6.0 release priorities</a> during the BP core dev chat on <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20191002T1900\" rel=\"noopener noreferrer\" target=\"_blank\">October 2, 2019, at 1900 UTC</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, 02 Oct 2019 11:06: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: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:58:\"WordPress.org blog: The Month in WordPress: September 2019\";s: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:\"https://wordpress.org/news/?p=7280\";s: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:73:\"https://wordpress.org/news/2019/10/the-month-in-wordpress-september-2019/\";s: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:7584:\"<p>September has been a particularly busy month in the WordPress community—a lot of important work has been done as everyone in the project works towards an upcoming major release. Read on to find out more about this and everything else that has been going on over the past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.3 Security and Maintenance Release</h2>\n\n\n\n<p>Early in September, <a href=\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\">version 5.2.3 of WordPress was released</a> as a security and maintenance release. Sixty-two individuals contributed to its 29 fixes and enhancements.</p>\n\n\n\n<p>The security issues fixed in this release owe thanks to numerous people who disclosed them responsibly. You can read more about the vulnerability reporting process <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">in the Core handbook</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3 Enters Beta</h2>\n\n\n\n<p>WhileWordPress 5.3 is slated for release on November 12, it has already entered the beta phase with <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">the second beta release being made available</a> at the end of September. As this is a major release, it will feature a number of new features and enhancements, including <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">significant improvements to the block editor</a>, <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">updates to the Site Health component</a>, <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">new block APIs</a>, <a href=\"https://make.wordpress.org/core/2019/09/23/core-widgets-new-aria-current-attribute-in-wordpress-5-3/\">accessibility updates</a>, and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">much more</a>.</p>\n\n\n\n<p>You can test the 5.3 beta release by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a> on any WordPress site, although as this is software that is currently in development, we don’t recommend installing it on a live site.</p>\n\n\n\n<p>Want to get involved in building this release? <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Test the beta</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Date/Time Component Improvements</h2>\n\n\n\n<p>For over a year, contributors involved in <a href=\"https://make.wordpress.org/core/components/date-time/\">the Date/Time component</a> of WordPress Core have been working hard on the “wp_date” project. The goal of this project is to fix and streamline the way that Core handles times and dates throughout the platform.</p>\n\n\n\n<p>This ambitious project has seen incremental changes over the last few Core releases. The upcoming 5.3 release <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">will include the final and most significant changes</a> to the component, bringing much-needed stability to time handling in WordPress Core.</p>\n\n\n\n<p>Want to get involved in the Date/Time component of WordPress Core? <a href=\"https://make.wordpress.org/core/components/date-time/\">Learn more about it</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-datetime channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Theme Review Team Structure</h2>\n\n\n\n<p>After recent discussions around the goals of the Theme Review team, <a href=\"https://make.wordpress.org/themes/2019/09/24/new-theme-review-team-structure/\">some changes have been made</a> to the leadership structure of the team. The team leads are now ‘representatives’ of different areas of the work that they do. This flat structure allows for representatives to work in more loosely defined areas so they contribute to the team in more diverse ways, and helps the team to be more focused on setting and achieving their goals. The new structure is outlined <a href=\"https://make.wordpress.org/themes/handbook/about/members/\">in the team handbook</a>.</p>\n\n\n\n<p>Want to get involved in reviewing themes for WordPress? Follow <a href=\"https://make.wordpress.org/themes/\">the Theme Review team blog</a>, and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Default Theme: Twenty Twenty</h2>\n\n\n\n<p>The upcoming 5.3 release will also include <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">a new default theme for WordPress</a>, <em>Twenty Twenty</em>. This theme will have a strong focus on readability and accessibility while being optimized for the block editor that first shipped with WordPress 5.0.</p>\n\n\n\n<p>Development of <em>Twenty Twenty</em> has been going quickly, with <a href=\"https://make.wordpress.org/core/2019/09/30/twenty-twenty-update/\">a recent update</a> showing more of the design and layouts that you can expect when the theme is released with WordPress 5.3 in November.</p>\n\n\n\n<p>Want to get involved in building <em>Twenty Twenty</em>? You can <a href=\"https://github.com/WordPress/twentytwenty\">contribute on GitHub</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Gutenberg project has continued to see regular updates with <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">the latest version</a> set to be included in WordPress 5.3.</li><li>Members of the Community Team <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\">will run a workshop</a> to help event organizers create welcoming and diverse spaces for attendees. </li><li>There are some <a href=\"https://make.wordpress.org/updates/2019/09/20/wordpress-user-pro-survey-11-questions-and-a-script/\">proposed updates for the annual WordPress user survey</a> that need community feedback.</li><li><a href=\"https://make.wordpress.org/docs/2019/09/23/summary-for-helphub-meeting-23-september-2019/\">Work continues on the HelpHub project</a> where contributors are moving documentation to the updated support portal.</li><li>The Gutenberg team performed further usability tests in August, <a href=\"https://make.wordpress.org/test/2019/09/06/gutenberg-usability-testing-for-august-2019/\">with some interesting results</a>.</li><li><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\">Version 5.0 of BuddyPress was released</a> near the end of this month, featuring a new REST API, improved group management, and other enhancements.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</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:\"Wed, 02 Oct 2019 08:05:43 +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:\"Hugh Lashbrooke\";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:29:\"HeroPress: 14 Years’ Detour\";s: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:56:\"https://heropress.com/?post_type=heropress-essays&p=2972\";s: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:\"https://heropress.com/essays/14-years-detour/#utm_source=rss&utm_medium=rss&utm_campaign=14-years-detour\";s: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:35176:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2019/10/100219-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I learned not only to keep face and move forward, but also to dare.\" /><p><a href=\"https://heropress.com/feed/#ru\">Это эссе также доступно на русском языке</a></p>\n<blockquote><p>Knowing what you want isn’t enough.</p></blockquote>\n<p>At the age of fifteen, I was told to hurry up with my professional education, if I don’t get a free place at university no one will pay for me. Last one was obvious and not because of money. I didn’t know how high or low my chances are even I had very good marks. I could have been just the biggest fish in the pond, but I wanted to leave people who treat me like expense item as soon as possible anyway. I made up my mind and it’s separated me from my classmates. I got secondary school certificate and left school instantly without goodbyes.</p>\n<p>My knowledge of opportunities was very narrow. I thought to be an ecologist or guide translator from German, based on what I was taught at school, or an advertiser, it was ads boom in Russia, ads were fascinating, and I collected flyers. At the same time, I was already good a computer user and did a lot of typing for one of the school’s principals, sometimes instead of classes, volunteered once and they couldn’t say “no”.</p>\n<p>No one bothered to give me advice, but I was sure my future was unimaginable without computers and came to a general decision to be a programmer. The range of technical schools was not wide, and names of specializations looked very abstruse. I messed up and spend four years studying transistor markings, soldering and drawing PCB layouts. Programming course turns out to be a bit of a joke, it was Pascal, we didn’t even try to do something useful with it. English course was another flaw in this education, the teacher was busy showing off and teasing girls. I’m not sure if he even knew the subject. He was fired after our collective petition. We got good marks just to forget about it. I left technical school with honors degree and improved typing skills.</p>\n<p>It was wild unfriendly market I faced. I didn’t know how to recognize a normal job offer from sinister one, so I bumped into several, like banging in people’s doors and pitch them in buying cheap stuff for very high price. It was harassing and I have no idea how long I would’ve looked for work without help.</p>\n<h3>The wrong approach can cause failure</h3>\n<p>I was lucky to have a father in an IT company. He proposed me like a substitute to typists when I was still a student and when I finished, helped me to get a job on updating a law system on client’s computers. Maybe I could get it by coming from the street, but I had to know where the entrance is. Half a year later I got a full-time job in the same service department and started to play volleyball with colleagues. It was great to meet people from other departments and on the field was no big difference between director and analyst, it’s fair play. I liked my place and my clients, but I was “friendly” told that without a university degree I will have no further promotions.</p>\n<p>At this time, I tried to study PHP by a book. It was very exciting at first, but a lot of functions without explanation how to build something useful with them didn’t make much sense and when I tried, I failed and backed off. It was hard to admit a fail even to myself and it was nagging me for a long time.</p>\n<p>I had to choose something I can handle; I’m interested in and can afford. It turned out to be advertising. I spent most of my and my husband’s holidays on sessions in the next 6 years. It was tricky for him to make me to leave a computer, once I was glued to it, so he bought me my first laptop. English was still hard for me, I got my high marks just memorizing all the words in a textbook and how they must sound. Again, I wanted something I cannot handle.</p>\n<blockquote><p>I started to hate my workplace long before I finished education with another honor degree no one was interested in.</p></blockquote>\n<p>I got a promotion quite soon despite apprehensions but then my chief was dismissed and with new one the things became very tense; I escaped to have a baby and spent a whole three years on child’s care holidays full of doubts. I tried to get off by studying, drawing and baking but the pram was pulling me back. I didn’t use to stay put, rely on my husband’s money and be separate from other people. I didn’t want to come back, but it looked like I have no better choice, I was convinced (overall, rightly) that not too many companies want in office position a woman with small baby and lots of sick leaves.</p>\n<p>After I returned at work it became clear that the situation in my department was unhealthier than ever, I lost my place and next boss treated all back-office girls like pieces of furniture. In a few months I had enough.</p>\n<h3>The flip side of the coin can become a black swan</h3>\n<p>I wanted to be a marketer. Knowing how tricky it is to sell intangibles, I wanted solid product to work with. Now I see that it isn’t a point at all.</p>\n<p>It turned out to be difficult to find a job outside IT, some HRs was kind enough to answer that with my experience I’ll better be in IT.</p>\n<p>Still I was very hopeful, studied hard and considered myself well, but once again I set a low bar to my employers. Companies I worked in wanted to get all publicity and sales rise through a cost of my salaries. I was careless once, the next time I asked specifically about budget before signing up and was assured, but still they meant my wages. It was a tough period of disappointments.</p>\n<p>When I was offered a part-time administrative job with “ok” to sick leaves, I took it gladly like a reprieve. It was far from home, and I was spending 2-3 hours a day on buses with Harry Potter audio books for company. In these traffic jams I started to feel English at last and loved it, it gave me a freedom no money can buy. And despite the long way I managed to play volleyball with my husband and his colleagues. Life was getting better.</p>\n<p>This job itself in addition to low payment had something valuable to me — a working website. After my boss had a row with its developer, I got it to maintain, did some reverse engineering and understood how it works. It wasn’t a most creative site, but it gave me a view. I started to write simple sites from scratch.</p>\n<blockquote><p>My first JavaScript calculator almost made me crazy, but I pursued.</p></blockquote>\n<p>From time to time I was asked for help from a friend or relative, usually to solve some urgent problems. So, I started to meet popular CMSs. One of the first I met with was WordPress. There was some issue in theme, which was changed and dropped by developer. I was digging a whole weekend deciphering how it works and found infinity loop to fix. Back then for me it was just a system…</p>\n<p>Two years later I found myself still clinging to my temporary job. I was tired of working for a hard nosed dictator, the last drop was his statement that I was not a programmer, because he hadn’t seen anything I made. I’ve already written some parts of website he asked for, so it was just unfair. I became angry and it was exactly what I needed, a big kick.</p>\n<p>I went out but still had no courage to pretend on a developer’s place and landed in some franchise company selling “box version” websites. It was another tough half of a year with a lot of work, low payment and plan failures, ending with pneumonia. I see now that I was making a disservice to customers, websites are not a microwave meal — quick, cheap and dummy. There was no life in them without a lot of work no one bargained to buy or do. Most of the sites I sold back then died when year expired but they never were truly alive and useful.</p>\n<h3>You need to pluck up your courage to become lucky</h3>\n<p>When I recovered, I search through developer’s job offers, but it was difficult to find something suitable worth trying to apply. I was reading job advertising and it looked, and still is, like mostly IT company are presented and they want geniuses who know a lot of technologies and frameworks at once. It was very distressing just to look.</p>\n<p>And then I became lucky again. I opened a private ads site and almost immediately found a job which was fitted me perfectly — they wanted someone with experience to write from scratch, understand another’s code and maintain it, ability to translate technical documentation and articles and make simple design of printing products. I made test task and there was no need in my resume or diplomas, I was taken. It’s turned out direct ad from one of sales departments in tech company and I passed by HR, who most likely wouldn’t even have considered me. Superior agreed to have me remotely most of the time, it solved sick leaves problem even if it was already much better than before. Addition to better salaries and calm work without over hours, I got very pleasant colleagues. We are friends ever since, despite back then no one guessed to invite me to play volleyball.</p>\n<p>It was 14 years after the original decision to be a programmer and it was only the beginning. I left this amazing place a couple years later when it held no more challenges for me.</p>\n<h3>Conscious decisions require wide knowledge</h3>\n<p>After I worked with a bunch of CMSs, I started to be able to compare them and understood not only that WordPress is the best one for developers and clients but also that I didn’t see right examples at all. The biggest flaw of WordPress — it’s so easy to make things work that there’s no need to bother and do things right and this becomes a problem later. I also saw bad cases on very different systems… and did them as well.</p>\n<p>I used to work relying on examples at hand, documentation and Google, but searching for a specific feature or a solution, I found myself again missing the whole picture. At this point Udemy courses came very handy and then I started to attend WordPress events, firstly online and then by foot, trains and airplanes and discovered a wide and very alive community. Now I know not only where to look but whom to ask and how to be not far from those who stays on top of things as much as possible. Most important is that I found allies who don’t think I’m going crazy, speaking with shining eyes about work, with whom I share a passion and fondness to WordPress. It’s what matters.</p>\n<p>Now, after 6 years of full time in development, I still feel myself like a newbie, it’s endless learning, frequent discoveries, mistakes and impassable wish to do better…</p>\n<h3>The way is the destination</h3>\n<p>I made a path very uneven, a lot of mess and banging, but for me it’s like a kaleidoscope where a little turn presents a new picture, new “a-ha” moment, new excitement after seemingly pointless efforts. When in doubt I remind myself about David Ogilvy who tried a lot of things before struck gold with advertising and it’s maybe why.</p>\n<p>Finally, I learned not only to keep face and move forward but also to dare.</p>\n<h3>Freedom is to make your own mind</h3>\n<p>I left my last workplace after we finished exhausted two years project on another CMS system which was a big reinventing of wheels and made up my mind to work only with WordPress from now on and dare to be my own boss.</p>\n<p>Now I’m officially an entrepreneur. This big boy’s stuff looks difficult. But I don’t want to be told, collaboration is a new black wherever I look.</p>\n<h2 id=\"ru\">Крюк длинной в 14 лет</h2>\n<blockquote><p>Не достаточно знать, что хочешь</p></blockquote>\n<p>В 15 лет мне было сказано, чтобы я поспешила с профессиональным образованием, если не поступлю бесплатно в институт, никто платить за меня не будет. Последнее было очевидно и не из-за денег. Несмотря на весьма хорошие оценки, я не могла оценить свои шансы, могло оказаться, что я просто большая рыба в маленьком пруду. Но в любом случае, я хотела как можно быстрей расстаться с людьми, видящими во мне одну большую статью расходов. Я приняла решение и это откололо меня от моих одноклассников. Ушла из школы я, не прощаясь, как только получила на руки сертификат об окончании 9 классов.</p>\n<p>Нужно было выбрать профессию, но потенциальные возможности были весьма туманны. Я могла стать экологом или немецкоязычным гид-переводчиком, на основе того, чему училась в школе, или рекламщиком, в России тогда начался рекламный бум, и она казалась очень захватывающей, я даже листовки собирала. В то же самое время я уже была хорошим пользователем компьютера и набирала документы для завуча старших классов, иногда вместо занятий — вызвалась один раз и потом уже не могла сказать «нет».</p>\n<p>Никто не пытался дать мне совет, но я была уверена, что будущее немыслимо без компьютеров и решила стать программистом. Выбор техникумов в пределах разумной досягаемости, был не очень большой, а названия специальностей выглядели очень мудрено. Я ошиблась и провела следующие 4 года изучая маркировку транзисторов, паяя и чертя печатные платы. Курс программирования обернулся дурной шуткой, это был Паскаль, и мы даже не пытались сделать с ним что-то полезное. Другим серьезным недостатком этого обучения стал английский язык, преподаватель выпендривался и задирал девушек, я так и не поняла знал ли он язык вообще. В конце концов он был уволен после нашей коллективной жалобы, а мы получили хорошие оценки, в качестве решения проблемы. Я выпустилась из техникума с красным дипломом и улучшенными навыками машинистки.</p>\n<p>Рынок труда был диким и неизведанным. Не зная, как распознать сомнительное предложение о работе, наткнулась на несколько таких, как ходить по домам и навязывать людям дешевые утюги за внушительную цену. Поиск работы оказался изматывающим, без посторонней помощи, я могла бы еще долго ходить по этим собеседованиям.</p>\n<h3>Неправильный подход может быть причиной неудачи</h3>\n<p>Мне повезло, отец работал в IT-компании. Он предложил меня в качестве подмены наборщикам, когда я еще училась, а когда закончила, помог получить работу по обновлению правовой системы на компьютерах у клиентов. Может быть меня взяли бы и, приди я с улицы, но для этого нужно было знать, куда идти. Через полгода я получила место в офисе в том же отделе обслуживания, а также начала играть с коллегами в волейбол. Это было здорово, знакомиться с людьми из других отделов, а еще на поле нет большой разницы между директором и аналитиком. Мне нравилось мое место и мои клиенты, но опять мне было «дружески» сказано, что без высшего образования, на большее я могу не рассчитывать.</p>\n<p>В это время я пыталась изучать PHP по книге. В начале все выглядело очень захватывающе, но функции без понимания как из них построить что-то целое не имели большого смысла, я пробовала, у меня не получалось, и в конце концов сдалась. Было сложно признаться, что я не смогла, даже самой себе и это неприятное чувство преследовало меня долгое время.</p>\n<p>Нужно было выбрать то, с чем я смогу справиться, что-то интересное и что будет мне по карману. Выбор пал на рекламу. В следующие 6 лет большая часть наших с мужем отпусков ушла на мои сессии. Ему было сложно выгнать меня из-за компьютера, я к нему приклеилась, поэтому он купил мне мой первый ноутбук. Английский по-прежнему давался мне очень трудно, и чтобы получить пять, пришлось переводить и запоминать вместе с транскрипцией все слова в учебном пособии. Снова я хотела то, что мне не давалось.</p>\n<blockquote><p>Я начала ненавидеть свое рабочее место задолго до того, как закончила университет с еще одним никому не нужным красным дипломом.</p></blockquote>\n<p>Я получила повышение достаточно скоро, несмотря на опасения, но затем руководство сменилось и работать с новым стало весьма напряженно. Я сбежала в декрет и провела следующие три года отпуска по уходу за ребенком полные сомнений. Учеба, рисование и приготовление пирогов отвлекали, но я оказалась не готова быть привязанной к коляске — ограниченной в передвижениях, оторванной от других людей, полагаться на деньги мужа. Возвращаться на работу я не хотела, но не видела лучшего выхода, была убеждена, и вполне резонно, что ни так много компаний готовы взять на офисную позицию женщину с маленьким ребенком и кучей больничных.</p>\n<p>После того, как я вернулась на работу, стало ясно, что ситуация стала еще хуже, чем была. Я потеряла свое место, а очередной новый руководитель относился во всем девушкам «поддержки» как к мебели. Несколько месяцев мне хватило.</p>\n<h3>Обратная сторона медали может быть золотой</h3>\n<p>Я хотела быть маркетологом. Зная, как непросто продавать что-то неосязаемое, решила работать с товаром, который можно пощупать. Сейчас думаю, разница была только в голове.</p>\n<p>Оказалось, сложно найти работу вне IT-сектора, некоторые менеджеры по персоналу снисходили для объяснений, что мне будет лучше в IT.</p>\n<p>И все-таки я была настроена оптимистично, я усердно училась и считала, что хорошо справляюсь, но опять, оказалось, что установила слишком низкую планку для работодателей. Компании, в которых я работала, хотели и публикации, и рост продаж исключительно за счет моей зарплаты. Ошибившись один раз, в следующий я специально уточнила вопрос с бюджетом, и меня заверили, что он есть. Оказалось, что это по-прежнему только зарплата. Это был период разочарований.</p>\n<p>Когда мне предложили административную работу на полставки с терпимым отношением к больничным, я с радостью ухватилась за возможность взять передышку. Работа была далеко от дома, и я проводила 2-3 часа в маршрутках каждый день в компании с аудиокнигами про Гарри Поттера. В этих дорожных пробках я наконец почувствовала английский язык и полюбила его, это дало мне свободу, которую невозможно купить за деньги. И, несмотря на долгую дорогу, я смогла играть после работы в волейбол с мужем и его коллегами. Жизнь налаживалась.</p>\n<p>Эта работа сама по себе, помимо низкой зарплаты, имела нечто ценное для меня – работающий сайт. После того, как мой начальник поссорился с разработчиком, я получила его на поддержку. Разобрав его на части, я поняла, как он работает. Это не был самый креативный сайт в мире, но он дал мне целостное представление, и я начала писать простые сайты с нуля.</p>\n<blockquote><p>Мой первый калькулятор на JavaScript практически свел меня с ума, но я продолжила.</p></blockquote>\n<p>Время от времени меня просили помочь родственники и друзья, обычно решить какую-то срочную проблему. Так я стала встречаться с популярными CMS. Одной из первых оказался WordPress. Там была проблема в теме, которую разработчик изменил и бросил. Я копала все выходные, но в конце концов нашла место, где код уходил в бесконечный цикл и исправила. Тогда для меня это была просто какая-то система…</p>\n<p>Два года спустя я все еще держалась за свою временную работу. Резкие манеры начальника перестали казаться забавными и последней каплей стало его категорическое заявление, что я не программист, потому что он не видел ничего, созданного мной. На тот момент я уже написала для сайта функционал, который он же просил, так что это было обидно. Я разозлилась и это стало толчком в нужном направлении.</p>\n<p>Я ушла, но все еще не пыталась получить работу разработчика, и в результате оказалась в одной из франшизных компаний, продающих сайты «из коробки». Это были сложные полгода с кучей работы, низкой зарплатой и провалами плана, закончившиеся воспалением легких. Сейчас, думаю, я оказывала клиентам медвежью услугу, сайт – не готовое блюдо для микроволновки, быстрое, дешевое и типовое. В этих сайтах нет жизни без вложения огромного труда, за которых никто не готов был платить. Большая часть сайтов умерли через год, но они и живыми то не были.</p>\n<h3>Нужно набраться смелости, чтобы повезло</h3>\n<p>Когда я поправилась, начала искать работу разработчика, но было сложно найти что-то подходящее даже просто чтобы решиться ответить на вакансию. В объявлениях были в основном представлены IT-компании, которым нужны гении, знающие огромное количество технологий и фреймворков. Только вид этих вакансий вгонял в депрессию.</p>\n<p>А потом мне снова повезло. Я открыла сайт частных объявлений и буквально сразу же нашла работу, которая мне подходила идеально — они хотели кого-то с опытом написания с нуля, умеющего разбираться и дописывать чужой код, переводить техническую документацию и статьи, а также делать простую полиграфию. Я сделала тестовое задание и была принята, ни дипломы, ни резюме уже не понадобились. Оказалось, это был объявление одного из отделов продаж в компании, занимающейся промышленным оборудованием, и я прошла в обход отделка кадров, который, уверена, даже не посмотрел бы на меня. Начальник согласился на мою работу удаленно, что решило проблему частых больничных, хотя ребенок рос, и их уже стало намного меньше. В дополнение к лучшей зарплате и спокойной работе без переработок и нервотрепки, мне достались замечательные коллеги. Мы дружим с тех пор, несмотря на то, что тогда никто не догадался позвать меня играть в волейбол.</p>\n<p>Это случилось через 14 лет после первоначального решения стать программистом и это был только начало. Я ушла через пару лет, когда ничего нового в работе уже не осталось.</p>\n<h3>Сознательные решения требуют широкий знаний</h3>\n<p>После того, как я поработала с разными CMS, смогла не только сравнить их между собой и понять, что WordPress лучшая из всех как для разработчиков, так и для клиентов, но также обнаружить, что вообще не видела хороших примеров разработки. Самая большая проблема WordPress — сделать так, чтобы работало, настолько легко, что мало кто не утруждает себя делать правильно, что позже оборачивается проблемами при доработке и поддержке. Впрочем, я видела плохие решения на разных CMS, да и сама их делала.</p>\n<p>Отталкиваясь от доступных примеров и документации и ища в поисковиках конкретные решения, я опять обнаружила, что не вижу всей картины. В этот момент курсы Udemy оказались очень кстати, а затем я начала посещать мероприятия WordPress, сначала онлайн, потом топая ни них ножками, оправляясь на поездах и самолетах, и обнаружила большое и весьма активное сообщество. Наконец-то я нашла не только тех, у кого можно спросить, но и как быть недалеко от тех, кто «в теме», насколько это вообще возможно. Самое важное – я нашла единомышленников, тех, кто не думает, что человек, говорящий с горящими глазами о работе, рехнулся, с кем у нас общая страсть и любовь к WordPress. Это то, что имеет значение.</p>\n<p>Сейчас, проработав 6 лет как разработчик, я все еще чувствую себя новичком, это бесконечное обучение, частые открытия, ошибки и непроходящее желание сделать лучше.</p>\n<h3>Смысл пути в самом пути</h3>\n<p>Мой путь очень извилистый, много метаний и набитых шишек, но для меня это как калейдоскоп, где каждый поворот показывает новую картинку, новое озарение, дает энергию двигаться дальше после казавшихся напрасными усилий. В периоды сомнений, я напоминаю себе о Дэвиде Огилви, который сменил множество специальностей, пока не добился успеха в рекламе.</p>\n<p>Я научилась не только сохранять лицо и идти вперед, но также набралась смелости.</p>\n<h3>Свобода — возможность принимать решения</h3>\n<p>Я ушла со своего последнего места работы, где мы закончили изматывающий двухлетний проект на другой CMS, ставший сам по себе большой ошибкой, и ни только приняла решение работать исключительно с WordPress, но и стать своим собственным начальником.</p>\n<p>Теперь я официально предприниматель. Все эти вещи «для больших мальчиков» выглядят достаточно сложными, но я больше не хочу слепо делать то, что мне скажут. В тренде коллаборации, куда ни глянь.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: 14 Years’ Detour\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=14%20Years%E2%80%99%20Detour&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: 14 Years’ Detour\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2F14-years-detour%2F&title=14+Years%E2%80%99+Detour\" rel=\"nofollow\" target=\"_blank\" title=\"Share: 14 Years’ Detour\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/14-years-detour/&media=https://heropress.com/wp-content/uploads/2019/10/100219-150x150.jpg&description=14 Years’ Detour\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: 14 Years’ Detour\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/14-years-detour/\" title=\"14 Years’ Detour\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/14-years-detour/\">14 Years’ Detour</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</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, 02 Oct 2019 05: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olga Gleckler\";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:51:\"WPTavern: Brian Gardner Steps Down From 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:29:\"https://wptavern.com/?p=94449\";s: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://wptavern.com/brian-gardner-steps-down-from-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7190:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Brian Gardner <a href=\"https://studiopress.blog/not-goodbye/\">announced he was stepping down</a> from his role with StudioPress this past Friday. Last year, <a href=\"https://wptavern.com/wp-engine-acquires-studiopress\">WP Engine acquired StudioPress</a>. After staying on board for the remainder of his contract, Gardner stepped down from his role with the company.</p>\n\n\n\n<p>“The past 15 months have gone by quickly, and it sometimes feels like yesterday that we made the announcement,” Gardner said in his post. “In the same breath, it has also felt like forever.”</p>\n\n\n\n<p>For many in the WordPress community, Gardner needs no introduction. He’s the founder of <a href=\"https://studiopress.com\">StudioPress</a> and co-created Genesis with Nathan Rice, one of the most popular WordPress themes today. In many ways, he’s the father of the modern professional WordPress theme ecosystem, becoming one of the first theme authors to figure out that you could make a living by providing WordPress products.</p>\n\n\n\n<p>He’s unafraid of letting his personal geek flag fly in his online life. He <a href=\"https://twitter.com/bgardner/status/6776616143294464\">quotes Sarah McLachlan</a>, is a self-affirmed Starbucks addict, runs marathons, and loves family trips to Disney World.</p>\n\n\n\n<p>For many theme authors in the WordPress community, he’s an inspiration. Even as a former business competitor, I’ve always admired his work. More than that, I’ve admired how he runs his business. He never needed to be flashy. He never needed to create controversy for PR. He, almost quietly, built up a successful company. The splashes he made came from the products he and his company released.</p>\n\n\n\n<p>In 2007, Gardner released the Revolution WordPress theme to the public for sale. Some may argue that Revolution was the catalyst for the commercial WordPress themes ecosystem. There were several theme business startups around the same time. Revolution at least played a pivotal role in the market’s early growth.</p>\n\n\n\n<p>Gardner launched the Revolution business in 2008, but quickly <a href=\"https://www.studiopress.com/revolution-rebrands-as-studiopress/\">rebranded to StudioPress</a> in 2009 after some legal issues with the name. By late 2010, <a href=\"https://wptavern.com/studiopress-sold-to-copyblogger\">StudioPress merged with Copyblogger</a>.</p>\n\n\n\n<h2>Hindsight: The Biggest Regrets After 12 Years</h2>\n\n\n\n<p>When building a successful company, it’s easy to look back on things that could’ve been handled differently. There are deals passed up, ideas that flopped, and products that didn’t scale.</p>\n\n\n\n<p>“My biggest regret was not starting with (or switching to) a recurring business model,” said Gardner. “I think I left a lot of money on the table by not doing that, but once I merged StudioPress into Copyblogger Media, we decided to leave it as is and use the former as a doorway into our company’s ecosystem.”</p>\n\n\n\n<p>Many theme companies in the early days had lifetime sales. It’s unlikely many could foretell how they’d need to scale for 10 or 20 years down the line. The concept was relatively new in the WordPress space. Gardner kept up with the model despite most theme shops moving to subscription-based sales, which typically scale better in the long term.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>From a personal standpoint, I think I could have done better. There were a few seasons (some short and others a bit longer) where I strayed away from my involvement at StudioPress. While I justified it by thinking that it was OK to pursue side projects and other things, I realize looking back that jeopardized the trust our customers had in the brand. I think I may have leaned too heavily on the fact that we had a team, but in the same breath, I think it was necessary for StudioPress to outgrow the label of ‘Brian Gardner themes.’ This emphasis really helped with the transition after WP Engine acquired StudioPress.</p></blockquote>\n\n\n\n<h2>Building a Community Over Software</h2>\n\n\n\n<p>“Without a doubt, it’s the <a href=\"https://genesis.community/\">Genesis community</a>,” Gardner said when asked what he’s most proud of with his time at StudioPress. “When Nathan Rice and I set out to build Genesis (the framework), we were trying to solve a software problem and bring a better user experience for our customers.”</p>\n\n\n\n<p>Instead of building software, he learned what he was building was a community. After creating a showcase page for people using the Genesis theme, he kept getting requests for people to build child themes. This led to the creation of the <a href=\"https://www.studiopress.com/genesis-developers/\">Genesis Developers</a> page, which provided a way for people within the community to earn a living.</p>\n\n\n\n<p>“While community has always been important to me,” Gardner said, “I didn’t realize the ripple effect that creating a solid piece of software would have.”</p>\n\n\n\n<p>Gardner said the developers page created a way to pay it forward to the people who had helped him build a successful company. The idea has remained a success, and there are many designers within the larger WordPress community who list custom Genesis design work in their credentials.</p>\n\n\n\n<p>“I have had the pleasure of being able to meet and spend time with members of the community—from talking about their success to future plans,” said Gardner. “This past year at WordCamp US in Nashville, I was able to fully comprehend the level in which lives had been changed by what we had done—and those are the moments I could not be any prouder of what I built.”</p>\n\n\n\n<h2>What’s on the Horizon?</h2>\n\n\n\n<p>“Heh. The million-dollar question, right?” responded Gardner to whether he plans to continue building themes. He doesn’t have any plans to create a new theme business, and any themes that he does build will be built for Genesis and made available from his website.</p>\n\n\n\n<p>“Over the past few years, I have developed a particular love for minimalist design, and I want to spend some of my time and creative energy there.”</p>\n\n\n\n<p>Gardner is currently available for hire as a website designer through <a href=\"https://authentik.com/\">Authentik</a>, a design and development studio that he founded. Authentik specializes in branding and growth/audience building. The team builds everything from landing pages to more complex multi-system environments.</p>\n\n\n\n<p>However, there may be more to come from Gardner in the future. “I have created some personal space to pursue collaborations and consulting,” he said. “I have a renewed focus on my blog and want to spend more time consuming content—reading books, listening to podcasts, and meeting up with folks locally. My heart to help fellow creators is as strong as ever, and I feel there are some really interesting opportunities to do that.”</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, 01 Oct 2019 19:37: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:14:\"Justin Tadlock\";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:70:\"WPTavern: Gatsby Days London Features Multiple WordPress Presentations\";s: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:29:\"https://wptavern.com/?p=94405\";s: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:\"https://wptavern.com/gatsby-days-london-features-multiple-wordpress-presentations\";s: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:9154:\"<p><a href=\"https://www.eventbrite.com/e/gatsby-days-london-2019-tickets-66228586485\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby Days London</a> kicked off yesterday with a lot of momentum after Gatsby Inc. announced <a href=\"https://wptavern.com/gatsby-raises-15m-plans-to-invest-more-heavily-in-wordpress-and-cms-integrations\" rel=\"noopener noreferrer\" target=\"_blank\">a $15M Series A funding round</a> last week. The one-day conference drew 200 attendees and was the third in a series of Gatsby Days that have been held in other cities. They are designed to give the community an opportunity to meet in person and hear more about the future of the project from its creators and contributors.</p>\n<p>Gatsby creator Kyle Mathews gave the keynote address and described what he sees as a shift from the LAMP-stack CMS era to “content mesh” architecture.</p>\n<p>“Monolithic CMSs were invented in 90s — they’re now migrating to become specialized modular services,” Mathews said. Gatsby provides the presentation layer for this new architecture and its plugin layer connects out to multiple content sources.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Old world vs new world explained by <a href=\"https://twitter.com/kylemathews?ref_src=twsrc%5Etfw\">@kylemathews</a> shown in his diagram when explaining <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@gatsbyjs</a> <a href=\"https://twitter.com/hashtag/GatsbyDaysLondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDaysLondon</a> <a href=\"https://t.co/9EIxS6Sc3X\">pic.twitter.com/9EIxS6Sc3X</a></p>\n<p>— Ilesh Mistry (@ileshmistry) <a href=\"https://twitter.com/ileshmistry/status/1178598732000108544?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>An informal survey of attendees showed that roughly a 1/3 were experienced at working with Gatsby and the majority of those in the audience were newer users or simply curious to learn more. Although Gatsby is currently geared primarily towards developers, Mathews described how the project is working towards enabling people in other roles who also work on websites.</p>\n<p>“We’re thinking really hard about how we can help everyone who works on a website, not just developers,” Mathews said. “Right now, Gatsby is essentially for developers, but our goal isn’t to help developers per se. Our goal is to help amazing websites be created.</p>\n<p>“This matters because the world runs on websites. More and more essential services that everyone relies on are websites and web apps, and we want to help with that. Developers are a key part of building websites but the actual process of building a web property is an incredible cross functional job for an organization to take on.” This process often includes designers, content editors, marketing professionals, and others.</p>\n<p>Gatsby, Inc.’s first cloud service, <a href=\"https://www.gatsbyjs.com/preview\" rel=\"noopener noreferrer\" target=\"_blank\">CMS Preview</a>, was inspired by this goal of assisting non-developers who work on websites. It shows content authors immediate feedback when they change content, which the team found to be a common requirement in most editorial workflows.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/GatsbyJS?src=hash&ref_src=twsrc%5Etfw\">#GatsbyJS</a> is great for <a href=\"https://twitter.com/hashtag/Drupal?src=hash&ref_src=twsrc%5Etfw\">#Drupal</a>. Our new <a href=\"https://twitter.com/hashtag/CMS?src=hash&ref_src=twsrc%5Etfw\">#CMS</a> Preview product makes preview lightning-fast! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/26a1.png\" alt=\"⚡\" class=\"wp-smiley\" /></p>\n<p>Thanks to all at <a href=\"https://twitter.com/hashtag/GatsbyDaysLondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDaysLondon</a> who came to see \"Live preview with <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@GatsbyJS</a> and <a href=\"https://twitter.com/hashtag/decoupled?src=hash&ref_src=twsrc%5Etfw\">#decoupled</a> <a href=\"https://twitter.com/drupal?ref_src=twsrc%5Etfw\">@Drupal</a>\"!</p>\n<p>Slides: <a href=\"https://t.co/tJ3A0dWlGV\">https://t.co/tJ3A0dWlGV</a><a href=\"https://twitter.com/hashtag/PHP?src=hash&ref_src=twsrc%5Etfw\">#PHP</a> <a href=\"https://twitter.com/hashtag/JavaScript?src=hash&ref_src=twsrc%5Etfw\">#JavaScript</a> <a href=\"https://twitter.com/hashtag/ReactJS?src=hash&ref_src=twsrc%5Etfw\">#ReactJS</a> <a href=\"https://twitter.com/hashtag/GatsbyDrupalPreview?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDrupalPreview</a> <a href=\"https://t.co/k4UwJCp18m\">pic.twitter.com/k4UwJCp18m</a></p>\n<p>— Preston So @ #GatsbyDaysLondon <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f1ec-1f1e7.png\" alt=\"??\" class=\"wp-smiley\" /> (@prestonso) <a href=\"https://twitter.com/prestonso/status/1178617916637552641?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>Mathews also said that the project’s design system library, <a href=\"https://www.gatsbyjs.org/docs/theme-ui/\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby Theme UI</a>, is another aspect of site creation aimed at making it more friendly for designers.</p>\n<p>“The goal of this is that designers and other non-developers can build Gatsby sites without building any code,” he said.</p>\n<p>Mathews covered some technical updates to Gatsby core and how the company is growing its team. A recording of the live broadcast is <a href=\"https://youtu.be/kuyLCwAMCZo?t=941\" rel=\"noopener noreferrer\" target=\"_blank\">available on YouTube</a>.</p>\n<h3>WordPress Sessions at Gatsby Days London: How to Use WPGraphQL and ACF as a Content Source, and Building and Selling Gatsby + WordPress Sites</h3>\n<p>Gatsby Days London featured presentations on several WordPress-related topics. Alexandra Spalato spoke about <a href=\"https://slides.com/alexandraspalato/gatsby-with-wordpress-and-wpgraphql-2\" rel=\"noopener noreferrer\" target=\"_blank\">using WordPress as a source for Gatsby</a>, demonstrating how to use WPGraphQL and Advanced Custom Fields (ACF) in a WordPress installation that produces content for a Gatsby front-end.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">now on stage is <a href=\"https://twitter.com/alexadark?ref_src=twsrc%5Etfw\">@alexadark</a> showing us how to work with Gatsby & WordPress!<a href=\"https://twitter.com/hashtag/GatsbyDayslondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDayslondon</a> <a href=\"https://t.co/1xP2sPjPam\">pic.twitter.com/1xP2sPjPam</a></p>\n<p>— Horacio Herrera (@hhg2288) <a href=\"https://twitter.com/hhg2288/status/1178610525401423872?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>“The vibe at Gatsby days was fantastic, the beautiful Venue with round tables, the enthusiastic community where you can find people from WordPress, Drupal and others, all interested by Gatsby.” Spalato said.</p>\n<p>She found the event to provide a good balance between talks and networking, with unconference sessions devoted to WordPress, themes, Drupal, PWA, component libraries, migrating to Gatsby, and other topics.</p>\n<p>“For me it was fantastic to speak there, as Gatsby is the bridge between my two worlds – WordPress and JavaScript/React,” Spalato said. “It was my first real public talk and the feeling that people loved it and learned something is extremely rewarding, so I plan to do lot of more talks at WordCamps about Gatsby in the near future.”</p>\n<p>Horacio Herrera gave a presentation on building and selling Gatsby + WordPress sites. He shared the process he uses to sell Gatsby-powered projects to clients as high-performing websites. For a week leading up to his Gatsby pitch, Herrera uses <a href=\"https://speedcurve.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Speed Curve</a> to track a client’s website performance and then uses <a href=\"https://wpostats.com\" rel=\"noopener noreferrer\" target=\"_blank\">WPO stats</a> to demonstrate how performance improvements have helped competitors and industry leaders succeed.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hhg2288?ref_src=twsrc%5Etfw\">@hhg2288</a> next up <a href=\"https://twitter.com/hashtag/GatsbyDaysLondon?src=hash&ref_src=twsrc%5Etfw\">#GatsbyDaysLondon</a> building and selling <a href=\"https://twitter.com/gatsbyjs?ref_src=twsrc%5Etfw\">@gatsbyjs</a> and <a href=\"https://twitter.com/WordPress?ref_src=twsrc%5Etfw\">@WordPress</a> sites <a href=\"https://t.co/F2l4TsQ5ks\">pic.twitter.com/F2l4TsQ5ks</a></p>\n<p>— Ilesh Mistry (@ileshmistry) <a href=\"https://twitter.com/ileshmistry/status/1178681914074554369?ref_src=twsrc%5Etfw\">September 30, 2019</a></p></blockquote>\n<p></p>\n<p>The emerging Gatsby ecosystem is one to keep an eye on, as the project intensifies its focus on providing deeper integrations for popular CMS’s. How these related technologies intersect with WordPress will impact developers’ expectations and choices for the architecture of their websites 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:\"Tue, 01 Oct 2019 17:41:07 +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: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:76:\"WPTavern: Automattic Has Discontinued Active Development on Edit Flow 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94429\";s: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:87:\"https://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4251:\"<p><a href=\"https://wordpress.org/plugins/edit-flow/\" rel=\"noopener noreferrer\" target=\"_blank\">Edit Flow</a>, the modular editorial plugin that enables collaboration inside the WordPress admin, is no longer being actively developed. After no updates for nine months, Mark Warbinek, a frustrated user, contacted Automattic to ask if they have abandoned the plugin or still plan to update it. A support representative from Automattic <a href=\"https://wordpress.org/support/topic/edit-flow-plugin-is-closed-no-longer-supported/\" rel=\"noopener noreferrer\" target=\"_blank\">confirmed</a> the company will no longer be updating Edit Flow:</p>\n<blockquote><p>At this time there is no active development of the Edit Flow Plugin.</p>\n<p>That being the case – two things I can suggest are:</p>\n<p>Submitting the issue to the Github repository for the plugin. This is used to track future development of the plugin and will be a canonical place for bugs or issues to be recorded.<br />\n<a href=\"https://github.com/Automattic/Edit-Flow\">https://github.com/Automattic/Edit-Flow</a></p>\n<p>It is possible to ‘fork’ the plugin and make the changes needed – or use an alternative that has already been forked like PublishPress:<br />\nhttps://github.com/Automattic/Edit-Flow</p></blockquote>\n<p>Edit Flow is active on more than 10,000 WordPress sites and its sporadic development has caused users to question whether it was abandoned several times over the years. It is still listed among the <a href=\"https://wpvip.com/plugins/edit-flow/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress.com VIP plugins</a>, but will likely only be maintained for that platform going forward. <a href=\"https://github.com/Automattic/Edit-Flow/pull/499\" rel=\"noopener noreferrer\" target=\"_blank\">A 10-month old PR</a> was merged on its GitHub repository as recently as 19 days ago, after the contributor began to question whether the project was abandoned.</p>\n<p>In 2016, <a href=\"https://wptavern.com/hey-automattic-whats-going-on-with-edit-flow\" rel=\"noopener noreferrer\" target=\"_blank\">Edit Flow went two years in between updates</a>, leaving frustrated users in the dark. After that incident, a representative from Automattic <a href=\"https://wptavern.com/hey-automattic-whats-going-on-with-edit-flow#comment-164215\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> the company was working on an internal effort to improve the maintenance of their own plugins in order to avoid a situation like this happening again. The company currently has 88 plugins listed in the official directory.</p>\n<p><a href=\"https://wordpress.org/plugins/publishpress/\" rel=\"noopener noreferrer\" target=\"_blank\">PublishPress</a> is the only alternative editorial plugin with comparable features, including an editorial calendar, notifications, editorial comments, custom statuses, and a content overview. It also offers <a href=\"https://publishpress.com/knowledge-base/migrate/\" rel=\"noopener noreferrer\" target=\"_blank\">seamless migration of Edit Flow data to PublishPress</a>. A commercial version of the plugin includes additional features, such as a publishing checklist, reminders, permissions, a WooCommerce checklist, and more.</p>\n<p>“I think I can speak for those users of this plugin that we are not happy with the horrible handling of this plugin, how Automattic has ignored and abandoned it, leaving users to suffer in the continuing fails this out-of-date plugin is causing,” Mark Warbinek <a href=\"https://wordpress.org/support/topic/edit-flow-plugin-is-closed-no-longer-supported/\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> in response to to the reply from Automattic’s support team.</p>\n<p>Unfortunately, this is always a risk when using free plugins from WordPress.org, especially ones without a direct business model supporting development. In many instances the plugin author’s first priority will be maintaining it for the paying customers. In this case that is WordPress.com VIP clients. Automattic has not posted an announcement on Edit Flow’s support forums, but an official communication would go a long way towards steering users in the right direction when they inevitably come looking for signs of life in the plugin.</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, 01 Oct 2019 03:31:49 +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: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:40:\"WordPress.org blog: WordPress 5.3 Beta 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:34:\"https://wordpress.org/news/?p=7262\";s: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/news/2019/09/wordpress-5-3-beta-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2993:\"<p>WordPress 5.3 Beta 2 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta2.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. </p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>, over <a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=09%2F24%2F2019..&milestone=5.3&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">45 tickets have been closed</a> since then. </p>\n\n\n\n<h2>Some highlights</h2>\n\n\n\n<ul><li>Work continues on the <strong>block editor</strong>.</li><li>Bugs fixed on<strong> Twenty Twenty</strong>.</li><li><strong>Accessibility</strong> bugs fixes and enhancements on the interface changes introduced with 5.3 beta 1:<ul><li>Iterate on the admin interface</li><li>Reduce potential backward compatibility issues</li><li>Improve consistency between admin screens and the block editor</li><li>Better text zoom management</li></ul></li><li>Support <code>rel=\"ugc\"</code> attribute value in comments (<a href=\"https://core.trac.wordpress.org/ticket/48022\">#48022</a>) – this particular ticket shows the WordPress project ability to integrate quick solutions to things that are changing unexpectedly – like Google new features.</li></ul>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developers notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br /></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, 30 Sep 2019 21:43: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";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:43:\"BuddyPress: BuddyPress 5.0.0 “Le Gusto”\";s: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://buddypress.org/?p=308041\";s: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://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\";s: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:10760:\"<p>Here’s our latest major release featuring the <strong>BuddyPress REST API</strong> !!</p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0.zip\">Get BuddyPress 5.0.0</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>We are very excited to announce the BuddyPress community the immediate availability of <strong>BuddyPress 5.0.0</strong> code-named “<strong>Le Gusto</strong>“. You can get it clicking on the above button, downloading it from our <a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin repository</a> or checking it out from our <a href=\"https://buddypress.trac.wordpress.org/browser/branches/5.0\">subversion repository</a>.</p>\n\n\n\n<p><em>NB: if you’re upgrading from a previous version of BuddyPress, please make sure to back-up your WordPress database and files before proceeding. </em></p>\n\n\n\n<p>You can view all the changes we made in 5.0.0 thanks to our <a href=\"https://codex.buddypress.org/releases/version-5-0-0/\">full release note</a>. Below are the key features we want to get your attention on.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-rest-api\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>The BP REST API opens a new era for BuddyPress!</h2>\n\n\n\n<p>You can now enjoy REST API endpoints for members, groups, activities, private messages, screen notifications and extended profiles.</p>\n\n\n\n<p>BuddyPress endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with your community through plugins, themes, apps, and beyond.</p>\n\n\n\n<p>The BP REST API opens great new opportunities to improve the way you play with the BuddyPress component features: we couldn’t resist to start building on top of it introducing… </p>\n\n\n\n<h3>A new interface for managing group members.</h3>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/group-manage-members.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/group-manage-members.png\" alt=\"Screen Capture of the new Group Mange Members UI\" class=\"wp-image-308052\" /></a></div>\n\n\n\n<p>Group administrators will love our new interface for managing group membership. Whether you’re working as a group admin on the front-end Manage tab, or as the site admin on the Dashboard, the new REST API-based tools are faster, easier to use, and more consistent.</p>\n\n\n\n<h3>The BP REST API is fully documented</h3>\n\n\n\n<p>The development team worked hard on the features but also took the time to <a href=\"https://buddypress.org/2019/09/bp-devhub-1-0/\">write the documentation</a> about how to use it and how to extend it. BuddyPress developers, let’s start building great stuff for our end users: take a look at <a href=\"https://developer.buddypress.org/bp-rest-api/\">the BP REST API developer reference</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-groups\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Improved Group invites and membership requests</h2>\n\n\n\n<p>Thanks to the new BP Invitations API, Group invites and membership requests are now managed in a more consistent way. The BP Invitations API abstracts how these two actions are handled and allows developers to use them for any object on your site (e.g., Sites of a WordPress network).</p>\n\n\n\n<p>Read more about the <a href=\"https://bpdevel.wordpress.com/2019/09/16/new-invitations-api-coming-in-buddypress-5-0/\">BP Invitations API</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-forums\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Help our support volunteers help you.</h2>\n\n\n\n<p>Knowing your WordPress and BuddyPress configuration is very important when one of our beloved support volunteers tries to help you fix an issue. That’s why we added a BuddyPress section to the Site Health Info Administration screen.</p>\n\n\n\n<a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/debug-buddypress.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/debug-buddypress.png\" alt=\"Screen capture of the BuddyPress section of the Site Health screen.\" class=\"wp-image-308058\" /></a>\n\n\n\n<p>The panel is displayed at the bottom of the screen. It includes the BuddyPress version, active components, active template pack, and a list of other component-specific settings information.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-columns has-2-columns\">\n<div class=\"wp-block-column\">\n<div><span class=\"dashicons dashicons-heart\"></span></div>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<div><span class=\"dashicons dashicons-wordpress-alt\"></span></div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Improved integrations with WordPress</h2>\n\n\n\n<h3>BP Nouveau Template Pack</h3>\n\n\n\n<p>In BuddyPress 5.0.0, the BP Nouveau template pack looks better than ever with the Twenty Nineteen theme.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/edit-password.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/edit-password.png\" alt=\"\" class=\"wp-image-308069\" /></a></div>\n\n\n\n<p>Nouveau now uses the same password control as the one used in WordPress Core, for better consistency between BuddyPress and WordPress spaces.</p>\n\n\n\n<h3>BuddyPress Blocks now have their own category into the Block Editor.</h3>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/wp-content/uploads/1/2019/09/bp-blocks.png\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bp-blocks.png\" alt=\"\" class=\"wp-image-308070\" /></a></div>\n\n\n\n<p>Developers building tools for the Block Editor can now add their blocks to the BuddyPress category. This change provides a foundation for organizing custom BuddyPress blocks.</p>\n\n\n\n<p>Read more about this feature in this <a href=\"https://bpdevel.wordpress.com/2019/07/31/a-category-to-store-your-buddypress-blocks/\">development note</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.org/2018/11/buddypress-4-0-0-pequod/#comment-44752\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/matt-comment.png\" alt=\"\" class=\"wp-image-308075\" /></a>Screen capture of the <a href=\"https://buddypress.org/2018/11/buddypress-4-0-0-pequod/#comment-44752\">comment</a> Matt made about BuddyPress 4.0.0</div>\n\n\n\n<p><em>PS: we know, just like Matt, you’re eager to enjoy high quality community blocks: now we have the BP REST API and this new Blocks category available in BuddyPress Core, get ready to be amazed for our next release. Fasten your seatbelts: BuddyPress blocks are arriving!</em></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/pizza.png\" alt=\"\" class=\"wp-image-308073\" /></div>\n\n\n\n<h2>BuddyPress Le Gusto</h2>\n\n\n\n<p>5.0.0 is code-named <strong>“Le Gusto”</strong> after the <a href=\"https://goo.gl/maps/tpvew6YSivZ5KX218\">well known Pizza restaurant</a> in Fortaleza, Brazil. It’s the perfect place to meet with friends and start tasting new flavors like <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/espellcaste/\" rel=\"nofollow\">@espellcaste</a>’s favorite one: the “Pizza de Camarão”. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-buddypress-logo\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Muito Obrigado</h2>\n\n\n\n<p>As usual, this BuddyPress release is only possible thanks to the contributions of the community. Special thanks to the following folks who contributed code and testing to the release: <a href=\"https://github.com/baconbro\">baconbro</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone B Gorges (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/joncadams/\">boop (joncadams)</a>, <a href=\"https://profiles.wordpress.org/sbrajesh/\">Brajesh Singh (sbrajesh)</a>, <a href=\"https://profiles.wordpress.org/dcavins/\">David Cavins (dcavins)</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Lewis (ericlewis)</a>, <a href=\"https://profiles.wordpress.org/geminorum/\">geminorum</a>, <a href=\"https://profiles.wordpress.org/gingerbooch/\">gingerbooch</a>, <a href=\"https://profiles.wordpress.org/ivinco/\">Ivinco</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock (whyisjake)</a>, <a href=\"https://profiles.wordpress.org/JarretC/\">Jarret (JarretC)</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/klawton/\">klawton</a>, <a href=\"https://profiles.wordpress.org/kristianngve/\">Kristian Yngve (kristianngve)</a>, <a href=\"https://profiles.wordpress.org/maniou/\">Maniou</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus (netweblogic)</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet (imath)</a>, <a href=\"https://github.com/bhoot-biswas\">Mithun Biswas</a>, <a href=\"https://profiles.wordpress.org/modemlooper/\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/DJPaul/\">Paul Gibbs (DJPaul)</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/razor90/\">razor90</a>, <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>, <a href=\"https://profiles.wordpress.org/slaFFik/\">Slava Abakumov (slaFFik)</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar (netweb)</a>, <a href=\"https://profiles.wordpress.org/truchot/\">truchot</a>, <a href=\"https://profiles.wordpress.org/venutius/\">Venutius</a>, <a href=\"https://profiles.wordpress.org/wegosi/\">wegosi</a>, and of course you for using BuddyPress <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div><span class=\"dashicons dashicons-format-chat\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Feedbacks welcome!</h2>\n\n\n\n<p>Receiving your feedback and suggestions for future versions of BuddyPress genuinely motivates and encourages our contributors. Please share your feedback about this version of BuddyPress in the comments area of this post. And of course, if you’ve found a bug: please tell us about it into our <a href=\"https://buddypress.org/support/\">Support forums</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, 30 Sep 2019 21:30:07 +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:5:\"imath\";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:44:\"WPTavern: Preparing Themes For WordPress 5.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94401\";s: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://wptavern.com/preparing-themes-for-wordpress-5-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5011:\"<p>Now that <a href=\"https://wptavern.com/wordpress-5-3-beta-1-ready-for-testing-includes-12-gutenberg-releases-and-new-twenty-nineteen-default-theme\">WordPress 5.3 Beta 1</a> is open for testing and with the official release slated for November 12, it’s time for theme authors to begin making sure their themes are ready for several changes.</p>\n\n\n\n<p>Most work will revolve around the block editor. WordPress 5.3 will include versions 5.4 – 6.5 of the Gutenberg plugin, a total of 12 releases. This makes for a lot of ground to cover. The next release includes breaking changes.</p>\n\n\n\n<p>For themes without custom block styles, little should change. However, theme authors who have been building custom block designs will likely have some work to do if they haven’t kept up with the changes in the Gutenberg plugin over the past several months.</p>\n\n\n\n<h2>Block Style Variations API Introduced</h2>\n\n\n\n<p>WordPress 5.3 introduces new <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">server-side block style functions</a>. This means that theme authors who prefer PHP can now register custom block style variations without writing JavaScript code.</p>\n\n\n\n<p>The block styles feature allows theme authors to register custom styles for individual blocks. Then, they must apply custom CSS to these styles in the editor and the front end.</p>\n\n\n\n<p>The new functions are basic one-to-one matches to their JavaScript counterparts. Block styles still need to be registered on a per-block basis. Support for registering single styles to multiple blocks at once hasn’t landed in core.</p>\n\n\n\n<h2>New Block HTML Creates Breaking Changes</h2>\n\n\n\n<p>Despite WordPress’ commitment to backward compatibility over the years, the Gutenberg team hasn’t maintained that approach with blocks. Block HTML output in the editor and the front end has changed for some blocks. These changes will break custom theme styles in many cases.</p>\n\n\n\n<p>The following blocks have potential breaking changes for themes:</p>\n\n\n\n<ul><li><strong>Group:</strong> A new inner container element was added to the markup.</li><li><strong>Table:</strong> A wrapper element was added and the block class moved to the wrapper.</li><li><strong>Gallery:</strong> Like the table block, it received the same wrapper element treatment. Galleries also support a caption for the entire gallery block.</li></ul>\n\n\n\n<p>In my tests, the gallery block had the most obvious breaking changes. Depending on how it is styled, users could be looking at a single column of images instead of their selected number. The core development blog has a <a href=\"https://make.wordpress.org/core/2019/09/27/block-editor-theme-related-updates-in-wordpress-5-3/\">complete overview of the HTML changes</a> along with code examples for addressing issues.</p>\n\n\n\n<p>It’d be interesting to see if the Gutenberg team makes similar HTML changes with other blocks in the future. Such changes make it tough for theme authors to maintain support between versions of WordPress and versions of the Gutenberg plugin. It also bloats CSS code when attempting to maintain compatibility. Adding an extra element doesn’t typically break things. However, moving an element’s class to another element is a dumpster fire waiting to happen. If these types of changes continue to happen, it could turn some theme authors away from supporting the block editor at a time when core needs to be encouraging more authors to design around it.</p>\n\n\n\n<h2>New Block Classes Added</h2>\n\n\n\n<p>Several <a href=\"https://make.wordpress.org/core/2019/09/27/block-editor-theme-related-updates-in-wordpress-5-3/\">new CSS classes</a> are making their way into 5.3. For themes that remove core block styles on the front end, they need to add support for the classes to their theme’s stylesheet.</p>\n\n\n\n<p>WordPress is doing away with inline styles for left, right, and center text alignment. This is a welcome change because it moves CSS to its appropriate place, which is in a stylesheet. Theme authors need to make sure they support these new classes for the following blocks.</p>\n\n\n\n<ul><li>Heading</li><li>Paragraph</li><li>Quote</li><li>Verse</li></ul>\n\n\n\n<p>The columns block no longer supports column-specific class names. Version 5.3 supports custom column widths, which are handled with inline styles. It’s unlikely this will break most themes, but it’s worth testing.</p>\n\n\n\n<p>The separator block now supports custom colors. It is given both the text and background color class names on the front end. This allows theme authors to utilize the styling method they prefer. Ideally, a border color class would exist, but the block editor does not yet support selecting a custom border color. </p>\n\n\n\n<p>Quick developer tip: if your theme uses a border color for the separator block, use <a href=\"https://css-tricks.com/currentcolor/\">currentColor</a> to handle custom colors.</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, 30 Sep 2019 16:45: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:97:\"WPTavern: Secure the News Project Finds 93% of Major Publishers Offer HTTPS Encryption by Default\";s: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:29:\"https://wptavern.com/?p=94365\";s: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:107:\"https://wptavern.com/secure-the-news-project-finds-93-of-major-publishers-offer-https-encryption-by-default\";s: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:4469:\"<p><a href=\"https://securethe.news\" rel=\"noopener noreferrer\" target=\"_blank\">Secure the News</a> is a project that was created by the <a href=\"https://freedom.press/\" rel=\"noopener noreferrer\" target=\"_blank\">Freedom of the Press Foundation</a> in 2016 to track HTTPS encryption across major news organizations’ websites. It lists the publications and automatically scores them on a scale of 0-100, based on HTTPS implementation according to <a href=\"https://securethe.news/methodology-and-metrics/\" rel=\"noopener noreferrer\" target=\"_blank\">best practices</a>, as defined by General Services Administration (GSA) Pulse’s current criteria for modern and secure HTTPS deployment. The score is converted to an A-F letter grade.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-27-at-4.29.56-PM.png?ssl=1\"><img /></a></p>\n<p>The primary benefits of news organizations adopting HTTPS include reader privacy and website security, but there are also other positive byproducts, such as protecting sources and preventing censorship. Secure the News provides some interesting data in its campaign to encourage more broad HTTPS adoption.</p>\n<p>In 2018, after one year of collecting data on HTTPS encryption at more than 130 major world news sites, the project found that HTTPS was available on 2/3 of the sites it monitors (89 of 131), up from 1/3 in 2016. Approximately <a href=\"https://securethe.news/blog/how-secure-are-news-sites-report-first-year-secure-news/\" rel=\"noopener noreferrer\" target=\"_blank\">60% of news organizations offered HTTPS encryption by default in 2018</a> and that number is up to 93% today.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-27-at-5.40.27-PM.png?ssl=1\"><img /></a></p>\n<p>Most of the WordPress-powered major news sites, such as <a href=\"https://arstechnica.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Ars Technica</a>, <a href=\"https://time.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Time</a> and the <a href=\"https://nypost.com/\" rel=\"noopener noreferrer\" target=\"_blank\">New York Post</a>, get a B ranking, with the exception of <a href=\"https://techcrunch.com\" rel=\"noopener noreferrer\" target=\"_blank\">TechCrunch</a> and <a href=\"https://qz.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Quartz</a>, which both scored an A.</p>\n<p>The most recent addition to the project is the ability to <a href=\"https://securethe.news/blog/introducing-regional-leaderboards-secure-news/\" rel=\"noopener noreferrer\" target=\"_blank\">sort publications by region on the homepage</a>. Publications based in North America and Europe lead the world in having the most secure HTTPS implementations. Asia has a smaller percentage of major news sites with a score of A- or higher. Some smaller regions, such as the Middle East and North Africa, Oceana, and South America, list just a handful of news organizations but they all have a score of B or higher. Secure the News is just getting started with this feature and is accepting feedback on the project’s GitHub account.</p>\n<p>In addition to promoting HTTPS adoption, the team behind Secure the News is also considering broadening its coverage to measure other ways that news sites are delivering secure content, such as whether the site has an <a href=\"https://en.wikipedia.org/wiki/.onion\" rel=\"noopener noreferrer\" target=\"_blank\">onion service</a>, is <a href=\"https://www.torproject.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Tor project</a> friendly, or has a <a href=\"https://freedom.press/training/blog/first-time-they-reach-out-protect-sources-themselves/\" rel=\"noopener noreferrer\" target=\"_blank\">confidential tip line</a>. The project also has more news sites to add and a long list of improvements they want to make to the <a href=\"https://securethe.news/methodology-and-metrics/\" rel=\"noopener noreferrer\" target=\"_blank\">metrics used to rank sites</a>.</p>\n<p>The code for <a href=\"https://securethe.news/blog/secure-news-open-source/\" rel=\"noopener noreferrer\" target=\"_blank\">Secure the News is open source</a> (licensed under the GNU AGPL) and <a href=\"https://github.com/freedomofpress/securethenews\" rel=\"noopener noreferrer\" target=\"_blank\">available on GitHub</a> for anyone who wants to contribute or fork it for use with other site categories where browsing might be sensitive, such as libraries, adult sites, educational institutes, or medical facilities.</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, 27 Sep 2019 23:58: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: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:77:\"WPTavern: Rebirth of Creativity: Gutenberg and the Future of 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:29:\"https://wptavern.com/?p=94231\";s: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:87:\"https://wptavern.com/rebirth-of-creativity-gutenberg-and-the-future-of-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:10060:\"<p>I began using WordPress in 2005. I’d already been learning HTML and CSS for a couple of years. I even had a home-brewed blog that pulled posts from plain text files at one point. I knew enough JavaScript to do pop-up alerts and other annoying things that served no purpose and made for a poor user experience, even if they were fun for me.</p>\n\n\n\n<p>This was my second attempt at using WordPress. This time it was after a botched go of making PHP Nuke behave how I wanted. I had big dreams for my website but lacked the coding skills to make them happen. WordPress was simple enough to hack for a novice like me at the time. Sure, I broke my site more times than I could count, but I managed to put together my first real theme.</p>\n\n\n\n<p>I popped open Photoshop; grabbed a few images from <em>Angel</em>, my favorite TV show at the time; and began my work. I’d recently watched <em>Soul Purpose</em>, an episode that explored whether the titular character was truly the hero mentioned in an ancient prophecy. It was foretold that the vampire with a soul would shed his demon half and live as a human. It explored themes of the character’s place in the world. At 21 years old, it’s the sort of episode that resonated with a young man who was also looking for his place. I thought it fitting to work that into my theme’s design and began hacking away at a header for my theme.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Screenshot of my first WordPress theme header.</div>\n\n\n\n<p>At that time, there was this loosely-connected underground of themers and hobbyists who were building WordPress themes based on their favorite TV series, movies, comic books, and more. That was my first real introduction to WordPress. These people were not building themes for profit. They were searching for their place in this small corner of the internet. At most, some were looking for validation from like-minded people who might enjoy their art. It was about creation for the sake of creation. Anyone could be an artist with a simple lesson in CSS, an image manipulation program, and enough grit to pour their soul into the project for a few hours.</p>\n\n\n\n<p>If there were ever a time that WordPress themes died, it was when the hobbyists who built for pure passion were overshadowed by business interests.</p>\n\n\n\n<p>Don’t get me wrong; business interests played a crucial role in propelling WordPress to become the most dominant CMS in the world. However, the balance has clearly shifted in favor of building WordPress themes for business and ecommerce rather than for the enthusiasts who just want to create. Other platforms have better catered to these users and filled in the gaps left open by WordPress. Tumblr became a safe-haven for popular culture fans. DeviantArt a home for artists. Wattpad for aspiring writers and fanfic lovers.</p>\n\n\n\n<p>Somewhere along the way, we lost the innocence and artistry of building WordPress themes for the pure fun of it. WordPress grew up and WordPress themes along with it.</p>\n\n\n\n<h2>Today’s Themes Are Not Tomorrow’s</h2>\n\n\n\n<p>In his post, <a href=\"https://www.binarymoon.co.uk/2019/09/the-end-of-wordpress-themes-is-in-sight/\">The End of WordPress Themes is in Sight</a>, Ben Gillbanks said, “Themes as we know them will no longer be made.” It is a bleak look at the future of WordPress theming. He notes that he doesn’t believe that he’ll be able to make a living building WordPress themes in the next couple of years.</p>\n\n\n\n<p>His worries are warranted. They have been shared by several theme authors over the past couple of years as the block editor (Gutenberg) was making its way into core WordPress. The official theme review team has discussed the team’s future role surrounding the coming changes.</p>\n\n\n\n<p>Gillbanks’ post comes on the heels of a post written by Matias Ventura on <a href=\"https://make.wordpress.org/core/2019/09/05/defining-content-block-areas/\">defining content block areas</a>. Essentially, the idea is for WordPress to allow users to edit areas outside of the post content via the block editor. Anything from the header, footer, sidebar, or otherwise would likely be fair game.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>In such a system, themes would be relegated to defining block areas, providing base styles, and designing block output. In many ways, this is what WordPress themes <em>should</em> be. Some might say that WordPress is putting themes back into their proper place of simply styling content. With the behemoth themes with hundreds or thousands of features we’ve seen over the past few years, this could be a welcome change. </p>\n\n\n\n<p>There’s huge potential for designers to step up and make their mark. I, for one, wouldn’t mind seeing CSS artists unleashed in the WordPress theme ecosystem.</p>\n\n\n\n<p>Gillbanks went on to say:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>There are definite benefits to doing this from a user’s perspective – they will have full control of their site – but it’s going to result in some very boring website layouts.</p></blockquote>\n\n\n\n<p>This is the point where I’ll respectfully disagree. Putting control in the hands of non-designers will be anything but boring.</p>\n\n\n\n<p><em>Do we all so easily forget the days of GeoCities?</em> The websites built from it may have been horribly inaccessible. They may have blared midi files as soon as you opened a webpage. They may have even had a flashing, scrolling marquee zipping across the header. Boring is not the word I’d use to describe them.</p>\n\n\n\n<p>As much as many of us want to put those days behind us (Come on, you had one of those sites at one point, right? Tell the truth.), there was something fascinating about it all. Real people built these sites because they were fun. The sites told you something about that person. It was a deeply personal look into this stranger’s world. Sometimes it was just a bunch of junk spewed onto the screen, but most sites were a reflection of the site owners at that point in time.</p>\n\n\n\n<p>It was ugly and beautiful all the same.</p>\n\n\n\n<p>Web developers and designers joke about those dark days of the web. It’s easy to look back at sites from the ’90s and cringe at the silliness (It makes you wonder what designers of 2050 will think about today’s designs, doesn’t it?). I choose to look fondly upon those days. It was a time before I became a “designer” with rules to follow.</p>\n\n\n\n<p>But, here’s the important point. We are not the arbiters of the web. It’s all about the user. If someone wants a blinking Justin Bieber GIF in their site header, more power to them. It’s the developer’s job to enable the user to do this in an easy-to-configure way.</p>\n\n\n\n<p><em>Wait? So Geocities is your argument for full-site editing in WordPress?</em></p>\n\n\n\n<p>Understanding why WordPress should become a full-site editor means understanding the average user. Developers are more apt to view things in a structured manner. I spent over a decade honing my development skills. Logic and order are old friends. </p>\n\n\n\n<p>With end-users, things may seem a bit more chaotic. A teenager might want to plaster a picture of her favorite band anywhere she wants on her site. A soccer mom might want to show her kid slamming home the winning goal. A poet may want to showcase one of his poems as a background image on his blog. Humans are creative beings. While our unique brand of artistry might not appeal to others, it’s still something we crave to share.</p>\n\n\n\n<p>It’s also important to understand that building WordPress themes is nowhere near as simple in 2019 as it was in 2005 when I started hacking away. The code is much more complex. It’s not quite as easy for a new user to piece together something fun as it once was. Unless you have a theme or plugin that allows you to do this with simple drag-and-drop or similar tools, users have little control over their own sites. And, that’s why the Gutenberg project is so revolutionary. Its mission is to put the power back in the hands of the people.</p>\n\n\n\n<p>Theme authors need to evolve. They will need to find a way to balance good design principles with the insane amount of freedom users will have. There’s nothing stopping designers from making sure the Bieber screengrab looks more presentable.</p>\n\n\n\n<h2>Are WordPress Themes Dead?</h2>\n\n\n\n<p>No. But, the theme landscape will certainly change and not for the first time. We need not look at that as a bad thing.</p>\n\n\n\n<p>Those hobbyists who like to tinker with their site, they will once again have power that was so long ago lost to more advanced code.</p>\n\n\n\n<p>There will also be sub-communities within the WordPress landscape. Some people will want something more akin to classic WordPress. Others will want a simple blog handled with Markdown (side note: I’m one of those people, and Gutenberg actually handles pasting from Markdown well). Plugins will be built to cater to every user’s needs. Themes will exist for different types of users. Client builds and enterprise solutions that look nothing like core WordPress aren’t going anywhere.</p>\n\n\n\n<p>There’s still a long road ahead. Theme authors need to be more involved with the development of Gutenberg as these features make their way into the plugin and eventually into WordPress. Otherwise, they’ll risk losing the opportunity to help shape the future theme landscape.</p>\n\n\n\n<p>Truth be told, I’m not sure what themes will look like in a few years. I have a horrible track record with predictions. However, I think it’s safe to say that there’ll be a place for designers.</p>\n\n\n\n<p>I’m excited because I feel like it will bring back the potential for users to have the control they once had and more.</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, 27 Sep 2019 18:56: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:14:\"Justin Tadlock\";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:86:\"WPTavern: Rich Reviews Plugin Discontinued after Vulnerabilities Exploited in the Wild\";s: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:29:\"https://wptavern.com/?p=94302\";s: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:97:\"https://wptavern.com/rich-reviews-plugin-discontinued-after-vulnerabilities-exploited-in-the-wild\";s: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:3397:\"<p>After <a href=\"https://www.wordfence.com/blog/2019/09/rich-reviews-plugin-vulnerability-exploited-in-the-wild/\" rel=\"noopener noreferrer\" target=\"_blank\">tracking exploits of a zero day XSS vulnerability</a> in the <a href=\"https://wordpress.org/plugins/rich-reviews/\" rel=\"noopener noreferrer\" target=\"_blank\">Rich Reviews plugin</a> for WordPress, Wordfence is recommending that users remove it from their websites. The company estimates that there are 16,000 active installations vulnerable to unauthenticated plugin option updates:</p>\n<blockquote><p>Attackers are currently abusing this exploit chain to inject malvertising code into target websites. The malvertising code creates redirects and popup ads. Our team has been tracking this attack campaign since April of this year. </p></blockquote>\n<p>Rich Reviews was removed from the WordPress.org Plugin Directory on March 11, 2019, due to a security issue.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-27-at-10.38.09-AM.png?ssl=1\"><img /></a></p>\n<p>One week ago, a Rich Reviews plugin user reported 3 out of 4 of her sites using the plugin were infected with redirect scripts and that removing the plugin fixed the issue. A digital marketing agency called Nuanced Media, the author of the plugin, <a href=\"https://wordpress.org/support/topic/plugin-not-supported-open-to-malware-uninstall-now/#post-11953681\" rel=\"noopener noreferrer\" target=\"_blank\">responded</a> to the post indicating that a new version would be released within two weeks:</p>\n<blockquote><p>We’ve been working on an overall rewrite of this plugin for a while now, but someone out there apparently wanted us to work faster on it, and decided to exploit our plugin to get some malware out there. We’re now going double-quick on it, and hope to have it back up (and newly cozy and secure) within the next two weeks.</p></blockquote>\n<p>Oddly, there seemed to be no rush to patch the issue that is currently being exploited. Yesterday, less than a week after assuring users that a new version is coming, the company behind the plugin announced that it is <a href=\"https://nuancedmedia.com/wordpress-rich-reviews-plugin/\" rel=\"noopener noreferrer\" target=\"_blank\">discontinuing active support and development on Rich Reviews</a>.</p>\n<p>Nuanced Media CEO Ryan Flannagan cited Google’s recent changes to its <a href=\"https://developers.google.com/search/docs/data-types/review-snippet#local-business-reviews\" rel=\"noopener noreferrer\" target=\"_blank\">business review guidelines</a> as the reason for discontinuing its development.</p>\n<p>“As part of this update, in the organic search results, Google has decided to remove all merchant review star ratings that businesses display on their own URL,” Flannagan said.</p>\n<p>“Based on this information, we have discontinued all active development and support on Rich Reviews. We apologize for any inconvenience.”</p>\n<p>The announcement does not include any information about the vulnerability or the recent exploits. Users should assume that no patch is coming to the plugin, since it has been officially discontinued. It’s already not available to potential new users on WordPress.org, but those who have Rich Reviews active on their sites should deactivate it and remove the plugin as soon as possible to avoid getting hacked.</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, 27 Sep 2019 18:25:56 +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:92:\"WPTavern: Gatsby Raises $15M, Plans to Invest More Heavily in WordPress and CMS Integrations\";s: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:29:\"https://wptavern.com/?p=94300\";s: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:101:\"https://wptavern.com/gatsby-raises-15m-plans-to-invest-more-heavily-in-wordpress-and-cms-integrations\";s: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:5857:\"<p><a href=\"https://www.gatsbyjs.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Gatsby Inc</a>. CEO Kyle Mathews announced a <a href=\"https://www.gatsbyjs.org/blog/2019-09-26-announcing-gatsby-15m-series-a-funding-round/\" rel=\"noopener noreferrer\" target=\"_blank\">$15M Series A funding round</a> today, just one year after creating the company with GatsbyJS core contributors. The open source Gatsby project started in 2015 to provide a framework for developers to quickly build websites with React. As the project soared in popularity, Mathews formed a company to fund its ongoing development and further invest in the growing Gatsby ecosystem of products.</p>\n<p>This round of funding will enable Gatsby to grow its 35-person team while investing in open source and cloud services that complement the company’s products.</p>\n<p>“With Gatsby, we’re striving to create a business model that will drive many millions of dollars of investment in open-source tools and enable people to build the next generation of web experiences,” Mathews said.</p>\n<p>At the forefront of the company’s vision is the idea of “reinventing website development.” Gatsby has popularized the concept of a “<a href=\"https://www.gatsbyjs.org/blog/2018-10-04-journey-to-the-content-mesh/\" rel=\"noopener noreferrer\" target=\"_blank\">content mesh</a>,” a platform that provides the infrastructure layer for a decoupled website and reimagines the role of a CMS within this architecture.</p>\n<p>Gatsby’s goal of creating more integrations for CMS’s was a big part of Mathews’ funding announcement. Instead of writing off LAMP stack architecture as slow and obsolete, Gatsby is creating bridges to the CMS’s that power a large portion of the web:</p>\n<blockquote><p>Instead of a monolithic CMS powering everything, Gatsby ties together specialized services with a modern development experience and optimized website delivery.</p>\n<p>This content mesh empowers developers while preserving content creators’ workflows. It gives developers access to great cloud services without the pain of manual integration.</p>\n<p>Web developers from dozens of web CMS communities like WordPress and Drupal are going “headless” and using Gatsby as the presentation layer for their CMS.</p>\n<p>We’re forming partnerships with these communities to create seamless integrations between their solutions and Gatsby.</p></blockquote>\n<p>Gatsby will be using some of its funding to invest more heavily in the WordPress ecosystem. The company hired <a href=\"https://wptavern.com/jason-bahl-joins-the-gatsby-team-to-work-on-wpgraphql-full-time\" rel=\"noopener noreferrer\" target=\"_blank\">hiring Jason Bahl</a>, creator of the GraphQL for WordPress project, in June, and plans to add more WordPress developers.</p>\n<p>“We recently hired someone else to work alongside Jason in developing WPGraphQL (announcement coming soon!) and are currently hiring for several roles on the team,” Mathews told the Tavern.</p>\n<p>WordPress powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" rel=\"noopener noreferrer\" target=\"_blank\">34.6% of the top 10 million websites</a> and Matt Mullenweg has previously estimated its ecosystem to be a $10 billion industry. The CMS is <a href=\"https://joost.blog/cms-market-share-a-numbers-analysis/\" rel=\"noopener noreferrer\" target=\"_blank\">showing no signs of decline</a>, and is a market that Gatsby product developers are strategically targeting.</p>\n<p>WordPress adopted React as its JavaScript framework in 2017, and built its new Gutenberg editor on top of it. Although some early adopters began digging deeper into React and creating their own products with it, the majority of PHP developers have been slow to move in that direction. Gatsby provides a bridge for those who are just getting started.</p>\n<p>“We think that for many web developers, a Gatsby project may be the first time they are using React, GraphQL, webpack or even Node.js,” Mathews said. “And that’s not just the case for WordPress developers – the same can be true for professionals in the Drupal, Rails, or .NET ecosystems.</p>\n<p>“It’s our goal to make a framework that empowers developers to use these technologies easily, then dive deeper as they gain more experience. So, instead of taking days to configure webpack for the first time, you can use a Gatsby Theme that connects to WordPress as a data source, and automatically get a blazing fast site. Later, you can learn the innards of the system, and begin customizing Gatsby yourself.”</p>\n<p>While Gatsby as a framework enables developers to bypass a lot of the technical and tooling jargon that has made modern development so complex, it is still a framework geared almost exclusively towards developers. Mathews said the company’s vision will continue to focus on enabling developers, not on creating solutions to make Gatsby more accessible to the non-technical crowd.</p>\n<p>“We are focused on making Gatsby the best choice for WordPress developers who want a flexible and powerful presentation layer for their headless WordPress sites,” he said. “Non-technical team members or clients will still use WordPress to create and manage content, while the web developers on their team or at the agency they hired get to be productive using the best development tools available.”</p>\n<p>Gatsby plans to use the funding to invest $3 million per year in open source, including the core Gatsby project, official plugins, and more learning materials. The funding is also good news for the future of the <a href=\"https://www.wpgraphql.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPGraphQL</a> project, which should see deeper integration with Gatsby in the near 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:\"Thu, 26 Sep 2019 22:35: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: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:57:\"WPTavern: Long-Needed Date/Time Improvements Land in Core\";s: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:29:\"https://wptavern.com/?p=94295\";s: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:68:\"https://wptavern.com/long-needed-date-time-improvements-land-in-core\";s: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:4026:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After more than a year and several WordPress updates, an <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">overhaul of the core Date/Time component</a> concluded. WordPress 5.3 will ship with fixes for long-standing bugs and new API functions.</p>\n\n\n\n<p>Andrey “Rarst” Savchenko spearheaded this project and worked through most of the issues in his <a href=\"https://github.com/Rarst/wp-date\">WP Date</a> fork of WordPress. Much of his work toward addressing the problems with this core component goes back further with the initialization of his <a href=\"https://github.com/Rarst/wpdatetime\">WPDateTime project</a>.</p>\n\n\n\n<p>Diving into the Date/Time component is no small feat. Addressing one issue leads to another. It’s a rabbit hole that few in the community have navigated. Many developers were also unaware of the issues. However, the bugs lingered for years, and users had no working solution for the problems they were facing.</p>\n\n\n\n<p>The most common errors were caused by core bugs or developer errors due to compatibility issues, described Savchenko. This would cause user-facing issues such as post scheduling and other time-based operations.</p>\n\n\n\n<p>With the release of WordPress 5.3, all existing functions should behave more reliably. Developers working on the component fixed several bugs and updated incorrect inline code documentation for many core functions. Along with the fixes, 5.3 will ship with new <a href=\"https://github.com/Rarst/wp-date/issues/4\">Date/Time API functions</a>. The updated API includes unified time zone retrieval, localization, and PHP interoperability functions.</p>\n\n\n\n<p>Savchenko called it “the slow descent into madness” when asked of the catalyst for diving into the Date/Time component and its underlying issues. “I started to notice serious bugs in the component from WordPress Stack Exchange questions about them, and the more I looked over years the more clear the dire state of it became to me.”</p>\n\n\n\n<p>One of the major problems is the way WordPress handles timestamps. “I actually had to invent the ‘WordPress timestamp’ term,” said Savchenko. “There was no name for it in core development and inline documentation incorrectly called these Unix timestamps before.” WordPress adds a time zone offset to the real Unix timestamp, which causes issues with upstream PHP and external systems. </p>\n\n\n\n<p>WordPress timestamps couldn’t be removed from core without breaking backward compatibility. Plugin and theme developers should avoid working with the WordPress timestamp and opt to use the <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">recommended methods</a> outlined in Savchenko’s post.</p>\n\n\n\n<p>WordPress date functions were originally written in PHP 4, a version of PHP so long-dead that it’s almost not worth digging up the end-of-life date (it’s <a href=\"https://www.php.net/eol.php\">11 years</a>, by the way). PHP 5.2 introduced the PHP <code>DateTime</code> and <code>DateTimeZone</code> classes and has continued receiving improvements over the years. WordPress date functions were never updated to utilize newer standards. The platform’s more recent bump to a minimum of PHP 5.6 also meant that the <code>DateTimeImmutable</code> class introduced in PHP 5.5 would be available. The version bump helped land the new API functions in WordPress 5.3.</p>\n\n\n\n<p>Some bugs go as far back as 7 years, such as <a href=\"https://core.trac.wordpress.org/ticket/20973\">shorthand formats not working with the core date_i18n() function</a>, which was fixed in WordPress 5.1. With any luck, core may also adopt such features as <a href=\"https://core.trac.wordpress.org/ticket/18146\">user-based timezones</a> in the future, which would better handle time differences on WordPress installs with users all over the world.</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, 26 Sep 2019 16:33: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:14:\"Justin Tadlock\";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:28:\"Gary: Talking with WP&UP\";s: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:25:\"https://pento.net/?p=5120\";s: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://pento.net/2019/09/26/talking-with-wpup/\";s: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:348:\"<p>At WordCamp Europe this year, I had the opportunity to chat with the folks at WP&UP, who are doing wonderful work providing mental health support in the WordPress community.</p>\n\n\n\n<p><a href=\"https://wpandup.org/podcast/getting-to-the-core-of-wordpress-021/\">Listen to the podcast</a>, and check out the services that WP&UP provide!</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, 26 Sep 2019 04:35: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:4:\"Gary\";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:48:\"BuddyPress: BuddyPress 5.0.0 Release Candidate 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:32:\"https://buddypress.org/?p=308016\";s: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:68:\"https://buddypress.org/2019/09/buddypress-5-0-0-release-candidate-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2087:\"<p>Hi!</p>\n\n\n\n<p><a href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-RC2.zip\">The second release candidate for BuddyPress 5.0.0</a> is now available for an ultimate round of testing!</p>\n\n\n\n<p>Since the <a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-release-candidate/\">first release candidate</a>, we’ve improved the way BP REST API Controllers are loaded inside BuddyPress component classes.</p>\n\n\n\n<p>This is an important milestone as we progress toward the BuddyPress 5.0.0 final release date. “Release Candidate” means that we think the new version is ready for release, but with more than 200,000 active installs, hundreds of BuddyPress plugins and Thousands of WordPress themes, it’s possible something was missed. BuddPress 5.0.0 is scheduled to be released on <strong>Monday, September 30</strong>, but we need <em>your</em> help to get there—if you haven’t tried 5.0.0 yet, <strong>now is the time!</strong> </p>\n\n\n\n<div class=\"wp-block-button aligncenter is-style-squared\"><a class=\"wp-block-button__link has-background\" href=\"https://downloads.wordpress.org/plugin/buddypress.5.0.0-RC2.zip\">Download and test the 5.0.0-RC2</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><em>PS: as usual you alternatively get a copy via our Subversion repository.</em></p>\n\n\n\n<p>A detailed changelog will be part of our official release note, but you can get a quick overview by reading the post about the <a href=\"https://buddypress.org/2019/08/buddypress-5-0-0-beta1/\">5.0.0 Beta1</a> release.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://plugins.svn.wordpress.org/buddypress/assets/icon.svg\" alt=\"\" width=\"33\" height=\"33\" /></div>\n\n\n\n<p><strong>If you think you’ve found a bug</strong>, please let us know reporting it on <a href=\"https://buddypress.org/support\">the support forums</a> and/or on <a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\n\n\n\n<p>Thanks in advance for giving this second release candidate a test drive!</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, 26 Sep 2019 02:31: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";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:53:\"WPTavern: Hacktoberfest 2019 Registration is Now Open\";s: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:29:\"https://wptavern.com/?p=94243\";s: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://wptavern.com/hacktoberfest-2019-registration-is-now-open\";s: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:3413:\"<p><a href=\"https://hacktoberfest.digitalocean.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Hacktoberfest</a> has started back up again for its sixth year running, sponsored by <a href=\"http://digitalocean.com\" rel=\"noopener noreferrer\" target=\"_blank\">DigitalOcean</a> and <a href=\"https://dev.to/\" rel=\"noopener noreferrer\" target=\"_blank\">DEV</a>. The annual event brings together open source communities from all over the world for virtual and <a href=\"https://hacktoberfest.digitalocean.com/events\" rel=\"noopener noreferrer\" target=\"_blank\">local collaboration</a>. Organizers are expecting approximately 150,000 participants this year.</p>\n<p>The first 50,000 participants who make four pull requests to any GitHub-hosted repositories between October 1-31, will receive a commemorative Hacktoberfest T-shirt. Organizers have introduced a one-week review period for PRs this year in order to give maintainers the opportunity to flag any spammy PRs as invalid. The goal is to encourage participants to submit more thoughtful contributions.</p>\n<p>More than 21,000 issues on GitHub have already been <a href=\"https://github.com/search?q=label%3Ahacktoberfest+state%3Aopen&type=Issues\" rel=\"noopener noreferrer\" target=\"_blank\">labeled for Hacktoberfest</a>. Maintainers who want to have their projects included should identify issues best suited to new contributors and apply the “Hacktoberfest” label. Organizers also recommend creating a CONTRIBUTING.md file with contribution guidelines and adopting a code of conduct for the project.</p>\n<p>Adding WordPress to a search for Hacktoberfest issues displays <a href=\"https://github.com/search?utf8=%E2%9C%93&q=label%3Ahacktoberfest+state%3Aopen+wordpress&type=Issues&ref=advsearch&l=&l=\" rel=\"noopener noreferrer\" target=\"_blank\">120 issues</a> that are related in some way to themes, plugins, apps, and other products with WordPress-specific needs. The event is a good opportunity for maintainers to get more exposure for their projects and help new contributors gain confidence through a structured contribution process.</p>\n<p>This year Hacktoberfest’s organizers are also featuring <a href=\"https://github.com/topics/climate-change\" rel=\"noopener noreferrer\" target=\"_blank\">projects focused on combating climate change</a>. These include repos for open source technologies, such as an <a href=\"https://github.com/CodeForAfrica/ClimateChangeProjections\" rel=\"noopener noreferrer\" target=\"_blank\">embeddable map that shows climate change projections</a>, an <a href=\"https://github.com/juancoob/Vegginner\" rel=\"noopener noreferrer\" target=\"_blank\">app targeting consumption habits</a>, and <a href=\"https://github.com/sphericalpm/ghgdata\" rel=\"noopener noreferrer\" target=\"_blank\">greenhouse gas emissions data packaged for exploration and charting</a>, to name a few.</p>\n<p>Hacktoberfest is open to contributors at any level of experience. For those just getting started, DigitalOcean has created an <a href=\"https://www.digitalocean.com/community/tutorial_series/an-introduction-to-open-source\" rel=\"noopener noreferrer\" target=\"_blank\">Introduction to Open Source</a> series that covers the basics of git and how to create a pull request. DEV also has a <a href=\"https://dev.to/tvanblargan/crash-course-git-lingo-1enj\" rel=\"noopener noreferrer\" target=\"_blank\">Git crash course</a> available to get new contributors up to speed.</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, 25 Sep 2019 22:39: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: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:88:\"WPTavern: Human Made Releases Publication Checklist Plugin Designed for the Block 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94238\";s: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:99:\"https://wptavern.com/human-made-releases-publication-checklist-plugin-designed-for-the-block-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2502:\"<p>Human Made has created a <a href=\"https://github.com/humanmade/publication-checklist/\" rel=\"noopener noreferrer\" target=\"_blank\">Publication Checklist</a> plugin built specifically for the block editor. It was developed as a headline feature of <a href=\"https://humanmade.com/2019/06/17/a-technical-introduction-to-altis-enterprise-augmented-wordpress-platform/\" rel=\"noopener noreferrer\" target=\"_blank\">Altis</a>, the company’s enterprise publishing platform based on WordPress, but is also available as a standalone plugin that developers can customize for their own particular use cases.</p>\n<p>Ryan McCue, Human Made’s Director of Engineering, shared screenshots of the plugin on <a href=\"https://twitter.com/rmccue/status/1173550662296190976\" rel=\"noopener noreferrer\" target=\"_blank\">Twitter</a> but noted that it may require more manual configuration when used outside of Altis. Developers familiar with React can extend the checklist to provide a more interactive experience for users completing the required publishing tasks.</p>\n<p>“Because this is built for the block editor, you can build the UI for your checks in React, allowing users to fix issues inline, or providing richer interaction; e.g. ‘jump to block failing this check,\'” McCue said.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-25-at-10.43.20-AM.png?ssl=1\"><img /></a></p>\n<p>Status of the publishing tasks is also shown in its own column in the posts list table, a useful feature for giving editorial teams a better overall picture of posts in progress. (The plugin also provides a way to disable this view.)</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/publication-checklist-posts-list-table.jpeg?ssl=1\"><img /></a></p>\n<p>It’s important to note that the Publication Checklist plugin only provides a framework for the pre-publish checks, and does not include a settings interface for users to create their own checks. For this reason, the current version is more geared towards developers who are capable of registering checks using the provided function. The checks display a warning if incomplete but users are still allowed to publish. A more strict enforcement that blocks publishing can also be applied. For more information on customizing the plugin, check out the <a href=\"https://github.com/humanmade/publication-checklist/\" rel=\"noopener noreferrer\" target=\"_blank\">documentation</a> on GitHub.</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, 25 Sep 2019 17:44: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: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: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:69:\"WPTavern: Theme Review Team Restructures Into Project Representatives\";s: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:29:\"https://wptavern.com/?p=94224\";s: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:\"https://wptavern.com/theme-review-team-restructures-into-project-representatives\";s: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:5229:\"<p>The WordPress Theme Review Team (TRT) restructured its administrative duties and laid out its <a href=\"https://make.wordpress.org/themes/2019/09/24/new-theme-review-team-structure/\">new team organization</a> after yesterday’s semimonthly team meeting. This is not the first time the TRT has restructured to meet the growing demands of the official theme directory over the years. The team is moving toward a flat structure that spreads its responsibilities to various project representatives.</p>\n\n\n\n<p>The original team consisted of a purely merit-based system where members worked their way up the ranks, becoming moderators and eventually admins. Each level provided more access and responsibility. In 2017, the team restructured to a <a href=\"https://make.wordpress.org/themes/2017/04/08/restructuring-the-theme-review-team/\">lead-based system</a> in which two team leads rotated every six months. The time limit was put in place to prevent burnout. Some leads ran the team beyond the six-month limit during this time, but it was not always easy to find replacements who wanted to take on the full responsibilities of managing everything. There was also concern among some team members that the rotation schedule wasn’t strictly followed with some leads overstaying their allotted time.</p>\n\n\n\n<p>In meetings and discussions over the last several months, various members drafted proposals on changing the team structure. The now-former team leads and a group of moderators created the new plan to split the team into specific projects, each with at least one representative.</p>\n\n\n\n<p>The following are the new sub-teams and representatives.</p>\n\n\n\n<ul><li>Theme review representatives: Sandilya Kafle and Carolina Nymark</li><li>Theme packages representative: Ari Stathopoulos</li><li>Automation representative: Denis Žoljom</li><li>Theme handbook representative: Ana Alfieri</li><li>Communications representative: William Patton</li></ul>\n\n\n\n<p>The five projects cover the team’s current duties and spread out the workload. “That’s kind of what this is about,” said William Patton. “It’s making sure that no one single person handles all the things and that it’s shared between all.”</p>\n\n\n\n<p>The new structure doesn’t mean there’s no room for other projects. If a team member has a particular itch they want to scratch, they’re open to spearhead that project. All the power is no longer consolidated into a couple of people’s hands.</p>\n\n\n\n<p>“Sharing the load and spreading people’s specific skills between things they know and are investing time into makes sense at this point,” said Patton.</p>\n\n\n\n<p>The team will no longer rotate leads (or representatives in this case) every six months. If someone needs to step down from their representative role or take a break, finding a new representative will be handled on a case-by-case basis. “We all have our strengths and passions. The thing that we also need to work on is finding people who are willing to participate and eventually take over when we feel tired,” said Denis Žoljom.</p>\n\n\n\n<p>Žoljom has been leading the automation project for while by maintaining the Theme Review coding standards and Theme Sniffer plugin. He’s currently looking to move the WPThemeReview ruleset to the official WordPress GitHub. “This is necessary because we want to use it in Tide,” said Žoljom. Tide is an automated tool for improving code quality in plugins and themes.</p>\n\n\n\n<p>“My personal goal would be to see if we can improve the review process – either by working on the GitHub review idea I had a few months ago, or by working on the automated tools that help the users,” said Žoljom.</p>\n\n\n\n<p>The theme review representatives will handle the traditional role of overseeing the reviewing responsibilities of the team. Little will change in that regard since it’s the primary duty of the TRT. They will continue moderating themes and handling guideline changes. “However, they can consult with other reps to make the final decision and to make new changes,” said Sandilya Kafle.</p>\n\n\n\n<p>The WordPress docs team has now handed over responsibility of the <a href=\"https://developer.wordpress.org/themes/\">theme developer handbook</a> to the TRT. “I think we should try to keep coherence between the two handbooks, so we avoid saying one thing in one and another in the other,” said Ana Alfieri about the differences between the developer and review handbooks. At times, such difference have been points of contention between TRT members. Having both handbooks in sync on best practices will help keep reviewers and theme authors on the same page.</p>\n\n\n\n<p>Ari Stathopoulos recently took over as the <a href=\"https://wptavern.com/behind-new-packages-project-lead-theme-review-team-launches-admin-notices-solution\">representative for theme packages</a> in the past month. The packages project aims to build standardized drop-in modules for developers to use in their themes. This specific project may also have various developers handling specific packages.</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, 25 Sep 2019 17:18: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:14:\"Justin Tadlock\";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:72:\"WPTavern: WordPress 5.3 to Introduce New Admin Email Verification Screen\";s: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:29:\"https://wptavern.com/?p=94193\";s: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:\"https://wptavern.com/wordpress-5-3-to-introduce-new-admin-email-verification-screen\";s: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:2769:\"<p>WordPress 5.3 is set to introduce an admin email verification screen that will be shown every six months after an admin has logged in. The feature was proposed seven months ago in a <a href=\"https://core.trac.wordpress.org/ticket/46349\" rel=\"noopener noreferrer\" target=\"_blank\">ticket</a> that contributor <a href=\"https://www.andreidraganescu.info/\" rel=\"noopener noreferrer\" target=\"_blank\">Andrei Draganescu</a> opened as part of the Site Health component improvements.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/admin-email-verification.png?ssl=1\"><img /></a></p>\n<p>Draganescu said the idea came from discussions in the #core-php channel regarding WSOD (White Screen of Death) recovery emails, which are sent when a site experiences a fatal error and the administrator may be locked out of their WordPress site. Participants in the discussion raised the issue of how common it is for admin email addresses to be outdated or set to a “catch all” address that is never checked. The email address may also be set automatically by the host during the process of a one-click installation.</p>\n<p>The “Why is this important?” link leads to a WordPress support article that describes the <a href=\"https://wordpress.org/support/article/settings-general-screen/#email-address\" rel=\"noopener noreferrer\" target=\"_blank\">various uses for the admin email address</a>, such as new user registration notifications, comment approval, and maintenance messages.</p>\n<p>Although it wasn’t the stated intention for the new admin email verification screen, the feature could become important for improving communication prior to automatic updates. Requiring admins to verify their email addresses after six months could ensure that more addresses are kept current, especially for admins who check their sites infrequently.</p>\n<p>When the WordPress security team <a href=\"https://wptavern.com/proposal-to-auto-update-old-versions-of-wordpress-to-4-7-sparks-heated-debate\" rel=\"noopener noreferrer\" target=\"_blank\">proposed auto-updating older versions of WordPress to 4.7</a>, one of the chief concerns is whether WordPress will be able to reach admins whose emails have been abandoned. This new admin email verification screen will not be be useful for older WordPress sites, but in the future, when auto-updating for major versions becomes the standard, it will help ensure more administrators are getting those notices to a working address.</p>\n<p>A new <code>admin_email_check_interval</code> filter is available for developers to customize the interval for redirecting the user to the admin email confirmation screen. Those who find it to be unnecessary or annoying can set a very large interval for the check.</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, 24 Sep 2019 18:30: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: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: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:63:\"WPTavern: Twenty Twenty Bundled in Core, Beta Features Overview\";s: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:29:\"https://wptavern.com/?p=94038\";s: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:73:\"https://wptavern.com/twenty-twenty-bundled-in-core-beta-features-overview\";s: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:5884:\"<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/twenty-editor.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>Twenty Twenty, the upcoming default WordPress theme, was committed to core and shipped with <a href=\"https://wptavern.com/wordpress-5-3-beta-1-ready-for-testing-includes-12-gutenberg-releases-and-new-twenty-nineteen-default-theme\">WordPress 5.3 Beta 1</a> yesterday.</p>\n\n\n\n<p>Like most core themes, Twenty Twenty is simple in function. It comes packaged with a handful of custom features and options, but it remains true to the mission of being an easy-to-use default theme.</p>\n\n\n\n<p>The theme has personality. Its headings are bold and opinionated. Its pull quotes grab your attention. It’s unafraid of making a splash with its design. This is a blog theme that’s meant to showcase what the block editor is capable of doing. It is a refreshing change of pace from the current slew of themes landing in the directory.</p>\n\n\n\n<p>Twenty Twenty is not ideal for every use case. Some users will no doubt dislike the design choices. Others will love everything about it.</p>\n\n\n\n<p><em>Note: Twenty Twenty is still in beta, so its features could change between now and the official release of WordPress 5.3.</em></p>\n\n\n\n<h2>Customizer Options</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Hue-only picker for the accent color in the customizer.</div>\n\n\n\n<p>The theme has a few custom options available within the customizer:</p>\n\n\n\n<ul><li>A retina logo option, which scales the logo image to half its size to make it sharper on hi-res screens.</li><li>An option for showing or hiding a search icon in the header.</li><li>A choice between showing the full post text or summary (excerpt) on archive pages.</li><li>A header and footer background color.</li><li>An accent color used for links and other elements.</li><li>Support for the core custom background feature.</li></ul>\n\n\n\n<p>The accent color option is an interesting choice. Rather than providing the full breadth of all colors, the theme includes a hue-only color picker. This feature allows users to select from a more limited set of colors within an accessible color range.</p>\n\n\n\n<p>There is also a ticket for removing core <a href=\"https://github.com/WordPress/twentytwenty/issues/480\">custom background image support</a> to help users avoid accessibility issues.</p>\n\n\n\n<h2>Custom Page Templates</h2>\n\n\n\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/twenty-cover.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a>Cover template options in the customizer.\n\n\n\n<p>Twenty Twenty has a fresh take on creating a cover page not seen in previous default themes. The “Cover Template” works for both posts and pages. When selecting it, the template displays the post featured image similar to the cover block in core. The featured image spans the full width of the screen and extends behind the header and navigation area. The post title and byline/meta are set over the image.</p>\n\n\n\n<p>The theme provides a few options for customizing the output of the cover area and allows the user to:</p>\n\n\n\n<ul><li>Set a fixed background for a parallax effect.</li><li>Add an overlay background color that sits over the featured image.</li><li>Change the color of the text on top of the image.</li><li>Choose a blend mode for the overlay background color.</li><li>Alter the overlay background color opacity.</li></ul>\n\n\n\n<p>Having a core theme explore this feature is a nice. Ideally, users would be able to create a featured cover area on a per-post basis and adjust the colors for the specific image on that post. However, core has yet to bundle such a feature with the block editor. There is an open Gutenberg ticket for <a href=\"https://github.com/WordPress/gutenberg/issues/16281\">expanding the editor outside of the post content</a> that may help theme authors address this common feature, but we’re likely several releases from seeing that become a reality.</p>\n\n\n\n<p>The theme also includes a wide (full width) template, which is a fairly common feature. At the moment, this template doesn’t seem to do anything in particular when assigned to a page. There’s an <a href=\"https://github.com/WordPress/twentytwenty/issues/185\">open GitHub ticket</a> that addresses what it should do at some point. Considering that the theme has no left/right sidebar, it’d be interesting to see how this template functions.</p>\n\n\n\n<h2>Page Loading Speed</h2>\n\n\n\n<p>Page load is something to keep an eye on. Twenty Twenty currently ships a 100 kb stylesheet on top of the block editor’s 40 kb CSS file (from the Gutenberg plugin). This number doesn’t include the font and JavaScript files also loaded for the page. This is a far cry from the behemoth 223 kb stylesheet included in Twenty Nineteen, but it’s still concerning because more development time means that more code will likely get added as tweaks are made and bugs are fixed. </p>\n\n\n\n<p>To be fair, the block editor has many elements to style with no unified design framework for theme authors to take advantage of. Keeping a Gutenberg-ready stylesheet under 100 kb that also styles each block is a feat of engineering few can master.</p>\n\n\n\n<h2>Follow Twenty Twenty Development</h2>\n\n\n\n<p>Theme development is currently happening on the <a href=\"https://github.com/WordPress/twentytwenty/\">Twenty Twenty GitHub repository</a>. If you want to track its changes as the theme is imported into core, the changes are happening on the <a href=\"https://core.trac.wordpress.org/ticket/48110\">Import Twenty Twenty</a> Trac ticket.</p>\n\n\n\n<p>The theme still has work to be done before it’s ready for public release. Now would be a great time to start testing it and reporting issues.</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, 24 Sep 2019 17:29: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:82:\"BuddyPress: An online community learning hub to deepen studies during IRL meetings\";s: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://buddypress.org/?p=307967\";s: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:102:\"https://buddypress.org/2019/09/an-online-community-learning-hub-to-deepen-studies-during-irl-meetings/\";s: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:6001:\"<div><em>This is a guest post by Tanner Moushey, Founder and Lead Engineer of <a href=\"https://study.church/about/\">StudyChurch</a>. He is a BP REST API early adopter and we thought his achievments implementing Headless BuddyPress was a great source of inspirations for the BuddyPress community. Many thanks to him for taking the time to share with us about this case study.</em></div>\n\n\n\n<p>Peer reviewed by <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/imath/\" rel=\"nofollow\">@imath</a></p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/StudyChurch-Organization-Dashboard.png\" alt=\"\" /></div>\n\n\n\n<p><a href=\"https://study.church/\">StudyChurch</a> is an ambitious startup seeking to make a mark in the church product marketplace. With a unique approach to online interaction, StudyChurch combines elements of engagement and learning in a way that is both simple and intuitive for the end user.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Background</h2>\n\n\n\n<p>I began working on StudyChurch as a side project in 2015. It started as a proof of concept and an excuse to dive deeply into BuddyPress. I wanted to leverage the group and activity components that BuddyPress provides and combine that with a custom study module that I created with a custom post type, BackboneJS, and the WordPress REST API. Answers to study questions were stored in WordPress Comments and synced to a custom BuddyPress activity type which was then used to create the discussion interface. Each question had an activity component under it to show off the other group answers and corresponding discussions.</p>\n\n\n\n<p>I finished the first draft of the project after several months and before too long I had groups signing up to use the system. I continued to make minor modifications over the next few years but kept running into complaints about speed and the user interface.</p>\n\n\n\n<p>When I was approached in 2018 by a publisher that wanted to use StudyChurch on a larger scale it sounded like a great opportunity to rebuild.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Implementing Headless BuddyPress </h2>\n\n\n\n<p>One of the big changes that I wanted to make in the rebuild was to switch to a JavaScript front end. I wanted something that was going to allow us to make numerous asynchronous data requests without using Ajax, which can be slow and difficult to maintain over a large project. I decided on VueJS and started building out the API to handle the data that was previously controlled by the BuddyPress templates. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Building a custom API with the BuddyPress REST API </h3>\n\n\n\n<p>I’d done quite a bit of work extending the WordPress REST API on previous projects and was excited to discover the <strong>BuddyPress REST API</strong> that extended it. This took care of a lot of the structure and allowed me to focus my time on building out our custom modules and functionality. Anytime I ran into something that needed to be more flexible, I’d submit a patch to the BuddyPress REST API repository and would get a prompt resolution.</p>\n\n\n\n<p>Now that we are able to post and retrieve data through the API, the user interactive elements on the site are noticeably faster and the overall load on the server is much less. Not only that, but we are ready for a native app once we get to that point.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/studychurch-case-study-image-1024x482.png\" alt=\"\" class=\"wp-image-307971\" /></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Creating a VueJS front end </h3>\n\n\n\n<p>Building a completely JavaScript front end for BuddyPress was fun challenge. I underestimated how many different components I’d need to build out since I wasn’t able to rely on the BuddyPress default templates, but the end result was well worth the effort.With VueJS we were able to leverage a lot of prebuilt UI packages (like <a href=\"https://element.eleme.io/#/en-US\">Element</a>) to do a lot of the heavy lifting for us. Since we were no longer tied to the BuddyPress template engine, we were able to get creative with how we displayed information and handled user interactions. The end result was a clean, fast, and user friendly interface that was simple and straightforward to use.</p>\n\n\n\n<p>I made a few modifications to allow WordPress and BuddyPress recognize our front end app and use it for BuddyPress components. I solved this with a pretty simple hook into the template include filter and included our template instead of the default. A few custom rewrite rules handled any non-BuddyPress url structures I needed to support and I soon had a fully functional and detached front end.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Conclusion</h2>\n\n\n\n<p>StudyChurch is now a powerful, robust social network ready for scale. We are still working on improving the system and adding new features which are now easier and faster to implement with the new structure.</p>\n\n\n\n<p>We’ve received some great feedback from users who find the app fast and intuitive. We are hoping to build out a native app in the near future.</p>\n\n\n\n<p>I’m so thankful for the work done by all of the volunteers who’ve put so much time into WordPress, BuddyPress, and now the BuddyPress REST API. I think there are going to be many more projects like StudyChurch in the near future that will leverage these great tools to build amazing and helpful solutions.</p>\n\n\n\n<p>Feel free to reach out if you have any questions or comments on what we’ve done with StudyChurch. Also, you are welcome to browse our code base on <a href=\"https://github.com/studychurch/sc-dashboard\" target=\"_blank\" rel=\"noreferrer noopener\">GitHub</a>.</p>\n\n\n\n<p>You can read more about StudyChurch and other projects we work on at <a href=\"https://iwitnessdesign.com/\" target=\"_blank\" rel=\"noreferrer noopener\">iwitnessdesign.com</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:\"Tue, 24 Sep 2019 09:07: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:5:\"imath\";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:116:\"WPTavern: WordPress 5.3 Beta 1 Ready for Testing, Includes 12 Gutenberg Releases and New Twenty Twenty Default Theme\";s: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:29:\"https://wptavern.com/?p=94165\";s: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:128:\"https://wptavern.com/wordpress-5-3-beta-1-ready-for-testing-includes-12-gutenberg-releases-and-new-twenty-nineteen-default-theme\";s: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:2577:\"<p>WordPress core contributors worked together today to package up <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\" rel=\"noopener noreferrer\" target=\"_blank\">5.3 Beta 1</a> for release on schedule. The Core slack channel was abuzz this afternoon as developers pushed through last-minute commits and fixed issues ahead of shipping the beta.</p>\n<p>Iterations on the block editor are a major part of of this release. WordPress 5.3 will include the last 12 Gutenberg plugin releases. If you have already been using the plugin, you may have forgotten how many features it has that still haven’t made it into core WordPress. This includes significant improvements to group, column, and gallery blocks, Accessibility Navigation mode, the new inserter help panel, “snackbar” notices, and the typewriter experience, to highlight a few big items that have been rolled into 5.3.</p>\n<p>The highly anticipated Twenty Twenty default theme is also available in the beta, which which we will explore in greater detail on WP Tavern this week. Its design is <a href=\"https://wptavern.com/first-look-at-twenty-twenty-new-wordpress-default-theme-based-on-chaplain\" rel=\"noopener noreferrer\" target=\"_blank\">based on the Chaplin theme from Anders Norén</a> and showcases what is possible with the block editor.</p>\n<p>Some of the UI changes introduced in Gutenberg are starting to make their way into other parts of the WordPress admin.</p>\n<p>“These improved styles fix many accessibility issues, improve color contrasts on form fields and buttons, add consistency between editor and admin interfaces, modernize the WordPress color scheme, add better zoom management, and more,” release coordinator Francesca Marano said in the 5.3 beta 1 announcement.</p>\n<p>A few other notable additions to 5.3 that need testing include the following:</p>\n<ul>\n<li>Support for resuming uploads on large file sizes</li>\n<li>Automatic image rotation during upload</li>\n<li>Improvements to Site Health checks</li>\n<li>Time/Date component fixes</li>\n<li>PHP 7.4 Compatibility and removal of deprecated functionality</li>\n</ul>\n<p>If you’re ready to take the beta for a test drive, the easiest way is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noopener noreferrer\" target=\"_blank\">WordPress Beta Tester</a> plugin and select the “bleeding edge nightlies” option. The <a href=\"https://make.wordpress.org/core/5-3/\" rel=\"noopener noreferrer\" target=\"_blank\">official release</a> is targeted for November 12, 2019.</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, 24 Sep 2019 02:56: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: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:102:\"WPTavern: Google Search Console Adds Breadcrumbs Report, Sends Out Warnings for Structured Data 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94132\";s: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:112:\"https://wptavern.com/google-search-console-adds-breadcrumbs-report-sends-out-warnings-for-structured-data-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5150:\"<p>Google recently announced a new Breadcrumbs report available in the Search Console to inform site owners about markup issues. In 2015, Google <a href=\"https://webmasters.googleblog.com/2015/04/better-presentation-of-urls-in-search.html\" rel=\"noopener noreferrer\" target=\"_blank\">introduced support for schema.org structured data</a>, including the breadcrumbs URL structure, in order better present URLs in search results. The Search Console’s new report uses this data to help site owners fix any issues preventing their breadcrumbs from displaying as rich search results.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Great news, we have a new report on Search Console <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4e2.png\" alt=\"?\" class=\"wp-smiley\" /> As of today, if you have Breadcrumb <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f35e.png\" alt=\"?\" class=\"wp-smiley\" /> structured data in your site, you\'ll see a new report under Enhancements (see screenshot). Check if you have errors and get to work! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f6e0.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/b8I4vbJwb9\">pic.twitter.com/b8I4vbJwb9</a></p>\n<p>— Google Webmasters (@googlewmc) <a href=\"https://twitter.com/googlewmc/status/1174693878835875840?ref_src=twsrc%5Etfw\">September 19, 2019</a></p></blockquote>\n<p></p>\n<p>Over the weekend, the console started emailing out notices to those who have errors in the breadcrumb structured data on their sites. It includes how many URLs are affected, along with a link to the new report.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-23-at-9.17.17-AM.png?ssl=1\"><img /></a></p>\n<p>One common error that users are seeing is a “Missing field ‘item,\'” which references one of the properties Google requires for displaying that content as a rich result. The ‘item’ property is the URL to the webpage that represents the breadcrumb, as Google prefers the final crumb to be linked.</p>\n<p>WordPress site owners have started reporting breadcrumb issues in the support forums for various plugins and themes. <a href=\"https://wordpress.org/plugins/breadcrumb-navxt/\">Breadcrumb NavXT</a>, a plugin that is active on 800,000 sites, allows users to generate customizable breadcrumb trails. There are already half a dozen <a href=\"https://wordpress.org/support/plugin/breadcrumb-navxt/\" rel=\"noopener noreferrer\" target=\"_blank\">support threads</a> opened regarding Breadcrumb markup errors listed in the console. Recommendations for fixing this issue vary based on the specific property that is missing and the breadcrumb configuration the user has in place.</p>\n<p>Breadcrumb NavXT plugin author John Havlik has <a href=\"https://wordpress.org/support/topic/missing-field-id-in-breadcrumbs-on-google-search-console/page/2/#post-11958307\" rel=\"noopener noreferrer\" target=\"_blank\">advised</a> some users to remove the schema.org markup for unlinked breadcrumb templates in order to remove the error, although this may not offer the best presentation in search snippets. Others have suggested allowing the %link% tag in the unlinked breadcrumb template and Havlik <a href=\"https://github.com/mtekk/Breadcrumb-NavXT/issues/226\" rel=\"noopener noreferrer\" target=\"_blank\">added this to the 6.4.0 milestone for the plugin</a> over the weekend.</p>\n<p>The <a href=\"https://wordpress.org/plugins/wordpress-seo/\" rel=\"noopener noreferrer\" target=\"_blank\">Yoast SEO</a> plugin also has an option for adding breadcrumbs and multiple users are <a href=\"https://wordpress.org/support/topic/breadcrumbs-missing-field-id-error-in-google-search-sonsole/\" rel=\"noopener noreferrer\" target=\"_blank\">reporting</a> <a href=\"https://wordpress.org/support/topic/google-breadcrumbs-markup-issues/page/2/\" rel=\"noopener noreferrer\" target=\"_blank\">errors</a> in the Google Search Console. Solutions vary, depending on what types of pages are outputting the error, but the most common advice Yoast support team members are offering is to check to see if there is a theme or plugin that is adding conflicting breadcrumb markup.</p>\n<p>There is no easy prescribed fix that will apply to all situations. It depends on how a site owner has configured breadcrumbs through a plugin or if they are automatically generated by a theme.</p>\n<p>If you received a notice from Google Search Console, the first step is to determine whether it’s a theme or a plugin that is generating your breadcrumbs. Next, browse the support forums for the theme/plugin that provides the breadcrumbs and see if the author recommends a fix or is working on one.</p>\n<p>Although breadcrumbs do not currently have a direct affect on rankings, they are prominently displayed in search snippets and generally contribute to a positive user experience. For more information on solving specific errors, check out <a href=\"https://developers.google.com/search/docs/data-types/breadcrumb\" rel=\"noopener noreferrer\" target=\"_blank\">Google’s documentation on Breadcrumb structured data</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, 23 Sep 2019 18:57: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: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:40;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:40:\"WordPress.org blog: WordPress 5.3 Beta 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7114\";s: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/news/2019/09/wordpress-5-3-beta-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9089:\"<p>WordPress 5.3 Beta 1 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong> so we don’t recommend running it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-beta1.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on <a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there. Here are some of the big items to test, so we can find and resolve as many bugs as possible in the coming weeks.</p>\n\n\n\n<h2>Block Editor: features and improvements</h2>\n\n\n\n<p>Twelve releases of the Gutenberg plugin are going to be merged into 5.3 which means there’s a long list of exciting new features. </p>\n\n\n\n<p>Here are just a few of them:</p>\n\n\n\n<ul><li>Group block and grouping interactions</li><li>Columns block improvements (width support + patterns)</li><li>Table block improvements (text alignment support, header/footer support, colors)</li><li>Gallery block improvements (reordering inline, caption support)</li><li>Separator block improvements (color support)</li><li>Latest Posts block improvements (support excerpt, content)</li><li>List block improvements (indent/outdent shortcuts, start value and reverse order support)</li><li>Button block improvements (support target, border radius)</li><li>Animations and micro interactions (moving blocks, dropdowns, and a number of small animations to improve the UX)</li><li>Accessibility Navigation Mode which will allow you to navigate with the keyboard between blocks without going into their content.</li><li>Block Style Variations API</li></ul>\n\n\n\n<p>Plus a number of other improvements, amongst them:</p>\n\n\n\n<ul><li>Data Module API improvements (useSelect/useEffect)</li><li>Inserter Help Panel</li><li>Extensibility: DocumentSettingsPanel</li><li>Snackbar notices</li><li>Typewriter Experience</li><li>Fix a number of Accessibility report issues</li></ul>\n\n\n\n<p>If you want to see all the features for each release, here are direct links to the release posts: <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">6.5</a>, <a href=\"https://make.wordpress.org/core/2019/08/28/whats-new-in-gutenberg-28-august/\">6.4</a>, <a href=\"https://make.wordpress.org/core/2019/08/14/whats-new-in-gutenberg-14-august/\">6.3</a>, <a href=\"https://make.wordpress.org/core/2019/07/31/whats-new-in-gutenberg-31-july/\">6.2</a>, <a href=\"https://make.wordpress.org/core/2019/07/10/whats-new-in-gutenberg-10-july/\">6.1</a>, <a href=\"https://make.wordpress.org/core/2019/06/26/whats-new-in-gutenberg-26th-june/\">6.0</a>, <a href=\"https://make.wordpress.org/core/2019/06/12/whats-new-in-gutenberg-12th-june/\">5.9</a>, <a href=\"https://make.wordpress.org/core/2019/05/29/whats-new-in-gutenberg-29th-may/\">5.8</a>, <a href=\"https://make.wordpress.org/core/2019/05/15/whats-new-in-gutenberg-15th-may/\">5.7</a>, <a href=\"https://make.wordpress.org/core/2019/05/01/whats-new-in-gutenberg-1st-may/\">5.6</a>, <a href=\"https://make.wordpress.org/core/2019/04/17/whats-new-in-gutenberg-17th-april/\">5.5</a>, and <a href=\"https://make.wordpress.org/core/2019/04/03/whats-new-in-gutenberg-3rd-april/\">5.4</a>.</p>\n\n\n\n<h3>Continuous effort on performance</h3>\n\n\n\n<p>The team working on the block editor managed to shave off 1.5 seconds of loading time for a particularly sizeable post (~ 36,000 words, ~ 1,000 blocks) since WordPress 5.2.</p>\n\n\n\n<h2>A new default theme: welcome Twenty Twenty</h2>\n\n\n\n<p>WordPress 5.3 introduces <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>, the latest default theme in our project history. </p>\n\n\n\n<p>This elegant new theme is based on the WordPress theme <a href=\"https://www.andersnoren.se/teman/chaplin-wordpress-theme/\">Chaplin</a> which was released on the WordPress.org theme directory earlier this summer. </p>\n\n\n\n<p>It includes full support for the block editor, empowering users to find the right design for their message.</p>\n\n\n\n<h2>Wait! There is more</h2>\n\n\n\n<p>5.3 is going to be a rich release with the inclusion of numerous enhancements to interactions and the interface.</p>\n\n\n\n<h2>Admin interface enhancements</h2>\n\n\n\n<p>Design and Accessibility teams worked together to port some parts of Gutenberg styles into the whole wp-admin interface. Both teams are going to iterate on these changes during the 5.3 beta cycle. These improved styles fix many accessibility issues, improve color contrasts on form fields and buttons, add consistency between editor and admin interfaces, modernize the WordPress color scheme, add better zoom management, and more.</p>\n\n\n\n<h3>Big Images are coming to WordPress</h3>\n\n\n\n<p>Uploading non-optimized, high-resolution pictures from your smartphone isn’t a problem anymore. WordPress now supports resuming uploads when they fail as well as larger default image sizes. That way pictures you add from the block editor look their best no matter how people get to your site.</p>\n\n\n\n<h3>Automatic image rotation during upload</h3>\n\n\n\n<p>Your images will be correctly rotated upon upload according to the EXIF orientation. This feature was first proposed nine years ago. Never give up on your dreams to see your fixes land in WordPress!</p>\n\n\n\n<h3>Site Health Checks</h3>\n\n\n\n<p>The improvements introduced in 5.3 make it easier to identify and understand areas that may need troubleshooting on your site from the Tools -> Health Check screen.</p>\n\n\n\n<h3>Admin Email Verification</h3>\n\n\n\n<p>You’ll now be periodically asked to check that your admin email address is up to date when you log in as an administrator. This reduces the chance that you’ll get locked out of your site if you change your email address.</p>\n\n\n\n<h2>For Developers</h2>\n\n\n\n<h3>Time/Date component fixes</h3>\n\n\n\n<p>Developers can now work with <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.</p>\n\n\n\n<h3>PHP 7.4 Compatibility</h3>\n\n\n\n<p>The WordPress core team is actively preparing to support PHP 7.4 when it is released later this year. WordPress 5.3 contains <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=assigned&status=closed&status=new&status=reopened&status=reviewing&keywords=~php74&milestone=5.3&order=priority\">multiple changes</a> to remove deprecated functionality and ensure compatibility. Please test this beta release with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings. </p>\n\n\n\n<h3>Other Changes for Developers</h3>\n\n\n\n<ul><li>Multisite<ul><li>Filter sites by status<ul><li><a href=\"https://core.trac.wordpress.org/ticket/37392\">https://core.trac.wordpress.org/ticket/37392</a> </li><li><a href=\"https://core.trac.wordpress.org/ticket/37684\">https://core.trac.wordpress.org/ticket/37684</a> </li></ul></li><li>Save database version in site meta<ul><li><a href=\"https://core.trac.wordpress.org/ticket/41685\">https://core.trac.wordpress.org/ticket/41685</a> </li></ul></li></ul></li><li>Code modernization and PHP 7.4 support<ul><li><a href=\"https://core.trac.wordpress.org/ticket/47678\">https://core.trac.wordpress.org/ticket/47678</a> </li><li><a href=\"https://core.trac.wordpress.org/ticket/47783\">https://core.trac.wordpress.org/ticket/47783</a></li></ul></li><li>Toggle password view<ul><li><a href=\"https://core.trac.wordpress.org/ticket/42888\">https://core.trac.wordpress.org/ticket/42888</a></li></ul></li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for more <a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">5.3 related developer notes</a> in the coming weeks detailing other changes that you should be aware of.</p>\n\n\n\n<h2>What’s next</h2>\n\n\n\n<p>There have been over 400 tickets fixed in WordPress 5.3 so far with numerous bug fixes and improvements to help smooth your WordPress experience.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a> where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.<br /></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, 23 Sep 2019 18:36: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:16:\"Francesca Marano\";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:41;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:43:\"WPTavern: WPHelpful: A User Feedback 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94129\";s: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://wptavern.com/wphelpful-a-user-feedback-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7082:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/wphelpful/\">WPHelpful</a> is a plugin created by Zack Gilbert and Paul Jarvis that allows users to rate the helpfulness of a post. It can be a useful addition to sites that offer tutorials, lessons, documentation, or any content where user feedback is warranted. Version 1.0 is available for free in the official WordPress plugin directory, but it also has a <a href=\"https://wphelpful.com/\">pro version</a> that offers additional features.</p>\n\n\n\n<p>I enjoyed giving this plugin a test drive. As a former business owner, I could see where this plugin would’ve helped me gather feedback from my customers on product documentation and better catered to their needs.</p>\n\n\n\n<p>WPHelpful has huge potential, but its version 1.0 is still a 1.0. It’s far from being a polished product at this stage. It needs time to mature as a good free plugin. The current batch of pro features should have made the cut for the free version.</p>\n\n\n\n<p>The free plugin available in the plugin directory won’t get you far unless you just need a basic rating system. It is limited to:</p>\n\n\n\n<ul><li>Showing the feedback form on posts and pages.</li><li>Changing the colors for the form button.</li><li>Adding custom CSS (a feature already available on all WP sites via the customizer).</li></ul>\n\n\n\n<p>All other features and settings are available in the pro version. Unless your goal is to simply allow user ratings on posts or pages, you can’t do much with a free copy. There are existing plugins with a more mature codebase for handling basic ratings.</p>\n\n\n\n<p>One of the most notable aspects of the free version is that it allows you to test the pro settings in a development environment. This provides an opportunity to decide if you want to shell out the money to go pro. I am now officially recommending that every other plugin developer do this when possible.</p>\n\n\n\n<h2>What the Plugin Gets Right</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The plugin is simple to use. You can choose to automatically append the form to posts on the front end or opt to display the form with the <code>[wphelpful]</code> shortcode.</p>\n\n\n\n<p>If nothing else, users shouldn’t have any problems getting the plugin up and running. I tested it against a variety of themes with solid results.</p>\n\n\n\n<p>A custom [Gutenberg] block would’ve kicked user-friendliness up a notch. Plugin authors need to start thinking in terms of building a block first and a shortcode second. I’m hoping this makes the feature list for version 2.0.</p>\n\n\n\n<h2>Post Types: Paywall for the Most Useful Feature</h2>\n\n\n\n<p>The most important feature for this plugin is the ability to select which post types the feedback form can be used on. Unfortunately, this feature is behind a paywall, limiting user feedback to only posts and pages. This is a foundational feature that would be nicer in the free version.</p>\n\n\n\n<p>The post type feature is also limited in the pro setting. In 1.0, you cannot pick post types individually. The drop-down field limits you to a single post type, all post types, or pages plus all custom types. There’s no way to select two different custom post types.</p>\n\n\n\n<p>The plugin doesn’t use the proper post type label, so you may get some weird labels like “Wp Area Types” (from the Gutenberg plugin) or “Jt Documentation Types” (a custom post type on my test install).</p>\n\n\n\n<p>Non-public post types also show up in the list. So, post types that don’t have front-end output show up in the select form.</p>\n\n\n\n<p>These issues are easy fixes, and I’m hoping this review sheds light onto these problems so they might be corrected for users.</p>\n\n\n\n<h2>How the Plugin Could Offer Better Pro Features</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Screenshot of the current post feedback report.</div>\n\n\n\n<p>Plugin authors need to eat. There’s always a delicate balance that developers must strike between offering a useful free plugin and making enough of a return on their investment to continue maintaining the code.</p>\n\n\n\n<p>Currently, most of the plugin’s pro features are basic items like custom colors and form labels. These are things that would better serve users in the free version.</p>\n\n\n\n<p>A more useful pro feature would be a “Reports” screen in the admin that offered options such as:</p>\n\n\n\n<ul><li>Sorting posts by rating and total ratings.</li><li>Displaying a graph of user feedback by month, year, etc.</li><li>Other reports that provided an overall look at feedback.</li></ul>\n\n\n\n<p>The plugin also only allows logged-in users to provide feedback. That’s certainly an easier way to go to avoid spammers and bots. Due to the added complexity, a pro extension for enabling any site visitor to provide feedback would be worth exploring.</p>\n\n\n\n<h2>How Does the Code Stack Up?</h2>\n\n\n\n<p>I’m going to get a bit technical here. Feel free to skip ahead if programming is not your thing.</p>\n\n\n\n<p>What the plugin needs is time to mature. Version 1.0 is not supposed to be the best a plugin can be. It’s about shipping a minimum viable product, so I’m a bit forgiving. If this were 2.0 or 3.0, I’d be unrelenting.</p>\n\n\n\n<p>There’s a lot to like about the architectural decisions. Much of it is set up in a way that it should be relatively easy to maintain in the long term. This is important because it means that correcting issues, such as those listed below, shouldn’t be tough to fix.</p>\n\n\n\n<p>There are code issues that need patches. The plugin currently:</p>\n\n\n\n<ul><li>Uses a PHP variable for textdomains (not all translation tools run in a PHP environment).</li><li>Hasn’t internationalized all of its user-facing text, so not everything can be translated.</li><li>Registers multiple options in the database instead of storing all options together, which creates unnecessary clutter.</li><li>Doesn’t clean up after itself and delete its options upon uninstall.</li></ul>\n\n\n\n<p>These are not insurmountable issues, and they don’t break anything to the point of making the plugin unusable. They’re just issues that need to be addressed.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>Version 1.0 of WPHelpful lacks the feature set to be a particularly great free plugin. It could be useful in some limited cases. However, you’ll probably want to opt for the pro version to get the features that would make this plugin worth using.</p>\n\n\n\n<p>WPHelpful has potential. I could see it growing an audience of 100K, 500K, or more users over time with more polishing. It’s not there yet. The plugin doesn’t have enough meat on its bones for me to recommend it yet, but I’m hopeful that future versions will offer a more robust experience.</p>\n\n\n\n<p>If you’re looking for an easy-to-use free plugin that works with just posts and pages, it could serve your needs.</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, 23 Sep 2019 18:01:43 +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:14:\"Justin Tadlock\";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:42;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:70:\"WPTavern: GitHub Adds Dependency Graphs, Security Alerts for PHP Repos\";s: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:29:\"https://wptavern.com/?p=94088\";s: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:\"https://wptavern.com/github-adds-dependency-graphs-security-alerts-for-php-repos\";s: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:4157:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>PHP developers everywhere can rejoice as GitHub adds the long-awaited <a href=\"https://github.blog/2019-09-18-dependency-graph-supports-php-repos-with-composer-dependencies/\">dependency graphs feature for PHP repositories</a> that use Composer. The feature provides security alerts, shows dependency insights, and displays the dependents of a given repository. If enabled, it can also automatically send security fixes to the repository via pull requests.</p>\n\n\n\n<p>GitHub initially added support for JavaScript and Ruby when <a href=\"https://github.blog/2017-11-16-introducing-security-alerts-on-github/\">rolling out dependency graphs in 2017</a>. They added <a href=\"https://github.blog/2019-07-02-yarn-support-for-security-alerts/\">support for Yarn lock files</a> in July of this year. This has been a boon to the JavaScript community as it alerts developers of vulnerabilities in code they’re using and shipping to users.</p>\n\n\n\n<p>“We’re also seeing PHP and Composer grow in popularity–PHP is the fourth most popular language on GitHub and Composer is the fourth most starred PHP project,” wrote Justin Hutchings, Senior Product Manager at GitHub. The company has taken notice of the trends. JavaScript is a hot topic in many developer circles today, but PHP frameworks such as Laravel and Symfony continue growing in popularity and dominate among <a href=\"https://github.com/topics/php\">popular PHP repositories</a>.</p>\n\n\n\n<p>Composer is the <em>de facto</em> standard for PHP dependency management. Core WordPress first <a href=\"https://core.trac.wordpress.org/ticket/43558\">added Composer support</a> for development environments in version 5.1. While it’s not a part of the release package, this was some small victory after a <a href=\"https://core.trac.wordpress.org/ticket/23912\">years-long discussion</a> of adding a basic <code>composer.json</code> file to core. Core hasn’t fully embraced Composer or any type of PHP dependency management, but plugin and theme authors are using it more than a few short years ago. The new alerts and automatic pull requests will offer one more avenue for catching security issues with plugins and themes.</p>\n\n\n\n<p>GitHub seems to be rolling this feature out in waves. After checking some repositories with dependency graphs enabled, some still do not have their PHP dependencies listed. It may take some time, but developers should start seeing dependencies appear that are listed in their <code>composer.json</code> or <code>composer.lock</code> files.</p>\n\n\n\n<p>Public repositories should begin seeing automatic security alerts when an issue is found. GitHub will start notifying repository owners of these alerts via web notifications or email, depending on what the account holder has set as their preference. Developers with private repos or who have disabled dependency graphs will need to enable them to take advantage of the new feature.</p>\n\n\n\n<p>Security alerts on old repositories could become an annoyance. GitHub recommends archiving those repos. “Archived repositories send a signal to the rest of the community that they aren’t maintained and don’t receive security alerts,” explained Hutchings.</p>\n\n\n\n<p>Developers who have opted into GitHub’s <a href=\"https://help.github.com/en/articles/configuring-automated-security-fixes\">automatic security fixes beta</a> feature can now enjoy automatic pull requests (PRs) from GitHub when vulnerabilities are found. GitHub creates a PR with the minimum possible secure version. The developer can then merge the PR at their discretion.</p>\n\n\n\n<p>Dependency graphs also make for a much nicer experience when browsing a repository’s dependencies. Previously, developers would need to dive into a project’s <code>composer.json</code> or view them from Packagist, the official package directory for Composer. Developers can now click on a link to view a dependent repository.</p>\n\n\n\n<p>Rolling this feature out for PHP repos is a welcome addition and should help more projects keep their code secure.</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, 20 Sep 2019 17:45: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:43;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:\"BuddyPress: A new place to learn how to build on top of BuddyPress!\";s: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://buddypress.org/?p=307844\";s: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://buddypress.org/2019/09/bp-devhub-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4575:\"<p>Hi!</p>\n\n\n\n<p>We’re very excited to officially announce the launch of a new development resources site on the BuddyPress.org network.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://developer.buddypress.org/\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-landing-page-1024x652.png\" alt=\"\" class=\"wp-image-307848\" /></a></div>\n\n\n\n<p>Today we are inaugurating <strong><a href=\"https://developer.buddypress.org/\">developer.buddypress.org</a></strong> with a complete <a href=\"https://developer.buddypress.org/bp-rest-api/\">handbook documenting the BP REST API</a>. This API will be introduced into our next major version which is scheduled on September 30, 2019. We thought you’d be interested to have a tool to help you discover the BuddyPress REST endpoints and their parameters to start playing with them (You’ll need <a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-release-candidate/\">BuddyPress 5.0.0-RC1</a> to have even more fun with it!).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 id=\"rest-api-handbook\">Using the BP REST API Handbook</h2>\n\n\n\n<p>The main part of the handbook is the « Developer Endpoint Reference ». We grouped these endpoints according to the component they belongs to.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-02-911x1024.png\" alt=\"\" class=\"wp-image-307845\" /><a rel=\"noreferrer noopener\" href=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-02.png\" target=\"_blank\">View the full screenshot in a new tab.</a></div>\n\n\n\n<p>Each page of the reference is firstly introducing the component and describing the data schema of items contained into the REST responses. Then for each verb (or method), you’ll find the available arguments, their definition and an example of use with the <code><a href=\"https://bpdevel.wordpress.com/2019/09/12/let-us-start-using-the-bp-rest-api/\">bp.apiRequest()</a></code> JavaScript function. Below is a screenshot of the method to get a specific Activity.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://developer.buddypress.org/bp-rest-api/reference/activity/#retrieve-a-specific-activity\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/bpdevhub-verb-example.png\" alt=\"\" class=\"wp-image-307851\" /></a></div>\n\n\n\n<h2>The future of this development resources hub</h2>\n\n\n\n<p>You can have a good idea of what’s coming next into this developer oriented site looking at its current landing page. We will first work on building the full <a href=\"https://buddypress.trac.wordpress.org/ticket/6812\">PHP Code Reference for BuddyPress</a>: functions, classes and hooks.<br /></p>\n\n\n\n<p>Then, we haven’t planned anything yet <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/263a.png\" alt=\"☺\" class=\"wp-smiley\" /> and we’re very opened to ideas and of course contributions about the « how » step and the « do » one.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>About the editing workflow</h2>\n\n\n\n<p>Unlike the BuddyPress Codex, it’s not possible for everyone to directly edit the content of the BP REST API Handbook or the future PHP Code Reference.</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://buddypress.trac.wordpress.org/newticket\"><img src=\"https://buddypress.org/wp-content/uploads/1/2019/09/new-ticket.png\" alt=\"\" class=\"wp-image-307857\" /></a></div>\n\n\n\n<p>But you can always report issues or suggest improvements using our <a href=\"https://buddypress.trac.wordpress.org\">Bug Tracker</a> making sure to select the « <strong>BuddyPress.org sites</strong> » option of the components dropdown of your ticket.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Props</h2>\n\n\n\n<p>The first version of the development resources hub was built thanks to the involvement of these contributors:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone B Gorges (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet (imath)</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith (tw2113)</a>, <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar (netweb)</a>.</p>\n\n\n\n<p>Many thanks to them <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></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, 20 Sep 2019 14:47: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"imath\";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:44;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:94:\"Post Status: Salesforce Ventures invests $300 million in Automattic, at a $3 billion valuation\";s: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=68901\";s: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://poststatus.com/salesforce-ventures-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:6125:\"<p>Salesforce Ventures is the investment arm of Salesforce. Prior to this investment in <a href=\"https://automattic.com/\">Automattic</a>, Salesforce Ventures had <a href=\"https://www.salesforce.com/company/ventures/funds/\">announced</a> $875 million raised across 11 fund initiatives — but none that amounts to $300 million. Previosuly, each fund has been between $50 to $125 million spread across several <a href=\"https://www.crunchbase.com/organization/salesforce-ventures/investments/investments_list\">investments</a>.</p>\n\n\n\n<p>I believe <a href=\"https://www.salesforce.com/company/ventures/\">Salesforce Ventures</a> called up funds specifically for this strategic investment in Automattic, which would likely put their total dollars invested (or committed to existing funds) well beyond $1 billion, and the $300 million into Automattic would be their largest investment to date, to my knowledge.</p>\n\n\n\n<p>Salesforce Ventures states on their website that they are exclusively seeking investments in “enterprise cloud” companies. In Automattic Founder and CEO Matt Mullenweg’s <a href=\"https://ma.tt/2019/09/series-d/\">announcement</a> about the funding, he specifically noted how Salesforce CEO Marc Benioff, “helped open my eyes to the incredible traction WordPress <a href=\"https://wpvip.com/\">and WP VIP</a> has seen in the enterprise market, and how much potential there still is there.” I am curious to see how Automattic changes their approach to VIP in particular, in light of this.</p>\n\n\n\n<p>$300 million is a lot of money. Salesforce is joining Insight Venture Partners, Tiger Global, and True Ventures as primary outside investors in Automattic. </p>\n\n\n\n<p>Given that Salesforce was the lead and only investor here, they now own a significant stake in Automattic — and it will be interesting to see what kind of confluence that enables between the two companies. Automattic CEO Matt Mullenweg tells me, “Automattic has been a long-time customer of Salesforce’s products, and we think there are lots of opportunities for closer integration.”</p>\n\n\n\n<p>Since Automattic recently acquired Tumblr and brought on a few hundred new employees from it, it’s natural to think the new fundraising is related. I asked Matt about that, and he said it was unrelated in terms of financial justification, but they did, “disclose the Tumblr transaction to Salesforce during [their] discussions.”</p>\n\n\n\n<p>Automattic hasn’t raised money since 2014, and it seems like this round is similar to prior ones, wherein the money helps spur their growth plans along but that they are operationally profitable — or close to it. Matt <a href=\"https://techcrunch.com/2019/09/19/automattic-raises-300-million-at-3-billion-valuation-from-salesforce-ventures/\">told Techcrunch</a>, “The roadmap is the same. I just think we might be able to do it in five years instead of ten.”</p>\n\n\n\n<p>Matt called the investment proof of Salesforce’s own “tremendous vote of confidence for Automattic and for the open web.” Salesforce does have some history of supporting <a href=\"https://opensource.salesforce.com/\">open source projects</a>, although that shouldn’t be equated to an investment in Automattic as a company; it is a vote of confidence for companies that rely on open-source platforms as a part of their line of business.</p>\n\n\n\n<p>Automattic is the single most significant contributor to WordPress and related open-source projects. It also relies on open-source software for its product development — particularly Jetpack and WooCommerce — and features like Gutenberg as the core experience for writing and site-building. How that blend of open source software and business development plays out, in the long run, is certainly of high interest to the open-source community.</p>\n\n\n\n<p>I have long discussed on various platforms how I think there are a handful of companies that are big enough to acquire Automattic someday. I still think Automattic is more likely to go public at some point, but if they are acquired, Salesforce is definitely one of those few with the resources to make it happen, and perhaps the operational congruence as well.</p>\n\n\n\n<p>Reaching a $3 billion valuation is an amazing feat that Automattic has achieved. Matt has said before that he believes each of their primary lines of business — WordPress.com, WooCommerce, and Jetpack — can be multi-billion dollar opportunities. I agree with him, particularly for WooCommerce. I think there’s a good chance WooCommerce will end up several times more valuable than all their other lines of business combined. <span class=\"pullquote alignleft\">I would love to see these new funds be funnelled into the incredible opportunity in the eCommerce landscape; one only needs to look at what Shopify has done to see what’s possible, and just how successful it can be.</span> </p>\n\n\n\n<p>I asked Matt why he was attracted to an investment from Salesforce’s VC arm, rather than an investment-only style firm. He said, “I love Salesforce’s philosophy, how they cultivate such a fantastic community, how they support progressive policies in San Francisco and the other cities they operate in, how they’ve been founder-led, their scale, their leadership, and their longevity in defining an entirely new class of software and being the most significant player in it.”</p>\n\n\n\n<p>I love the point about Salesforce defining a class of software — and I have realized recently just how huge their developer community is — so I really appreciate this comment from Matt. Making commercial and SaaS software is a well-established business now. Automattic is in a unique position as the most powerful player in an <em>open</em> ecosystem proud of its independence. This provides many unique opportunities for Automattic the business and unique challenges for Automattic the WordPress community member.</p>\n\n\n\n<p><em>Image credit: <a href=\"https://ma.tt/2019/09/series-d/\">Matt Mullenweg</a>, whose blog I brazenly stole it from.</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, 19 Sep 2019 23:05: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: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:45;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:102:\"WPTavern: WordPress Community Contributors to Host Free Online Diversity Workshop Ahead of WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=93735\";s: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:113:\"https://wptavern.com/wordpress-community-contributors-to-host-free-online-diversity-workshop-ahead-of-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5663:\"<p>WordCamp US will <a href=\"https://2019.us.wordcamp.org/2019/08/08/wordcamp-us-debuts-community-track/\" rel=\"noopener noreferrer\" target=\"_blank\">debut a new Community Track</a> in November that will feature sessions and workshops on topics like meetups, WordCamps, diversity and inclusion, and kids/youth. Jill Binder, Allie Nimmons, Aurooba Ahmed, and David Wolfpaw will be hosting a workshop called “Creating a Welcoming and Diverse Space” at the event. In order to adequately prepare for presenting on this sensitive topic, the team will be <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\" rel=\"noopener noreferrer\" target=\"_blank\">running the workshop in a live, interactive Zoom call on Sunday, October 6</a>.</p>\n<p>In light of the recent news about <a href=\"https://wptavern.com/php-central-europe-conference-canceled-due-to-lack-of-speaker-diversity\" rel=\"noopener noreferrer\" target=\"_blank\">a central European PHP conference getting canceled due to a lack of a diverse lineup</a>, the broader PHP community is becoming more conscious of the importance of recruiting speakers that better represent their communities.</p>\n<p>“The <a href=\"https://tiny.cc/wpdiversity\" rel=\"noopener noreferrer\" target=\"_blank\">Diverse Speaker Workshops</a> that I’m running in WordPress and am <a href=\"https://diversein.tech/\" rel=\"noopener noreferrer\" target=\"_blank\">bringing to other technologies</a> have been just as important for years as they are now,” training leader <a href=\"https://diversein.tech\" rel=\"noopener noreferrer\" target=\"_blank\">Jill Binder</a> said. “These workshops are an essential piece to the whole puzzle for creating diverse communities, attendance at events, public speakers, and ultimately, leaders and organizers.”</p>\n<p>Binder said there are many factors in society that work against having diversity in a tech event’s public speaker lineup, but one that her team is specifically tackling in these workshops is <a href=\"https://en.wikipedia.org/wiki/Impostor_syndrome\" rel=\"noopener noreferrer\" target=\"_blank\">imposter syndrome</a>.</p>\n<p>“Our workshops help folks bust through their impostor syndrome and develop a topic, title, pitch, bio, and outline, more confidence in public speaking, and the motivation to start speaking,” Binder said.</p>\n<p>“The new workshop that Allie, Aurooba, David, and I are creating for WordCamp US on ‘Creating a Welcoming and Diverse Space’ is another important piece to the puzzle. We are going to be teaching mindset, community, environment, speakers, and allyship. It will be an interactive workshop where people will walk away with an action list they can start implementing in their communities (whether in person or online) right away.”</p>\n<p>Some organizers of tech events have claimed that for certain events it is impossible to create a diverse lineup of speakers due to the demographics of the community and lack of willing participants.</p>\n<p>Binder said that in her experience it is unlikely that more diverse people are unwilling to speak but rather that the event is not being created with more kinds of people in mind. She offered a few suggestions for organizers to consider in planning ahead for a welcoming and diverse space:</p>\n<ul>\n<li>Have the event at different times that work for people with families. For example, don’t hold them all at 9pm at night. Weekend afternoons may work. Ask those with children what works for them.</li>\n<li>Consider venues that are not centered around alcohol (like bars and pubs). This opens up the event to attendees who are under 21, recovering addicts, folks who belong to a religious group that prohibits alcohol, and many other people who don’t feel safe or welcome in an alcohol-focused environment.</li>\n<li>Choose venues that have accessible alternatives to stairs, such as elevators and ramps.</li>\n<li>Try to have more diversity in the organizing team.</li>\n<li>Bring in more diverse speakers. Don’t know how? Check out the Diverse Speaker Workshop – <a href=\"https://tiny.cc/wpdiversity\" rel=\"noopener noreferrer\" target=\"_blank\">in WordPress</a> and in <a href=\"https://diversein.tech/\" rel=\"noopener noreferrer\" target=\"_blank\">other techs communities.</a></li>\n</ul>\n<p>She also recommends organizers directly invite more people into their communities.</p>\n<p>“Ask people in your network to introduce you to diverse people they may know who work with WordPress or your technology,” Binder said. “You can even go out and find those communities in your area – online and in person – or ask people to make an introduction for you to those groups. Examples of groups: Ladies Learning Code, Black Girls Code. Form genuine, friendly relationships with community members so that they can help you reach the WordPress enthusiasts in their communities.”</p>\n<p>Binder said the team will go into more detail on these topics during the workshop. Anyone who would like to learn more is welcome to attend the online public rehearsal for the workshop on October 6, at 3pm-5pm ET. This is a unique opportunity for those who cannot attend WordCamp US to join in on one of the interactive workshops. <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\" rel=\"noopener noreferrer\" target=\"_blank\">Comment on the Community team’s post</a> with contact information and workshop leaders will send the zoom link and more information.</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, 19 Sep 2019 22:14:48 +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:46;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:47:\"WPTavern: Bayleaf: A Food and Recipe Blog Theme\";s: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:29:\"https://wptavern.com/?p=94041\";s: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://wptavern.com/bayleaf-a-food-and-recipe-blog-theme\";s: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:5971:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>With the WordPress theme directory dominated by business-oriented themes, it’s sometimes tough to find themes that cater to more specific user groups. If you dig deep enough, you’ll find something outside the norm. <a href=\"https://wordpress.org/themes/bayleaf/\">Bayleaf</a> is a blog theme specifically designed for sharing food and recipes. </p>\n\n\n\n<p>The theme is designed and developed by <a href=\"https://vedathemes.com/\">Vedathemes</a>. They currently have three themes in the theme directory, which follow the same clean design trend of Bayleaf.</p>\n\n\n\n<p>Food-related themes excite me. In my off-time, I’m often browsing recipe blogs and looking for my next culinary experiment. The problem with many such sites is their designs have too much noise instead of just showcasing the content visitors are looking for. I was pleasantly surprised at the minimalist and open approach in the <a href=\"https://vedathemes.com/bayleaf-pro/\">Bayleaf demo</a>.</p>\n\n\n\n<p><em>Admittedly, I was drawn in by all the yummy food pics.</em></p>\n\n\n\n<p>The theme author has obviously taken a look at the food blogs and built a design that showcases what’s possible without adding complexity. The related posts feature is also a nice extra for site visitors who’ll likely look for related recipes.</p>\n\n\n\n<p>Bayleaf combines the Poppins and Montserrat font families to create bold headers that are complimented by readable body copy. The theme comes with options for displaying a sidebar on single posts or pages, but I’d recommend opting out. The design works best without a sidebar, allowing more breathing room for sharing food images.</p>\n\n\n\n<p>The theme is slowly building an audience since its release in February. It currently has 1,000+ installs and a five-star rating from six reviews in the theme directory.</p>\n\n\n\n<h2>Create a Unique Look with the Display Posts Widget</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Bayleaf’s most prominent custom feature is its Display Posts widget. By placing this widget in the Homepage Above Content or Homepage Below Content sidebar, users have a ton of variety with how their site looks. No two homepages need look alike.</p>\n\n\n\n<p>The widget comes with six list, grid, and slider styles to choose from. It supports custom post types and taxonomies, so users can use it for content such as events, products, or anything else they want to showcase.</p>\n\n\n\n<p>My first thought when viewing the demo was, <em>Not another complicated slider with a hard-to-configure customizer experience.</em> While I’m not usually a fan of sliders, configuring this one was easy. Plus, the grid and list styles offered alternative options.</p>\n\n\n\n<p>A lot of themes overdo features like this, offering a clunky experience within the customizer. However, Bayleaf keeps it simple by packaging the feature as a widget with just enough variety to cover most use cases.</p>\n\n\n\n<p>My one complaint with the Display Posts widget is that it was hard to find at first. At this point, it should be standard practice to prefix custom widgets with the theme name. “Bayleaf: Display Posts” would’ve been far easier to pick from the widget lineup.</p>\n\n\n\n<h2>Handling Block Editor Support</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>I tested Bayleaf against the latest public release of the Gutenberg plugin. The theme is not without a few problems, which is par for the course with most themes supporting the block editor. The Gutenberg plugin’s development is fast-paced, and it’s tough for theme authors to keep up. Something that works one week could break the next.</p>\n\n\n\n<p>The theme takes a minimalist approach with regards to the editor, allowing the default editor styles to handle much of the layout. With the break-neck pace of change, this can sometimes be a better approach than attempting to manage every style.</p>\n\n\n\n<p>There are areas where Bayleaf could be more opinionated. For example, the alignment and typography for the post title aren’t a one-to-one match between the editor and front end. The content width is wider on the front end than the editor, which means the number of characters per line doesn’t match. There are several minor items where the block editor overrules theme styles.</p>\n\n\n\n<p>The theme doesn’t offer a 100% WYSIWYG experience, but it’s close enough at this stage and doesn’t break anything. Most issues are trivial and will simply take some adjustment time, assuming Gutenberg development settles a bit.</p>\n\n\n\n<h2>How Does the Code Stand Up?</h2>\n\n\n\n<p>Bayleaf isn’t pushing any boundaries, but it’s solid in comparison to the average theme. It’s based on the Underscores starter, which serves as the <em>de facto</em> standard for many themes in the official directory.</p>\n\n\n\n<p>The theme doesn’t have a ton of custom code, so there are few places it could go wrong.</p>\n\n\n\n<p>Like all themes in the official directory, it undergoes a rigorous review process. It’s <a href=\"https://themes.trac.wordpress.org/query?keywords=~theme-bayleaf\">Trac history</a> doesn’t show anything worrisome. Vedathemes seems to have a good grasp of building themes that meet the official theme review standards.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>You won’t find a boatload of options in Bayleaf. What you will find is a clean design that gets out of the way but with enough features to have fun tinkering around on your blog for a couple of hours. The Display Posts widget can get you pretty far with little work.</p>\n\n\n\n<p>If you’re looking for a change to your food or recipe blog, you can’t go wrong giving this theme a run. </p>\n\n\n\n<p>The theme could also be used for other types of sites. There are no specific features that limit its use to only food blogging.</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, 19 Sep 2019 18:49: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";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:47;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: Automattic Raises $300M in Series D Investment Round, Valuation Jumps to $3 Billion\";s: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:29:\"https://wptavern.com/?p=94026\";s: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:101:\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\";s: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:6254:\"<p><a href=\"https://automattic.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Automattic</a> announced another round of funding today, a $300 million Series D investment from <a href=\"https://www.salesforce.com/company/ventures/\" rel=\"noopener noreferrer\" target=\"_blank\">Salesforce Ventures</a>, giving the company a $3 billion valuation post-funding. The last time Automattic raised money was $160 million in a Series C round in 2014. Since that time the company has grown to more than 950 employees and made strategic acquisitions, including <a href=\"https://wptavern.com/automattic-acquires-woocommerce\" rel=\"noopener noreferrer\" target=\"_blank\">WooCommerce</a> in 2015 and <a href=\"https://wptavern.com/automattic-acquires-tumblr-plans-to-rebuild-the-backend-powered-by-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">Tumblr</a> (closing in 2019).</p>\n<p>CEO Matt Mulleneweg <a href=\"https://ma.tt/2019/09/series-d/\" rel=\"noopener noreferrer\" target=\"_blank\">said</a> the funds will enable the company to speed up and scale its product development, as well as continue the company’s continual contributions to WordPress:</p>\n<blockquote><p>For Automattic, the funding will allow us to accelerate our roadmap (perhaps by double) and scale up our existing products—including WordPress.com, WordPress VIP, WooCommerce, Jetpack, and (in a few days when it closes) Tumblr. It will also allow us to increase investing our time and energy into the future of the open source WordPress and Gutenberg.</p></blockquote>\n<p>In 2016, Mullenweg <a href=\"https://wptavern.com/woocommerce-powers-42-of-all-online-stores\" rel=\"noopener noreferrer\" target=\"_blank\">identified both Jetpack and WooCommerce as “multi-billion dollar opportunities”</a> that could each be larger than WordPress.com in the future. Jetpack has grown from 1+ million users in 2016 to more than 5 million today. The plugin’s product team has aggressively expanded its commercial plans and features and is one of the first to experiment with offering <a href=\"https://wptavern.com/jetpack-7-6-improves-amp-compatibility-adds-preview-and-upgrade-nudge-for-blocks-only-available-on-paid-plans\" rel=\"noopener noreferrer\" target=\"_blank\">previews and commercial upgrade nudges for blocks in WordPress’ editor</a>.</p>\n<p>WooCommerce has also grown to more than 5 million active installs (from 1+ million in 2015 at the time of acquisition). The e-commerce platform has a more challenging market with formidable competitors like Shopify, which recently <a href=\"https://observer.com/2019/09/shopify-ebay-amazon-ecommerce-growth/\" rel=\"noopener noreferrer\" target=\"_blank\">overtook eBay as the second largest shopping site after Amazon</a>. Shopify <a href=\"https://investors.shopify.com/Investor-News-Details/2019/Shopify-Announces-Second-Quarter-2019-Financial-Results/default.aspx\" rel=\"noopener noreferrer\" target=\"_blank\">reported $362 million in revenue</a> during its last quarter with $153 million coming from subscriptions to the Shopify platform.</p>\n<p>I asked Mullenweg about how the funding might help Automattic make WooCommerce more user-friendly and competitive. Despite going up against the seemingly indomitable e-commerce powerhouses, Mullenweg sees WooCommerce’s platform an opportunity for growing independent stores on the web.</p>\n<p>“WooCommerce already represents the best way to marry content and commerce, and has a huge advantage being so tightly integrated from a user perspective with WordPress itself,” Mullenweg said. “However it also inherits some of the barriers WordPress has to adoption, particularly from new users. I think that Gutenberg will help a ton, as it’s better than any of the builders the eCommerce players have, and when that gets combined with the flexibility, control, and scalability you get from WP + WooCommerce it’s going to be huge. There’s a ton of work left to do, though, and we’re trying to grow that team as quickly as possible to keep up with the opportunity.”</p>\n<p>Mullenweg declined to share any information about Jetpack and WooCommerce’s revenue today but confirmed that they have not yet eclipsed WordPress.com.</p>\n<p>“What I can say is that WP.com is still our biggest business, and WooCommerce was our fastest growing last year,” he said.</p>\n<p>Automattic’s most recent round of funding will help the company better monetize these products that have grown in tandem with WordPress’ market share, which W3Techs puts at <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" rel=\"noopener noreferrer\" target=\"_blank\">34.5%</a> of the top 10 million websites. Independent stores sitting on top of this large chunk of the web represent a significant market that Automattic is currently dominating in the WordPress space.</p>\n<p>The Tumblr acquisition also affords another opportunity to introduce e-commerce solutions to more of Automattic’s customers. Mullenweg previously said the Tumblr app receives 20X more daily signups than the WordPress mobile app. The social network/blogging hybrid also has a significantly younger user base, based on <a href=\"https://weareflint.co.uk/main-findings-social-media-demographics-uk-usa-2018\" rel=\"noopener noreferrer\" target=\"_blank\">a 2018 study</a> that found 43 percent of internet users between the ages of 18 to 24 years old used Tumblr. It’s an untapped market for e-commerce, as Tumblr users who want to sell currently have to use a service like Shopify or Ecwid and generate a Tumblr-compatible widget.</p>\n<p>Mullenweg said the acquisition hasn’t closed yet but Automattic may explore e-commerce on Tumblr in 2020.</p>\n<p>“Once it closes there will be a few months of normal integration work and getting the teams working together, making sure we have harmonized policies on support, content moderation, anti-spam, ads, and all of those lower-level things,” he said. “Beyond that I’ve seen what you’re seeing — a lot of Tumblr users want access to more customization and e-Commerce. There are no specific plans yet but I imagine that’s something the team will consider for next year’s roadmap.”</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, 19 Sep 2019 16:15: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: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:48;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:\"Matt: Automattic’s Series D\";s: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:22:\"https://ma.tt/?p=50121\";s: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:\"https://ma.tt/2019/09/series-d/\";s: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:3727:\"<p>Today <a href=\"https://automattic.com/\">Automattic</a> announced it has closed a new $300 million Series D, with <a href=\"https://www.salesforce.com/company/ventures/\">Salesforce Ventures</a> taking the entire round. This puts us at a post-round valuation of $3 billion, three times what it was after our last fundraising round in 2014. It’s a tremendous vote of confidence for Automattic and for the open web.</p>\n\n\n\n<p>I met <a href=\"https://twitter.com/Benioff\">Marc Benioff</a> earlier this year, and it became obvious to both of us that <a href=\"https://salesforce.com/\">Salesforce</a> and Automattic shared a lot of principles and philosophies. Marc is a mindful leader and his sensibilities and sense of purpose feel well aligned with our own mission to make the web a better place. He also helped open my eyes to the incredible traction WordPress <a href=\"https://wpvip.com/\">and WP VIP</a> has seen in the enterprise market, and how much potential there still is there. I’ve also loved re-connecting with <a href=\"https://twitter.com/btaylor\">Bret Taylor</a> who is now Salesforce’s President and Chief Product Officer. Bret’s <a href=\"https://en.wikipedia.org/wiki/Bret_Taylor\">experience</a> across Google Maps, Friendfeed, Facebook, Quip, and now transforming Salesforce makes him one of the singular product thinkers out there and our discussion of Automattic’s portfolio of services have been very helpful already.</p>\n\n\n\n<p>For Automattic, the funding will allow us to accelerate our roadmap (perhaps by double) and scale up our existing products—including <a href=\"https://wordpress.com/\">WordPress.com</a>, <a href=\"https://wpvip.com/\">WordPress VIP</a>, <a href=\"https://woocommerce.com/\">WooCommerce</a>, <a href=\"https://jetpack.com/\">Jetpack</a>, and (in a few days when it closes) <a href=\"https://www.tumblr.com/\">Tumblr</a>. It will also allow us to increase investing our time and energy into the future of the open source <a href=\"https://wordpress.org/\">WordPress</a> and <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a>.</p>\n\n\n\n<p>The Salesforce funding is also a vote of confidence for the future of work. Automattic has grown to more than 950 employees working from 71 countries, with no central office for several years now. <a href=\"https://distributed.blog/\">Distributed work</a> is going to reshape how we spread opportunity more equitably around the world. There continue to be new heights shown of what can be achieved in a distributed fashion, with <a href=\"https://about.gitlab.com/2019/09/17/gitlab-series-e-funding/\">Gitlab announcing a round at $2.75B earlier this week</a>.</p>\n\n\n\n<p>Next year Automattic celebrates 15 years as a company! The timing is fortuitous as we’ve all just returned from <a href=\"https://ma.tt/2018/10/the-importance-of-meeting-in-person/\">Automattic’s annual Grand Meetup</a>, where more than 800 of us got together in person to share our experiences, explore new ideas, and have some fun. I am giddy to work alongside these wonderful people for another 15 years and beyond.</p>\n\n\n\n<p>If you’re curious my previous posts on our fundraising, here’s our <a href=\"https://ma.tt/2006/04/a-little-funding/\">2006 Series A</a>, <a href=\"https://ma.tt/2008/01/act-two/\">2008 Series B</a>, <a href=\"https://ma.tt/2013/05/automattic-secondary/\">2013 secondary</a>, and <a href=\"https://ma.tt/2014/05/new-funding-for-automattic/\">2014 Series C</a>. As before, happy to answer questions in the comments here. <a href=\"https://techcrunch.com/2019/09/19/automattic-raises-300-million-at-3-billion-valuation-from-salesforce-ventures/\">I also did an exclusive interview with Romain Dillet on (WP-powered) Techcrunch</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:\"Thu, 19 Sep 2019 13:01: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: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:49;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:103:\"WPTavern: Gutenberg 6.5 Adds Experimental Block Directory Search to Inserter and New Social Links Block\";s: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:29:\"https://wptavern.com/?p=94000\";s: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:114:\"https://wptavern.com/gutenberg-6-5-adds-experimental-block-directory-search-to-inserter-and-new-social-links-block\";s: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:3773:\"<p>Gutenberg 6.5 was released today with a rough prototype that adds one-click search and installation of blocks from the block directory to the inserter. Selected blocks are automatically installed as a plugin in the background and inserted into the editor with one click.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/block-directory-experiment.gif?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://github.com/WordPress/gutenberg/pull/17431\" rel=\"noopener noreferrer\" target=\"_blank\">pull request</a> for the experiment indicates that it’s still very much a work in progress. It extends the inserter to fetch a list of suggestBlocks similar to reusableBlocks, and the list is currently served from a mock API.</p>\n<p>The prototype is can be turned on under the <strong>Gutenberg > Experiments</strong> menu, a relatively new Settings page that was <a href=\"https://github.com/WordPress/gutenberg/pull/16626\" rel=\"noopener noreferrer\" target=\"_blank\">added in Gutenberg 6.3</a>. This menu also allows testers to enable the experimental Navigation Menu Block, Widgets Screen, and Legacy Widget Block.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-18-at-8.46.59-PM.png?ssl=1\"><img /></a></p>\n<p>Block Navigation has also been added to the experimental Navigation Block in this release. This addition is considered a first start that is expected to evolve over time.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/09/block-navigator.png?ssl=1\"><img /></a></p>\n<p>“Regardless of how the UI evolves for this block, I think there will always be a need for representing the menu structure as a child block tree with all menu hierarchies mapped out consistently and not hidden (dropdowns, etc),” Gutenberg engineer Matias Ventura <a href=\"https://github.com/WordPress/gutenberg/issues/16812\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>.</p>\n<p>“Luckily, we already have a view that handles that representation in the ‘block navigator.’ That means if the navigation menu block is represented through child blocks, we’ll get this view for free.”</p>\n<p>In the future, Gutenberg engineers may allow for drag-and-drop reordering of items in the navigator and may explore rendering the view inline or in a modal launched from the navigation menu block.</p>\n<h3>Gutenberg 6.5 Adds New Social Links Block</h3>\n<p>Gutenberg 6.5 also adds a new social links block under the widgets panel. It allows users to place social links anywhere within the content by clicking on the icons and pasting in their social URLs. The gif below demonstrates how the block works, although the grey placeholder icons have since been removed in favor of opacity changes to indicate unconfigured blocks.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/09/social-links-block.gif?ssl=1\"><img /></a></p>\n<p>This release introduces a handful of other notable updates, including support for <a href=\"https://github.com/WordPress/gutenberg/pull/17253\" rel=\"noopener noreferrer\" target=\"_blank\">border radius changes in the button block</a>, support for <a href=\"https://github.com/WordPress/gutenberg/pull/17101\" rel=\"noopener noreferrer\" target=\"_blank\">adding captions to images in the Gallery block</a>, and the addition of <a href=\"https://github.com/WordPress/gutenberg/pull/16490\" rel=\"noopener noreferrer\" target=\"_blank\">local autosaves</a>.</p>\n<p>The 6.5 release post has not yet been published but the plugin update is available in the admin and a full list of enhancements and bug fixes can be found in the <a href=\"https://wordpress.org/plugins/gutenberg/#developers\" rel=\"noopener noreferrer\" target=\"_blank\">changelog</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:\"Thu, 19 Sep 2019 03:41: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:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 11 Oct 2019 07:43:42 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 11 Oct 2019 07:30:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20180206170026\";}','no'),(137,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1570823022','no'),(138,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1570779822','no'),(139,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1570823022','no'),(140,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\'>WordPress 5.3 Beta 3</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-5-3-improves-large-image-handling\'>WPTavern: WordPress 5.3 Improves Large Image Handling</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/machothemes-modula-parent-company-acquires-three-gallery-plugins\'>WPTavern: MachoThemes, Modula Parent Company, Acquires Three Gallery Plugins</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/expressionengine-under-new-ownership-will-remain-open-source-for-now\'>WPTavern: ExpressionEngine Under New Ownership, Will Remain Open Source for Now</a></li></ul></div>','no'),(141,'can_compress_scripts','1','no'),(142,'_transient_is_multi_author','0','yes'),(145,'current_theme','Startit','yes'),(146,'theme_mods_startit','a:3:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1570788407;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";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:18:\"nav_menu_locations\";a:0:{}}','yes'),(147,'theme_switched','twentyfifteen','yes'),(152,'theme_mods_start-it','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1570786021;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar_default\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:14:\"sidebar_bottom\";a:0:{}s:15:\"sidebar_archive\";a:0:{}s:14:\"sidebar_search\";a:0:{}}}}','yes'),(153,'cmsmasters_start-it_theme_style','','yes'),(154,'cmsmasters_options_start-it_general','a:9:{s:21:\"start-it_theme_layout\";s:6:\"liquid\";s:18:\"start-it_logo_type\";s:5:\"image\";s:17:\"start-it_logo_url\";s:89:\"|http://demo.it-s.com/demo/wp-content/themes/start-it/theme-vars/theme-style/img/logo.png\";s:24:\"start-it_logo_url_retina\";s:96:\"|http://demo.it-s.com/demo/wp-content/themes/start-it/theme-vars/theme-style/img/logo_retina.png\";s:19:\"start-it_logo_title\";s:4:\"demo\";s:22:\"start-it_logo_subtitle\";s:0:\"\";s:26:\"start-it_logo_custom_color\";i:0;s:25:\"start-it_logo_title_color\";s:0:\"\";s:28:\"start-it_logo_subtitle_color\";s:0:\"\";}','yes'),(155,'cmsmasters_options_start-it_bg','a:7:{s:15:\"start-it_bg_col\";s:7:\"#f1f1f1\";s:22:\"start-it_bg_img_enable\";i:0;s:15:\"start-it_bg_img\";s:0:\"\";s:15:\"start-it_bg_rep\";s:9:\"no-repeat\";s:15:\"start-it_bg_pos\";s:10:\"top center\";s:15:\"start-it_bg_att\";s:6:\"scroll\";s:16:\"start-it_bg_size\";s:5:\"cover\";}','yes'),(156,'cmsmasters_options_start-it_header','a:12:{s:21:\"start-it_fixed_header\";i:1;s:24:\"start-it_header_overlaps\";i:1;s:24:\"start-it_header_top_line\";i:0;s:26:\"start-it_header_top_height\";s:2:\"40\";s:35:\"start-it_header_top_line_short_info\";s:0:\"\";s:33:\"start-it_header_top_line_add_cont\";s:3:\"nav\";s:22:\"start-it_header_styles\";s:7:\"default\";s:26:\"start-it_header_mid_height\";s:2:\"71\";s:26:\"start-it_header_bot_height\";s:2:\"52\";s:22:\"start-it_header_search\";i:1;s:24:\"start-it_header_add_cont\";s:6:\"social\";s:34:\"start-it_header_add_cont_cust_html\";s:0:\"\";}','yes'),(157,'cmsmasters_options_start-it_content','a:17:{s:15:\"start-it_layout\";s:9:\"r_sidebar\";s:24:\"start-it_archives_layout\";s:9:\"r_sidebar\";s:22:\"start-it_search_layout\";s:9:\"r_sidebar\";s:21:\"start-it_other_layout\";s:9:\"r_sidebar\";s:26:\"start-it_heading_alignment\";s:6:\"center\";s:23:\"start-it_heading_scheme\";s:7:\"default\";s:32:\"start-it_heading_bg_image_enable\";i:1;s:25:\"start-it_heading_bg_image\";s:95:\"|http://demo.it-s.com/demo/wp-content/themes/start-it/theme-vars/theme-style/img/heading_bg.jpg\";s:26:\"start-it_heading_bg_repeat\";s:9:\"no-repeat\";s:30:\"start-it_heading_bg_attachment\";s:6:\"scroll\";s:24:\"start-it_heading_bg_size\";s:5:\"cover\";s:25:\"start-it_heading_bg_color\";s:0:\"\";s:23:\"start-it_heading_height\";s:3:\"350\";s:20:\"start-it_breadcrumbs\";i:1;s:22:\"start-it_bottom_scheme\";s:5:\"first\";s:23:\"start-it_bottom_sidebar\";i:0;s:30:\"start-it_bottom_sidebar_layout\";s:8:\"14141414\";}','yes'),(158,'cmsmasters_options_start-it_footer','a:10:{s:22:\"start-it_footer_scheme\";s:6:\"footer\";s:20:\"start-it_footer_type\";s:7:\"default\";s:34:\"start-it_footer_additional_content\";s:3:\"nav\";s:20:\"start-it_footer_logo\";i:1;s:24:\"start-it_footer_logo_url\";s:96:\"|http://demo.it-s.com/demo/wp-content/themes/start-it/theme-vars/theme-style/img/logo_footer.png\";s:31:\"start-it_footer_logo_url_retina\";s:103:\"|http://demo.it-s.com/demo/wp-content/themes/start-it/theme-vars/theme-style/img/logo_footer_retina.png\";s:19:\"start-it_footer_nav\";i:0;s:22:\"start-it_footer_social\";i:0;s:20:\"start-it_footer_html\";s:0:\"\";s:25:\"start-it_footer_copyright\";s:42:\"Start It © 2019 / All Rights Reserved\";}','yes'),(159,'cmsmasters_options_start-it_font_content','a:6:{s:33:\"start-it_content_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:33:\"start-it_content_font_google_font\";s:21:\"Catamaran:400,600,700\";s:31:\"start-it_content_font_font_size\";s:2:\"18\";s:33:\"start-it_content_font_line_height\";s:2:\"26\";s:33:\"start-it_content_font_font_weight\";s:6:\"normal\";s:32:\"start-it_content_font_font_style\";s:6:\"normal\";}','yes'),(160,'cmsmasters_options_start-it_font_link','a:9:{s:30:\"start-it_link_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:30:\"start-it_link_font_google_font\";s:21:\"Catamaran:400,600,700\";s:28:\"start-it_link_font_font_size\";s:2:\"18\";s:30:\"start-it_link_font_line_height\";s:2:\"24\";s:30:\"start-it_link_font_font_weight\";s:3:\"600\";s:29:\"start-it_link_font_font_style\";s:6:\"normal\";s:33:\"start-it_link_font_text_transform\";s:4:\"none\";s:34:\"start-it_link_font_text_decoration\";s:4:\"none\";s:30:\"start-it_link_hover_decoration\";s:4:\"none\";}','yes'),(161,'cmsmasters_options_start-it_font_nav','a:14:{s:35:\"start-it_nav_title_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:35:\"start-it_nav_title_font_google_font\";s:21:\"Catamaran:400,600,700\";s:33:\"start-it_nav_title_font_font_size\";s:2:\"16\";s:35:\"start-it_nav_title_font_line_height\";s:2:\"26\";s:35:\"start-it_nav_title_font_font_weight\";s:3:\"600\";s:34:\"start-it_nav_title_font_font_style\";s:6:\"normal\";s:38:\"start-it_nav_title_font_text_transform\";s:4:\"none\";s:38:\"start-it_nav_dropdown_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:38:\"start-it_nav_dropdown_font_google_font\";s:21:\"Catamaran:400,600,700\";s:36:\"start-it_nav_dropdown_font_font_size\";s:2:\"12\";s:38:\"start-it_nav_dropdown_font_line_height\";s:2:\"18\";s:38:\"start-it_nav_dropdown_font_font_weight\";s:4:\"bold\";s:37:\"start-it_nav_dropdown_font_font_style\";s:6:\"normal\";s:41:\"start-it_nav_dropdown_font_text_transform\";s:9:\"uppercase\";}','yes'),(162,'cmsmasters_options_start-it_font_heading','a:48:{s:28:\"start-it_h1_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:28:\"start-it_h1_font_google_font\";s:21:\"Catamaran:400,600,700\";s:26:\"start-it_h1_font_font_size\";s:2:\"48\";s:28:\"start-it_h1_font_line_height\";s:2:\"58\";s:28:\"start-it_h1_font_font_weight\";s:4:\"bold\";s:27:\"start-it_h1_font_font_style\";s:6:\"normal\";s:31:\"start-it_h1_font_text_transform\";s:4:\"none\";s:32:\"start-it_h1_font_text_decoration\";s:4:\"none\";s:28:\"start-it_h2_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:28:\"start-it_h2_font_google_font\";s:21:\"Catamaran:400,600,700\";s:26:\"start-it_h2_font_font_size\";s:2:\"32\";s:28:\"start-it_h2_font_line_height\";s:2:\"40\";s:28:\"start-it_h2_font_font_weight\";s:4:\"bold\";s:27:\"start-it_h2_font_font_style\";s:6:\"normal\";s:31:\"start-it_h2_font_text_transform\";s:4:\"none\";s:32:\"start-it_h2_font_text_decoration\";s:4:\"none\";s:28:\"start-it_h3_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:28:\"start-it_h3_font_google_font\";s:21:\"Catamaran:400,600,700\";s:26:\"start-it_h3_font_font_size\";s:2:\"26\";s:28:\"start-it_h3_font_line_height\";s:2:\"32\";s:28:\"start-it_h3_font_font_weight\";s:3:\"600\";s:27:\"start-it_h3_font_font_style\";s:6:\"normal\";s:31:\"start-it_h3_font_text_transform\";s:4:\"none\";s:32:\"start-it_h3_font_text_decoration\";s:4:\"none\";s:28:\"start-it_h4_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:28:\"start-it_h4_font_google_font\";s:21:\"Catamaran:400,600,700\";s:26:\"start-it_h4_font_font_size\";s:2:\"24\";s:28:\"start-it_h4_font_line_height\";s:2:\"30\";s:28:\"start-it_h4_font_font_weight\";s:3:\"600\";s:27:\"start-it_h4_font_font_style\";s:6:\"normal\";s:31:\"start-it_h4_font_text_transform\";s:4:\"none\";s:32:\"start-it_h4_font_text_decoration\";s:4:\"none\";s:28:\"start-it_h5_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:28:\"start-it_h5_font_google_font\";s:21:\"Catamaran:400,600,700\";s:26:\"start-it_h5_font_font_size\";s:2:\"20\";s:28:\"start-it_h5_font_line_height\";s:2:\"26\";s:28:\"start-it_h5_font_font_weight\";s:3:\"700\";s:27:\"start-it_h5_font_font_style\";s:6:\"normal\";s:31:\"start-it_h5_font_text_transform\";s:4:\"none\";s:32:\"start-it_h5_font_text_decoration\";s:4:\"none\";s:28:\"start-it_h6_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:28:\"start-it_h6_font_google_font\";s:21:\"Catamaran:400,600,700\";s:26:\"start-it_h6_font_font_size\";s:2:\"16\";s:28:\"start-it_h6_font_line_height\";s:2:\"22\";s:28:\"start-it_h6_font_font_weight\";s:3:\"700\";s:27:\"start-it_h6_font_font_style\";s:6:\"normal\";s:31:\"start-it_h6_font_text_transform\";s:4:\"none\";s:32:\"start-it_h6_font_text_decoration\";s:4:\"none\";}','yes'),(163,'cmsmasters_options_start-it_font_other','a:26:{s:32:\"start-it_button_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:32:\"start-it_button_font_google_font\";s:21:\"Catamaran:400,600,700\";s:30:\"start-it_button_font_font_size\";s:2:\"16\";s:32:\"start-it_button_font_line_height\";s:2:\"42\";s:32:\"start-it_button_font_font_weight\";s:3:\"600\";s:31:\"start-it_button_font_font_style\";s:6:\"normal\";s:35:\"start-it_button_font_text_transform\";s:7:\"default\";s:31:\"start-it_small_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:31:\"start-it_small_font_google_font\";s:21:\"Catamaran:400,600,700\";s:29:\"start-it_small_font_font_size\";s:2:\"13\";s:31:\"start-it_small_font_line_height\";s:2:\"20\";s:31:\"start-it_small_font_font_weight\";s:4:\"bold\";s:30:\"start-it_small_font_font_style\";s:6:\"normal\";s:34:\"start-it_small_font_text_transform\";s:4:\"none\";s:31:\"start-it_input_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:31:\"start-it_input_font_google_font\";s:21:\"Catamaran:400,600,700\";s:29:\"start-it_input_font_font_size\";s:2:\"16\";s:31:\"start-it_input_font_line_height\";s:2:\"20\";s:31:\"start-it_input_font_font_weight\";s:6:\"normal\";s:30:\"start-it_input_font_font_style\";s:6:\"normal\";s:31:\"start-it_quote_font_system_font\";s:45:\"Arial, Helvetica, \'Nimbus Sans L\', sans-serif\";s:31:\"start-it_quote_font_google_font\";s:21:\"Catamaran:400,600,700\";s:29:\"start-it_quote_font_font_size\";s:2:\"24\";s:31:\"start-it_quote_font_line_height\";s:2:\"40\";s:31:\"start-it_quote_font_font_weight\";s:4:\"bold\";s:30:\"start-it_quote_font_font_style\";s:6:\"normal\";}','yes'),(164,'cmsmasters_options_start-it_font_google','a:2:{s:25:\"start-it_google_web_fonts\";a:28:{i:0;s:69:\"Roboto:300,300italic,400,400italic,500,500italic,700,700italic|Roboto\";i:1;s:61:\"Roboto+Condensed:400,400italic,700,700italic|Roboto Condensed\";i:2;s:61:\"Open+Sans:300,300italic,400,400italic,700,700italic|Open Sans\";i:3;s:57:\"Open+Sans+Condensed:300,300italic,700|Open Sans Condensed\";i:4;s:29:\"Droid+Sans:400,700|Droid Sans\";i:5;s:51:\"Droid+Serif:400,400italic,700,700italic|Droid Serif\";i:6;s:43:\"PT+Sans:400,400italic,700,700italic|PT Sans\";i:7;s:39:\"PT+Sans+Caption:400,700|PT Sans Caption\";i:8;s:37:\"PT+Sans+Narrow:400,700|PT Sans Narrow\";i:9;s:45:\"PT+Serif:400,400italic,700,700italic|PT Serif\";i:10;s:41:\"Ubuntu:400,400italic,700,700italic|Ubuntu\";i:11;s:33:\"Ubuntu+Condensed|Ubuntu Condensed\";i:12;s:25:\"Headland+One|Headland One\";i:13;s:73:\"Source+Sans+Pro:300,300italic,400,400italic,700,700italic|Source Sans Pro\";i:14;s:37:\"Lato:400,400italic,700,700italic|Lato\";i:15;s:41:\"Cuprum:400,400italic,700,700italic|Cuprum\";i:16;s:25:\"Oswald:300,400,700|Oswald\";i:17;s:47:\"Yanone+Kaffeesatz:300,400,700|Yanone Kaffeesatz\";i:18;s:15:\"Lobster|Lobster\";i:19;s:51:\"Lobster+Two:400,400italic,700,700italic|Lobster Two\";i:20;s:19:\"Questrial|Questrial\";i:21;s:35:\"Raleway:300,400,500,600,700|Raleway\";i:22;s:27:\"Dosis:300,400,500,700|Dosis\";i:23;s:23:\"Cutive+Mono|Cutive Mono\";i:24;s:31:\"Quicksand:300,400,700|Quicksand\";i:25;s:29:\"Montserrat:400,700|Montserrat\";i:26;s:13:\"Cookie|Cookie\";i:27;s:31:\"Catamaran:400,600,700|Catamaran\";}s:32:\"start-it_google_web_fonts_subset\";s:0:\"\";}','yes'),(165,'cmsmasters_options_start-it_element_sidebar','','yes'),(166,'cmsmasters_options_start-it_element_icon','a:1:{s:21:\"start-it_social_icons\";a:5:{i:0;s:42:\"cmsmasters-icon-linkedin|#|Linkedin|true||\";i:1;s:42:\"cmsmasters-icon-facebook|#|Facebook|true||\";i:2;s:38:\"cmsmasters-icon-google|#|Google|true||\";i:3;s:40:\"cmsmasters-icon-twitter|#|Twitter|true||\";i:4;s:36:\"cmsmasters-icon-skype|#|Skype|true||\";}}','yes'),(167,'cmsmasters_options_start-it_element_lightbox','a:19:{s:23:\"start-it_ilightbox_skin\";s:4:\"dark\";s:23:\"start-it_ilightbox_path\";s:8:\"vertical\";s:27:\"start-it_ilightbox_infinite\";i:0;s:31:\"start-it_ilightbox_aspect_ratio\";i:1;s:35:\"start-it_ilightbox_mobile_optimizer\";i:1;s:28:\"start-it_ilightbox_max_scale\";i:1;s:28:\"start-it_ilightbox_min_scale\";d:0.20000000000000001;s:32:\"start-it_ilightbox_inner_toolbar\";i:0;s:36:\"start-it_ilightbox_smart_recognition\";i:0;s:39:\"start-it_ilightbox_fullscreen_one_slide\";i:0;s:38:\"start-it_ilightbox_fullscreen_viewport\";s:6:\"center\";s:35:\"start-it_ilightbox_controls_toolbar\";i:1;s:34:\"start-it_ilightbox_controls_arrows\";i:0;s:38:\"start-it_ilightbox_controls_fullscreen\";i:1;s:37:\"start-it_ilightbox_controls_thumbnail\";i:1;s:36:\"start-it_ilightbox_controls_keyboard\";i:1;s:38:\"start-it_ilightbox_controls_mousewheel\";i:1;s:33:\"start-it_ilightbox_controls_swipe\";i:1;s:37:\"start-it_ilightbox_controls_slideshow\";i:0;}','yes'),(168,'cmsmasters_options_start-it_element_sitemap','a:6:{s:20:\"start-it_sitemap_nav\";i:1;s:23:\"start-it_sitemap_categs\";i:1;s:21:\"start-it_sitemap_tags\";i:1;s:22:\"start-it_sitemap_month\";i:1;s:26:\"start-it_sitemap_pj_categs\";i:1;s:24:\"start-it_sitemap_pj_tags\";i:1;}','yes'),(169,'cmsmasters_options_start-it_element_error','a:11:{s:20:\"start-it_error_color\";s:7:\"#ffffff\";s:23:\"start-it_error_bg_color\";s:7:\"#413d49\";s:28:\"start-it_error_bg_img_enable\";i:1;s:23:\"start-it_error_bg_image\";s:93:\"|http://demo.it-s.com/demo/wp-content/themes/start-it/theme-vars/theme-style/img/error_bg.jpg\";s:21:\"start-it_error_bg_rep\";s:9:\"no-repeat\";s:21:\"start-it_error_bg_pos\";s:10:\"top center\";s:21:\"start-it_error_bg_att\";s:6:\"scroll\";s:22:\"start-it_error_bg_size\";s:5:\"cover\";s:21:\"start-it_error_search\";i:1;s:29:\"start-it_error_sitemap_button\";i:1;s:27:\"start-it_error_sitemap_link\";s:0:\"\";}','yes'),(170,'cmsmasters_options_start-it_element_code','a:7:{s:19:\"start-it_custom_css\";s:0:\"\";s:18:\"start-it_custom_js\";s:0:\"\";s:21:\"start-it_gmap_api_key\";s:0:\"\";s:16:\"start-it_api_key\";s:0:\"\";s:19:\"start-it_api_secret\";s:0:\"\";s:21:\"start-it_access_token\";s:0:\"\";s:28:\"start-it_access_token_secret\";s:0:\"\";}','yes'),(171,'cmsmasters_options_start-it_element_recaptcha','','yes'),(172,'cmsmasters_options_start-it_single_post','a:14:{s:25:\"start-it_blog_post_layout\";s:9:\"r_sidebar\";s:24:\"start-it_blog_post_title\";i:1;s:23:\"start-it_blog_post_date\";i:1;s:22:\"start-it_blog_post_cat\";i:0;s:25:\"start-it_blog_post_author\";i:1;s:26:\"start-it_blog_post_comment\";i:1;s:22:\"start-it_blog_post_tag\";i:1;s:23:\"start-it_blog_post_like\";i:1;s:26:\"start-it_blog_post_nav_box\";i:1;s:32:\"start-it_blog_post_nav_order_cat\";i:0;s:29:\"start-it_blog_post_author_box\";i:1;s:28:\"start-it_blog_more_posts_box\";s:7:\"popular\";s:30:\"start-it_blog_more_posts_count\";s:1:\"3\";s:30:\"start-it_blog_more_posts_pause\";s:1:\"5\";}','yes'),(173,'cmsmasters_options_start-it_single_project','a:19:{s:32:\"start-it_portfolio_project_title\";i:1;s:40:\"start-it_portfolio_project_details_title\";s:15:\"Project details\";s:31:\"start-it_portfolio_project_date\";i:1;s:30:\"start-it_portfolio_project_cat\";i:0;s:33:\"start-it_portfolio_project_author\";i:1;s:34:\"start-it_portfolio_project_comment\";i:0;s:30:\"start-it_portfolio_project_tag\";i:0;s:31:\"start-it_portfolio_project_like\";i:1;s:31:\"start-it_portfolio_project_link\";i:0;s:36:\"start-it_portfolio_project_share_box\";i:1;s:34:\"start-it_portfolio_project_nav_box\";i:1;s:40:\"start-it_portfolio_project_nav_order_cat\";i:0;s:37:\"start-it_portfolio_project_author_box\";i:1;s:36:\"start-it_portfolio_more_projects_box\";s:7:\"popular\";s:38:\"start-it_portfolio_more_projects_count\";s:1:\"4\";s:38:\"start-it_portfolio_more_projects_pause\";s:1:\"5\";s:31:\"start-it_portfolio_project_slug\";s:7:\"project\";s:33:\"start-it_portfolio_pj_categs_slug\";s:9:\"pj-categs\";s:31:\"start-it_portfolio_pj_tags_slug\";s:7:\"pj-tags\";}','yes'),(174,'cmsmasters_options_start-it_single_profile','a:10:{s:27:\"start-it_profile_post_title\";i:1;s:35:\"start-it_profile_post_details_title\";s:15:\"Profile details\";s:25:\"start-it_profile_post_cat\";i:0;s:29:\"start-it_profile_post_comment\";i:1;s:26:\"start-it_profile_post_like\";i:1;s:29:\"start-it_profile_post_nav_box\";i:1;s:35:\"start-it_profile_post_nav_order_cat\";i:0;s:31:\"start-it_profile_post_share_box\";i:1;s:26:\"start-it_profile_post_slug\";s:7:\"profile\";s:31:\"start-it_profile_pl_categs_slug\";s:9:\"pl-categs\";}','yes'),(175,'cmsmasters_options_start-it_color_default','a:8:{s:22:\"start-it_default_color\";s:7:\"#888a8b\";s:21:\"start-it_default_link\";s:7:\"#27cba4\";s:22:\"start-it_default_hover\";s:7:\"#a8a6aa\";s:24:\"start-it_default_heading\";s:7:\"#404040\";s:19:\"start-it_default_bg\";s:7:\"#f7f8fb\";s:26:\"start-it_default_alternate\";s:7:\"#fdfdfd\";s:23:\"start-it_default_border\";s:7:\"#e6e6e6\";s:26:\"start-it_default_secondary\";s:7:\"#ffffff\";}','yes'),(176,'cmsmasters_options_start-it_color_header','a:12:{s:25:\"start-it_header_mid_color\";s:7:\"#ffffff\";s:24:\"start-it_header_mid_link\";s:7:\"#ffffff\";s:25:\"start-it_header_mid_hover\";s:21:\"rgba(255,255,255,0.7)\";s:22:\"start-it_header_mid_bg\";s:19:\"rgba(255,255,255,0)\";s:29:\"start-it_header_mid_bg_scroll\";s:7:\"#263234\";s:26:\"start-it_header_mid_border\";s:22:\"rgba(255,255,255,0.15)\";s:25:\"start-it_header_bot_color\";s:7:\"#ffffff\";s:24:\"start-it_header_bot_link\";s:7:\"#ffffff\";s:25:\"start-it_header_bot_hover\";s:21:\"rgba(255,255,255,0.7)\";s:22:\"start-it_header_bot_bg\";s:19:\"rgba(255,255,255,0)\";s:29:\"start-it_header_bot_bg_scroll\";s:7:\"#263234\";s:26:\"start-it_header_bot_border\";s:22:\"rgba(255,255,255,0.15)\";}','yes'),(177,'cmsmasters_options_start-it_color_navigation','a:16:{s:30:\"start-it_navigation_title_link\";s:22:\"rgba(255,255,255,0.75)\";s:36:\"start-it_navigation_title_link_hover\";s:7:\"#ffffff\";s:38:\"start-it_navigation_title_link_current\";s:7:\"#ffffff\";s:39:\"start-it_navigation_title_link_subtitle\";s:21:\"rgba(255,255,255,0.6)\";s:33:\"start-it_navigation_title_link_bg\";s:19:\"rgba(255,255,255,0)\";s:39:\"start-it_navigation_title_link_bg_hover\";s:19:\"rgba(255,255,255,0)\";s:41:\"start-it_navigation_title_link_bg_current\";s:19:\"rgba(255,255,255,0)\";s:37:\"start-it_navigation_title_link_border\";s:19:\"rgba(255,255,255,0)\";s:33:\"start-it_navigation_dropdown_text\";s:21:\"rgba(255,255,255,0.5)\";s:31:\"start-it_navigation_dropdown_bg\";s:7:\"#353d40\";s:35:\"start-it_navigation_dropdown_border\";s:19:\"rgba(255,255,255,0)\";s:33:\"start-it_navigation_dropdown_link\";s:21:\"rgba(255,255,255,0.6)\";s:39:\"start-it_navigation_dropdown_link_hover\";s:7:\"#ffffff\";s:42:\"start-it_navigation_dropdown_link_subtitle\";s:21:\"rgba(255,255,255,0.5)\";s:43:\"start-it_navigation_dropdown_link_highlight\";s:7:\"#27cba4\";s:40:\"start-it_navigation_dropdown_link_border\";s:21:\"rgba(255,255,255,0.0)\";}','yes'),(178,'cmsmasters_options_start-it_color_header_top','a:16:{s:25:\"start-it_header_top_color\";s:7:\"#ffffff\";s:24:\"start-it_header_top_link\";s:7:\"#ffffff\";s:25:\"start-it_header_top_hover\";s:21:\"rgba(255,255,255,0.5)\";s:22:\"start-it_header_top_bg\";s:19:\"rgba(255,255,255,0)\";s:26:\"start-it_header_top_border\";s:21:\"rgba(255,255,255,0.1)\";s:30:\"start-it_header_top_title_link\";s:7:\"#ffffff\";s:36:\"start-it_header_top_title_link_hover\";s:21:\"rgba(255,255,255,0.5)\";s:33:\"start-it_header_top_title_link_bg\";s:19:\"rgba(255,255,255,0)\";s:39:\"start-it_header_top_title_link_bg_hover\";s:19:\"rgba(255,255,255,0)\";s:37:\"start-it_header_top_title_link_border\";s:7:\"#000000\";s:31:\"start-it_header_top_dropdown_bg\";s:7:\"#2d2d2d\";s:35:\"start-it_header_top_dropdown_border\";s:19:\"rgba(255,255,255,0)\";s:33:\"start-it_header_top_dropdown_link\";s:7:\"#818181\";s:39:\"start-it_header_top_dropdown_link_hover\";s:7:\"#ffffff\";s:43:\"start-it_header_top_dropdown_link_highlight\";s:19:\"rgba(255,255,255,0)\";s:40:\"start-it_header_top_dropdown_link_border\";s:19:\"rgba(255,255,255,0)\";}','yes'),(179,'cmsmasters_options_start-it_color_footer','a:8:{s:21:\"start-it_footer_color\";s:7:\"#8f9194\";s:20:\"start-it_footer_link\";s:7:\"#27cba4\";s:21:\"start-it_footer_hover\";s:7:\"#a8a6aa\";s:23:\"start-it_footer_heading\";s:7:\"#888a8b\";s:18:\"start-it_footer_bg\";s:7:\"#e3e6ec\";s:25:\"start-it_footer_alternate\";s:7:\"#fdfdfd\";s:22:\"start-it_footer_border\";s:7:\"#ced1d6\";s:25:\"start-it_footer_secondary\";s:7:\"#ffffff\";}','yes'),(180,'cmsmasters_options_start-it_color_first','a:8:{s:20:\"start-it_first_color\";s:7:\"#888a8b\";s:19:\"start-it_first_link\";s:18:\"rgba(64,64,64,0.8)\";s:20:\"start-it_first_hover\";s:7:\"#a8a6aa\";s:22:\"start-it_first_heading\";s:7:\"#404040\";s:17:\"start-it_first_bg\";s:7:\"#e3e6ec\";s:24:\"start-it_first_alternate\";s:7:\"#fafafa\";s:21:\"start-it_first_border\";s:7:\"#e6e6e6\";s:24:\"start-it_first_secondary\";s:7:\"#ffffff\";}','yes'),(181,'cmsmasters_options_start-it_color_second','a:8:{s:21:\"start-it_second_color\";s:7:\"#888a8b\";s:20:\"start-it_second_link\";s:7:\"#27cba4\";s:21:\"start-it_second_hover\";s:21:\"rgba(255,255,255,0.6)\";s:23:\"start-it_second_heading\";s:7:\"#ffffff\";s:18:\"start-it_second_bg\";s:7:\"#f7f8fb\";s:25:\"start-it_second_alternate\";s:7:\"#ffffff\";s:22:\"start-it_second_border\";s:21:\"rgba(255,255,255,0.5)\";s:25:\"start-it_second_secondary\";s:21:\"rgba(255,255,255,0.5)\";}','yes'),(182,'cmsmasters_options_start-it_color_third','a:8:{s:20:\"start-it_third_color\";s:7:\"#888a8b\";s:19:\"start-it_third_link\";s:7:\"#ffffff\";s:20:\"start-it_third_hover\";s:7:\"#a8a6aa\";s:22:\"start-it_third_heading\";s:7:\"#404040\";s:17:\"start-it_third_bg\";s:7:\"#27cba4\";s:24:\"start-it_third_alternate\";s:7:\"#fdfdfd\";s:21:\"start-it_third_border\";s:7:\"#e6e6e6\";s:24:\"start-it_third_secondary\";s:7:\"#404040\";}','yes'),(183,'cmsmasters_options_start-it_color_fourth','a:8:{s:21:\"start-it_fourth_color\";s:7:\"#888a8b\";s:20:\"start-it_fourth_link\";s:21:\"rgba(255,255,255,0.7)\";s:21:\"start-it_fourth_hover\";s:7:\"#ffffff\";s:23:\"start-it_fourth_heading\";s:7:\"#ffffff\";s:18:\"start-it_fourth_bg\";s:7:\"#f7f8fb\";s:25:\"start-it_fourth_alternate\";s:7:\"#fdfdfd\";s:22:\"start-it_fourth_border\";s:21:\"rgba(255,255,255,0.5)\";s:25:\"start-it_fourth_secondary\";s:7:\"#ffffff\";}','yes'),(184,'cmsmasters_start-it_icons','s:297830:\"a:7:{s:4:\"name\";s:0:\"\";s:15:\"css_prefix_text\";s:16:\"cmsmasters-icon-\";s:14:\"css_use_suffix\";b:0;s:7:\"hinting\";b:1;s:12:\"units_per_em\";i:1000;s:6:\"ascent\";i:850;s:6:\"glyphs\";a:965:{i:0;a:7:{s:3:\"uid\";s:32:\"fce62e70e8e59dd1103a9fbd27a023f3\";s:3:\"css\";s:11:\"user-female\";s:4:\"code\";i:59392;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1285:\"M937.5 720.7L666 591.8C701.2 574.2 843.8 568.4 855.5 537.1 855.5 537.1 798.8 451.2 785.2 339.8 781.3 294.9 771.5 238.3 761.7 158.2 748 29.3 638.7-62.5 500-62.5 500-62.5 500-62.5 500-62.5 500-62.5 500-62.5 500-62.5 361.3-62.5 252 29.3 238.3 158.2 228.5 238.3 220.7 294.9 214.8 337.9 201.2 451.2 144.5 537.1 144.5 537.1 156.3 568.4 298.8 574.2 334 591.8L62.5 720.7C62.5 720.7 0 744.1 0 794.9L0 877C0 912.1 27.3 937.5 62.5 937.5L937.5 937.5C972.7 937.5 1000 912.1 1000 877L1000 794.9C1000 744.1 937.5 720.7 937.5 720.7ZM62.5 875L62.5 794.9C62.5 791 74.2 783.2 84 779.3 85.9 779.3 87.9 779.3 89.8 777.3L361.3 648.4C382.8 638.7 396.5 617.2 396.5 593.8 396.5 568.4 384.8 546.9 363.3 537.1 341.8 525.4 312.5 521.5 269.5 513.7 259.8 511.7 244.1 507.8 230.5 505.9 248 464.8 269.5 410.2 277.3 345.7 279.3 330.1 281.3 312.5 283.2 293 289.1 259.8 294.9 216.8 300.8 166 310.5 68.4 392.6 0 500 0 500 0 500 0 500 0 500 0 500 0 500 0 607.4 0 689.5 68.4 699.2 166 705.1 216.8 710.9 259.8 716.8 293 718.8 312.5 720.7 330.1 722.7 345.7 730.5 410.2 752 464.8 769.5 505.9 755.9 507.8 740.2 511.7 730.5 513.7 687.5 521.5 658.2 525.4 636.7 537.1 615.2 546.9 603.5 568.4 603.5 593.8 603.5 617.2 617.2 638.7 638.7 648.4L910.2 777.3C912.1 779.3 914.1 779.3 916 779.3 925.8 783.2 935.5 791 937.5 794.9L937.5 875Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"user female\";}}i:1;a:7:{s:3:\"uid\";s:32:\"efa9a4768d57793ed1bf7c30ef86ffa6\";s:3:\"css\";s:10:\"user-add-2\";s:4:\"code\";i:59393;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:991:\"M62.5 810.5C62.5 787.1 82 779.3 87.9 775.4L363.3 646.5C382.8 636.7 396.5 617.2 398.4 595.7 402.3 574.2 392.6 552.7 377 541 310.5 488.3 281.3 373 281.3 312.5L281.3 156.3C281.3 91.8 394.5 0 500 0 605.5 0 718.8 89.8 718.8 156.3L718.8 312.5C718.8 373 693.4 488.3 627 541 609.4 554.7 599.6 574.2 603.5 597.7 605.5 619.1 619.1 636.7 638.7 646.5L732.4 691.4 748 628.9 666 589.8C752 521.5 781.3 386.7 781.3 312.5L781.3 156.3C781.3 52.7 638.7-62.5 500-62.5 361.3-62.5 218.8 52.7 218.8 156.3L218.8 312.5C218.8 380.9 250 519.5 337.9 589.8L62.5 718.8C62.5 718.8 0 746.1 0 781.3L0 875C0 908.2 27.3 937.5 62.5 937.5L750 937.5 750 875 62.5 875ZM968.8 750L875 750 875 656.3C875 638.7 861.3 625 843.8 625 826.2 625 812.5 638.7 812.5 656.3L812.5 750 718.8 750C701.2 750 687.5 763.7 687.5 781.3 687.5 798.8 701.2 812.5 718.8 812.5L812.5 812.5 812.5 906.3C812.5 923.8 826.2 937.5 843.8 937.5 861.3 937.5 875 923.8 875 906.3L875 812.5 968.8 812.5C986.3 812.5 1000 798.8 1000 781.3 1000 763.7 986.3 750 968.8 750Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"user add\";}}i:2;a:7:{s:3:\"uid\";s:32:\"38de16161bb8b383d6cd0439ed276535\";s:3:\"css\";s:12:\"user-confirm\";s:4:\"code\";i:59394;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:912:\"M62.5 875L62.5 810.5C62.5 787.1 80.1 779.3 87.9 775.4L363.3 646.5C382.8 636.7 396.5 617.2 398.4 595.7 400.4 574.2 392.6 554.7 375 541 310.5 488.3 281.3 373 281.3 312.5L281.3 156.3C281.3 91.8 394.5 0 500 0 605.5 0 718.8 89.8 718.8 156.3L718.8 312.5C718.8 373 693.4 488.3 625 541 609.4 554.7 599.6 576.2 601.6 597.7 605.5 619.1 619.1 636.7 638.7 646.5L796.9 722.7 834 669.9 664.1 589.8C752 521.5 781.3 386.7 781.3 312.5L781.3 156.3C781.3 52.7 636.7-62.5 500-62.5 361.3-62.5 218.8 52.7 218.8 156.3L218.8 312.5C218.8 380.9 248 519.5 335.9 589.8L62.5 718.8C62.5 718.8 0 746.1 0 781.3L0 875C0 910.2 27.3 937.5 62.5 937.5L687.5 937.5 636.7 875ZM988.3 644.5C974.6 632.8 955.1 636.7 945.3 648.4L810.5 853.5 728.5 769.5C714.8 757.8 695.3 757.8 683.6 769.5 671.9 783.2 671.9 802.7 683.6 814.5L794.9 923.8C806.6 937.5 826.2 937.5 837.9 923.8 841.8 921.9 843.8 918 845.7 914.1L994.1 687.5C1003.9 673.8 1002 654.3 988.3 644.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"user confirm\";}}i:3;a:7:{s:3:\"uid\";s:32:\"a58fac05594da09560fc4f24e5a5b9d1\";s:3:\"css\";s:13:\"user-delete-1\";s:4:\"code\";i:59395;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1026:\"M781.3 312.5L781.3 156.3C781.3 52.7 636.7-62.5 500-62.5 361.3-62.5 218.8 52.7 218.8 156.3L218.8 312.5C218.8 380.9 248 519.5 335.9 587.9L62.5 718.8C62.5 718.8 0 746.1 0 781.3L0 875C0 908.2 27.3 937.5 62.5 937.5L656.3 937.5 656.3 875 62.5 875 62.5 810.5C62.5 787.1 80.1 779.3 87.9 775.4L363.3 646.5C382.8 636.7 396.5 617.2 398.4 595.7 400.4 574.2 392.6 552.7 375 541 310.5 488.3 281.3 373 281.3 312.5L281.3 156.3C281.3 91.8 394.5 0 500 0 605.5 0 718.8 89.8 718.8 156.3L718.8 312.5C718.8 373 693.4 488.3 625 541 609.4 552.7 599.6 574.2 601.6 595.7 605.5 619.1 619.1 636.7 638.7 646.5L656.3 654.3 683.6 603.5 664.1 589.8C752 521.5 781.3 386.7 781.3 312.5ZM902.3 794.9L992.2 707C1003.9 695.3 1003.9 675.8 992.2 664.1 978.5 650.4 959 650.4 947.3 664.1L859.4 752 769.5 664.1C757.8 650.4 738.3 650.4 726.6 664.1 714.8 675.8 714.8 695.3 726.6 707L814.5 794.9 726.6 884.8C714.8 896.5 714.8 916 726.6 927.7 738.3 941.4 757.8 941.4 769.5 927.7L859.4 839.8 947.3 927.7C959 941.4 978.5 941.4 992.2 927.7 1003.9 916 1003.9 896.5 992.2 884.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"user delete\";}}i:4;a:7:{s:3:\"uid\";s:32:\"b2d0cac512a4b21f8781d728abad2f86\";s:3:\"css\";s:7:\"award-1\";s:4:\"code\";i:59396;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1111:\"M718.8 843.8L279.3 843.8C261.7 843.8 248 857.4 248 875 248 892.6 261.7 906.3 279.3 906.3L718.8 906.3C736.3 906.3 750 892.6 750 875 750 857.4 736.3 843.8 718.8 843.8ZM994.1 56.6C990.2 41 978.5 31.3 962.9 31.3L810.5 31.3 810.5 0C810.5-17.6 796.9-31.3 779.3-31.3L216.8-31.3C199.2-31.3 185.5-17.6 185.5 0L185.5 31.3 37.1 31.3C21.5 31.3 9.8 41 5.9 56.6 5.9 60.5-15.6 169.9 44.9 244.1 80.1 287.1 134.8 310.5 205.1 312.5 244.1 429.7 345.7 517.6 466.8 531.3L466.8 748 373 748C355.5 748 341.8 763.7 341.8 779.3 341.8 796.9 355.5 810.5 373 810.5L625 810.5C642.6 810.5 656.3 796.9 656.3 779.3 656.3 763.7 642.6 748 625 748L529.3 748 529.3 531.3C650.4 517.6 750 431.6 791 312.5 863.3 310.5 918 289.1 955.1 244.1 1015.6 169.9 994.1 60.5 994.1 56.6ZM93.8 205.1C66.4 171.9 64.5 123 64.5 93.8L185.5 93.8 185.5 199.2C185.5 216.8 187.5 232.4 189.5 248 146.5 244.1 115.2 230.5 93.8 205.1ZM748 199.2C748 349.6 634.8 470.7 498 470.7 359.4 470.7 248 349.6 248 199.2L248 31.3 748 31.3 748 199.2ZM906.3 205.1C884.8 230.5 851.6 246.1 806.6 250 808.6 232.4 810.5 216.8 810.5 199.2L810.5 93.8 935.5 93.8C935.5 123 933.6 171.9 906.3 205.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"award prize\";}}i:5;a:7:{s:3:\"uid\";s:32:\"56b4d70c6e12ea7b8cf667d17dc4e0fa\";s:3:\"css\";s:7:\"phone-4\";s:4:\"code\";i:59397;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:678:\"M687.5-62.5L312.5-62.5C259.8-62.5 218.8-21.5 218.8 31.3L218.8 843.8C218.8 896.5 259.8 937.5 312.5 937.5L687.5 937.5C740.2 937.5 781.3 896.5 781.3 843.8L781.3 31.3C781.3-21.5 740.2-62.5 687.5-62.5ZM718.8 843.8C718.8 861.3 705.1 875 687.5 875L312.5 875C294.9 875 281.3 861.3 281.3 843.8L281.3 31.3C281.3 13.7 294.9 0 312.5 0L687.5 0C705.1 0 718.8 13.7 718.8 31.3ZM500 718.8C464.8 718.8 437.5 746.1 437.5 781.3 437.5 816.4 464.8 843.8 500 843.8 535.2 843.8 562.5 816.4 562.5 781.3 562.5 746.1 535.2 718.8 500 718.8ZM562.5 31.3L437.5 31.3C419.9 31.3 406.3 44.9 406.3 62.5 406.3 80.1 419.9 93.8 437.5 93.8L562.5 93.8C580.1 93.8 593.8 80.1 593.8 62.5 593.8 44.9 580.1 31.3 562.5 31.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"phone\";}}i:6;a:7:{s:3:\"uid\";s:32:\"cb803885fb85e90bd2ee650282e8cb98\";s:3:\"css\";s:9:\"desktop-4\";s:4:\"code\";i:59398;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:425:\"M937.5 31.3L62.5 31.3C27.3 31.3 0 58.6 0 93.8L0 625C0 660.2 27.3 687.5 62.5 687.5L468.8 687.5 468.8 781.3 312.5 781.3C294.9 781.3 281.3 794.9 281.3 812.5 281.3 830.1 294.9 843.8 312.5 843.8L687.5 843.8C705.1 843.8 718.8 830.1 718.8 812.5 718.8 794.9 705.1 781.3 687.5 781.3L531.3 781.3 531.3 687.5 937.5 687.5C972.7 687.5 1000 660.2 1000 625L1000 93.8C1000 58.6 972.7 31.3 937.5 31.3ZM937.5 625L62.5 625 62.5 93.8 937.5 93.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"desktop\";}}i:7;a:7:{s:3:\"uid\";s:32:\"4671c1294ab6c124cf1e8fa4a090a655\";s:3:\"css\";s:7:\"plane-1\";s:4:\"code\";i:59399;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:2061:\"M912.1 2C921.9 2 929.7 3.9 933.6 5.9 937.5 17.6 943.4 60.5 900.4 103.5L693.4 310.5 673.8 330.1 675.8 357.4C679.7 416 685.5 521.5 691.4 611.3 695.3 691.4 701.2 767.6 701.2 773.4 701.2 777.3 701.2 779.3 697.3 783.2 687.5 794.9 669.9 814.5 656.3 830.1 632.8 769.5 585.9 640.6 560.5 570.3L527.3 476.6 457 546.9 330.1 669.9 312.5 687.5 310.5 712.9C310.5 732.4 310.5 767.6 310.5 798.8 310.5 822.3 310.5 841.8 310.5 853.5 310.5 853.5 314.5 853.5 314.5 855.5 312.5 849.6 308.6 845.7 306.6 841.8 281.3 800.8 244.1 742.2 234.4 724.6L226.6 712.9 212.9 705.1C166 675.8 113.3 642.6 82 623 82 621.1 84 625 84 625L85.9 625C95.7 625 113.3 625 130.9 625 156.3 625 183.6 625 205.1 625 212.9 625 220.7 625 226.6 625L250 625 269.5 607.4 390.6 480.5 460.9 412.1 369.1 377C300.8 351.6 168 302.7 105.5 279.3 121.1 265.6 140.6 248 152.3 238.3 154.3 236.3 158.2 234.4 160.2 234.4L162.1 234.4C168 234.4 253.9 240.2 335.9 246.1 423.8 252 523.4 257.8 580.1 261.7L607.4 263.7 628.9 244.1 834 39.1C865.2 5.9 896.5 2 912.1 2M912.1-60.5C875-60.5 830.1-46.9 789.1-5.9L584 199.2C468.8 191.4 171.9 171.9 164.1 171.9 162.1 171.9 162.1 171.9 160.2 171.9 148.4 171.9 132.8 173.8 113.3 191.4 89.8 209 41 255.9 41 255.9 29.3 267.6 23.4 281.3 25.4 294.9 25.4 302.7 29.3 318.4 50.8 326.2 62.5 330.1 257.8 404.3 347.7 435.5L224.6 562.5C218.8 562.5 212.9 562.5 205.1 562.5 168 562.5 109.4 562.5 85.9 562.5 82 562.5 80.1 562.5 78.1 562.5 72.3 562.5 56.6 558.6 17.6 591.8L15.6 593.8C3.9 605.5 2 617.2 0 625 0 632.8 2 644.5 13.7 652.3 21.5 658.2 109.4 714.8 181.6 757.8 197.3 787.1 277.3 912.1 281.3 919.9 287.1 929.7 296.9 935.5 308.6 935.5 308.6 935.5 310.5 935.5 310.5 935.5 322.3 935.5 334 929.7 345.7 918 377 880.9 373 865.2 373 857.4 373 837.9 373 748 373 712.9L502 591.8C533.2 679.7 605.5 873 609.4 884.8 617.2 906.3 632.8 910.2 640.6 910.2 642.6 910.2 644.5 910.2 644.5 910.2 658.2 910.2 669.9 904.3 681.6 894.5 681.6 894.5 726.6 847.7 744.1 824.2 763.7 800.8 763.7 779.3 763.7 771.5 763.7 763.7 744.1 468.8 738.3 353.5L943.4 148.4C1017.6 76.2 1005.9-11.7 978.5-39.1 966.8-50.8 941.4-60.5 912.1-60.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"plane\";}}i:8;a:7:{s:3:\"uid\";s:32:\"ec7bac1abd7a6d31b62531c4d40f7882\";s:3:\"css\";s:7:\"notepad\";s:4:\"code\";i:59400;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1165:\"M830.1-62.5L207-62.5C162.1-62.5 142.6-29.3 142.6 2L142.6 127 107.4 127C89.8 127 76.2 140.6 76.2 156.3 76.2 173.8 89.8 187.5 107.4 187.5L142.6 187.5 142.6 312.5 111.3 312.5C93.8 312.5 80.1 326.2 80.1 343.8 80.1 361.3 93.8 375 111.3 375L142.6 375 142.6 500 109.4 500C93.8 500 80.1 513.7 80.1 531.3 80.1 548.8 93.8 562.5 109.4 562.5L142.6 562.5 142.6 687.5 109.4 687.5C93.8 687.5 80.1 701.2 80.1 718.8 80.1 734.4 93.8 748 109.4 748L142.6 748 142.6 875C142.6 927.7 181.6 937.5 205.1 937.5L830.1 937.5C880.9 937.5 923.8 896.5 923.8 843.8L923.8 31.3C923.8-21.5 880.9-62.5 830.1-62.5ZM205.1 875L205.1 748 236.3 748C253.9 748 267.6 734.4 267.6 718.8 267.6 701.2 253.9 687.5 236.3 687.5L205.1 687.5 205.1 562.5 236.3 562.5C253.9 562.5 267.6 548.8 267.6 531.3 267.6 513.7 253.9 500 236.3 500L205.1 500 205.1 375 238.3 375C253.9 375 267.6 361.3 267.6 343.8 267.6 326.2 253.9 312.5 238.3 312.5L205.1 312.5 205.1 187.5 234.4 187.5C252 187.5 265.6 173.8 265.6 156.3 265.6 140.6 252 127 234.4 127L205.1 127 205.1 2C205.1 2 205.1 0 205.1 0 205.1 0 205.1 0 207 0L705.1 0 705.1 875ZM861.3 843.8C861.3 861.3 845.7 875 830.1 875L767.6 875 767.6 0 830.1 0C845.7 0 861.3 13.7 861.3 31.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"notepad\";}}i:9;a:7:{s:3:\"uid\";s:32:\"f1c3c75a6cbe448471b3c585ab7f001b\";s:3:\"css\";s:8:\"mustache\";s:4:\"code\";i:59401;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1818:\"M773.4 656.3C675.8 656.3 619.1 611.3 582 580.1 568.4 568.4 556.6 558.6 546.9 548.8 529.3 535.2 509.8 515.6 502 513.7 502 513.7 498 513.7 498 513.7 496.1 513.7 494.1 513.7 494.1 513.7 488.3 515.6 470.7 531.3 457 543 443.4 554.7 429.7 566.4 412.1 580.1L410.2 582C367.2 615.2 314.5 656.3 220.7 656.3 152.3 656.3 84 625 43 574.2 15.6 541-13.7 482.4 5.9 394.5 7.8 382.8 15.6 375 25.4 371.1 35.2 367.2 46.9 369.1 54.7 375 54.7 377 76.2 392.6 113.3 392.6 130.9 392.6 148.4 388.7 168 380.9 201.2 365.2 222.7 326.2 248 298.8 281.3 261.7 318.4 218.8 380.9 218.8 423.8 218.8 462.9 234.4 498 265.6 533.2 234.4 570.3 218.8 613.3 218.8 675.8 218.8 714.8 261.7 748 298.8 773.4 326.2 796.9 365.2 830.1 380.9 847.7 388.7 867.2 392.6 884.8 392.6 921.9 392.6 945.3 377 947.3 375 955.1 369.1 966.8 367.2 976.6 371.1 986.3 375 994.1 384.8 996.1 394.5 1011.7 482.4 982.4 541 955.1 574.2 914.1 625 843.8 656.3 773.4 656.3ZM498 451.2C500 451.2 502 451.2 503.9 451.2 503.9 451.2 507.8 451.2 507.8 451.2 507.8 451.2 511.7 451.2 511.7 451.2 533.2 455.1 554.7 472.7 585.9 502 597.7 509.8 609.4 521.5 621.1 531.3 654.3 558.6 697.3 593.8 773.4 593.8 826.2 593.8 877 572.3 908.2 535.2 927.7 509.8 937.5 480.5 939.5 447.3 923.8 451.2 906.3 455.1 884.8 455.1 859.4 455.1 832 449.2 804.7 437.5 759.8 418 730.5 369.1 703.1 339.8 669.9 304.7 646.5 281.3 613.3 281.3 568.4 281.3 539.1 308.6 521.5 330.1 515.6 337.9 507.8 341.8 498 341.8 488.3 341.8 480.5 337.9 474.6 330.1 457 308.6 427.7 281.3 382.8 281.3 347.7 281.3 326.2 302.7 293 339.8 267.6 369.1 238.3 418 193.4 437.5 166 449.2 138.7 455.1 113.3 455.1 91.8 455.1 76.2 451.2 60.5 447.3 60.5 480.5 70.3 511.7 91.8 535.2 119.1 572.3 169.9 593.8 220.7 593.8 293 593.8 334 562.5 371.1 533.2L375 531.3C390.6 517.6 404.3 505.9 416 496.1 445.3 472.7 462.9 457 482.4 453.1 482.4 453.1 492.2 451.2 498 451.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"mustache\";}}i:10;a:7:{s:3:\"uid\";s:32:\"a460cfcee812a2650a7cc7cd16e94f48\";s:3:\"css\";s:7:\"mouse-1\";s:4:\"code\";i:59402;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:481:\"M502-62.5C347.7-62.5 218.8 62.5 218.8 216.8L218.8 658.2C218.8 812.5 347.7 937.5 502 937.5 656.3 937.5 781.3 812.5 781.3 658.2L781.3 216.8C781.3 62.5 656.3-62.5 502-62.5ZM718.8 658.2C718.8 777.3 621.1 875 502 875 380.9 875 281.3 777.3 281.3 658.2L281.3 216.8C281.3 97.7 380.9 0 502 0 621.1 0 718.8 97.7 718.8 216.8ZM500 125C482.4 125 468.8 138.7 468.8 156.3L468.8 312.5C468.8 330.1 482.4 343.8 500 343.8 517.6 343.8 531.3 330.1 531.3 312.5L531.3 156.3C531.3 138.7 517.6 125 500 125Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"mouse\";}}i:11;a:7:{s:3:\"uid\";s:32:\"380eaa3489e525a4d6a2713765ab242a\";s:3:\"css\";s:6:\"magnet\";s:4:\"code\";i:59403;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:716:\"M937.5-3.9L937.5-31.3C937.5-48.8 923.8-62.5 906.3-62.5L687.5-62.5C669.9-62.5 656.3-48.8 656.3-31.3L656.3 95.7C656.3 95.7 656.3 95.7 656.3 95.7L656.3 484.4C656.3 578.1 603.5 654.3 509.8 654.3 414.1 654.3 343.8 578.1 343.8 484.4L343.8-3.9 343.8-3.9 343.8-31.3C343.8-48.8 330.1-62.5 312.5-62.5L93.8-62.5C76.2-62.5 62.5-48.8 62.5-31.3L62.5 95.7C62.5 95.7 62.5 97.7 62.5 97.7L62.5 498C62.5 742.2 255.9 937.5 500 937.5 742.2 937.5 937.5 742.2 937.5 498L937.5-3.9ZM875 0L875 125 718.8 125 718.8 0ZM281.3 0L281.3 125 125 125 125 0ZM500 875C291 875 125 707 125 498L125 187.5 281.3 187.5 281.3 484.4C281.3 613.3 380.9 716.8 509.8 716.8 636.7 716.8 718.8 613.3 718.8 484.4L718.8 187.5 875 187.5 875 498C875 707 707 875 500 875Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"magnet\";}}i:12;a:7:{s:3:\"uid\";s:32:\"5bc6cc13432c8cb821c9f869fd1b44c5\";s:3:\"css\";s:6:\"energy\";s:4:\"code\";i:59404;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:619:\"M582 0L582 0M582 0L511.7 371.1 765.6 371.1 418 875 488.3 466.8 234.4 464.8 582 0M582-62.5C580.1-62.5 578.1-62.5 576.2-62.5 564.5-60.5 558.6-56.6 548.8-50.8 544.9-48.8 541-44.9 537.1-39.1 535.2-39.1 533.2-37.1 533.2-35.2L183.6 427.7C169.9 447.3 168 472.7 177.7 492.2 187.5 513.7 209 527.3 232.4 527.3L414.1 529.3 357.4 863.3C351.6 890.6 367.2 919.9 394.5 931.6 402.3 935.5 410.2 937.5 418 937.5 437.5 937.5 455.1 927.7 466.8 910.2L816.4 408.2C830.1 390.6 832 365.2 822.3 343.8 812.5 322.3 791 310.5 767.6 308.6L585.9 308.6 642.6 15.6C644.5 9.8 644.5 5.9 644.5 0 644.5-33.2 617.2-60.5 584-62.5 582-62.5 582-62.5 582-62.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"energy\";}}i:13;a:7:{s:3:\"uid\";s:32:\"1378afa4a02d54e6ffaa22757c065bc9\";s:3:\"css\";s:7:\"smile-1\";s:4:\"code\";i:59405;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:921:\"M763.7 531.3C748 523.4 728.5 531.3 722.7 546.9 720.7 546.9 656.3 687.5 498 689.5 496.1 689.5 496.1 689.5 494.1 689.5 343.8 689.5 279.3 552.7 277.3 546.9 269.5 531.3 252 523.4 236.3 531.3 220.7 537.1 212.9 556.6 220.7 572.3 222.7 580.1 302.7 752 494.1 752 496.1 752 498 752 498 752 697.3 750 775.4 578.1 779.3 572.3 785.2 556.6 779.3 537.1 763.7 531.3ZM500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 875C257.8 875 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 875 500 875ZM343.8 406.3C377 406.3 406.3 378.9 406.3 343.8 406.3 308.6 377 281.3 343.8 281.3 308.6 281.3 281.3 308.6 281.3 343.8 281.3 378.9 308.6 406.3 343.8 406.3ZM656.3 406.3C689.5 406.3 718.8 378.9 718.8 343.8 718.8 308.6 689.5 281.3 656.3 281.3 621.1 281.3 593.8 308.6 593.8 343.8 593.8 378.9 621.1 406.3 656.3 406.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"smile\";}}i:14;a:7:{s:3:\"uid\";s:32:\"b0674fbac42b5d82f41ceac378e34beb\";s:3:\"css\";s:4:\"disc\";s:4:\"code\";i:59406;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:925:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM937.5 437.5C937.5 502 923.8 564.5 898.4 619.1L621.1 470.7C625 460.9 627 449.2 627 437.5 627 367.2 570.3 310.5 500 310.5 486.3 310.5 472.7 314.5 459 318.4L293 52.7C355.5 19.5 425.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5ZM500 375C535.2 375 564.5 402.3 564.5 437.5 564.5 472.7 535.2 502 500 502 464.8 502 437.5 472.7 437.5 437.5 437.5 402.3 464.8 375 500 375ZM240.2 85.9L406.3 353.5C406.3 353.5 406.3 353.5 404.3 355.5L128.9 207C158.2 160.2 195.3 119.1 240.2 85.9ZM62.5 437.5C62.5 375 76.2 316.4 99.6 261.7L377 410.2C375 419.9 373 427.7 373 437.5 373 507.8 429.7 564.5 500 564.5 511.7 564.5 523.4 562.5 535.2 558.6L701.2 826.2C640.6 857.4 572.3 875 500 875 257.8 875 62.5 679.7 62.5 437.5ZM753.9 793L587.9 527.3C589.8 525.4 589.8 525.4 589.8 525.4L867.2 673.8C837.9 720.7 798.8 761.7 753.9 793Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"disc\";}}i:15;a:7:{s:3:\"uid\";s:32:\"b4cdd9d75c8247e6787ddaf7ffe227c6\";s:3:\"css\";s:6:\"move-2\";s:4:\"code\";i:59407;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1544:\"M992.2 421.9L984.4 414.1C984.4 414.1 984.4 414.1 984.4 414.1L857.4 298.8C847.7 289.1 834 289.1 824.2 298.8L818.4 306.6C808.6 314.5 812.5 330.1 822.3 337.9L896.5 406.3 533.2 406.3 533.2 41 601.6 115.2C609.4 125 625 128.9 632.8 119.1L640.6 113.3C650.4 103.5 650.4 89.8 640.6 80.1L531.3-41C527.3-46.9 523.4-50.8 517.6-52.7L517.6-54.7C511.7-60.5 505.9-62.5 502-62.5 496.1-62.5 490.2-60.5 484.4-54.7L476.6-46.9C476.6-46.9 476.6-46.9 476.6-46.9L363.3 78.1C355.5 87.9 355.5 101.6 363.3 111.3L371.1 117.2C380.9 125 394.5 123 404.3 113.3L470.7 39.1 470.7 406.3 103.5 406.3 177.7 337.9C187.5 330.1 191.4 314.5 181.6 306.6L175.8 298.8C166 289.1 152.3 289.1 142.6 298.8L21.5 408.2C15.6 412.1 11.7 416 9.8 421.9L7.8 421.9C2 427.7 0 431.6 0 437.5 0 443.4 2 449.2 7.8 455.1L15.6 462.9C15.6 462.9 15.6 462.9 15.6 462.9L140.6 576.2C150.4 584 164.1 584 173.8 576.2L179.7 568.4C187.5 558.6 185.5 544.9 175.8 535.2L101.6 468.8 470.7 468.8 470.7 835.9 404.3 761.7C394.5 752 380.9 750 371.1 757.8L363.3 763.7C355.5 773.4 355.5 787.1 363.3 796.9L476.6 921.9C476.6 921.9 476.6 921.9 476.6 921.9L484.4 929.7C490.2 935.5 496.1 937.5 502 937.5 507.8 937.5 511.7 935.5 517.6 929.7L525.4 921.9C525.4 921.9 525.4 921.9 525.4 921.9L640.6 794.9C650.4 785.2 650.4 771.5 640.6 761.7L632.8 755.9C625 746.1 609.4 750 601.6 759.8L533.2 834 533.2 468.8 898.4 468.8 824.2 535.2C814.5 544.9 812.5 558.6 820.3 568.4L826.2 576.2C835.9 584 849.6 584 859.4 576.2L984.4 462.9C984.4 462.9 984.4 462.9 984.4 462.9L992.2 455.1C998 449.2 1000 443.4 1000 437.5 1000 433.6 998 427.7 992.2 421.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"move\";}}i:16;a:7:{s:3:\"uid\";s:32:\"8e774651ac589f4ec839ccf4a18fc8e6\";s:3:\"css\";s:6:\"crop-1\";s:4:\"code\";i:59408;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:743:\"M968.8 718.8L843.8 718.8 843.8 138.7 960.9 21.5C972.7 9.8 972.7-9.8 960.9-21.5 947.3-33.2 927.7-33.2 916-21.5L800.8 93.8 218.8 93.8 218.8-31.3C218.8-48.8 205.1-62.5 187.5-62.5 169.9-62.5 156.3-48.8 156.3-31.3L156.3 93.8 31.3 93.8C13.7 93.8 0 107.4 0 125 0 142.6 13.7 156.3 31.3 156.3L156.3 156.3 156.3 750C156.3 752 156.3 755.9 158.2 757.8 158.2 759.8 158.2 759.8 158.2 761.7 162.1 769.5 168 775.4 175.8 779.3 177.7 779.3 177.7 779.3 179.7 779.3 181.6 781.3 185.5 781.3 187.5 781.3L781.3 781.3 781.3 906.3C781.3 923.8 794.9 937.5 812.5 937.5 830.1 937.5 843.8 923.8 843.8 906.3L843.8 781.3 968.8 781.3C986.3 781.3 1000 767.6 1000 750 1000 732.4 986.3 718.8 968.8 718.8ZM738.3 156.3L218.8 673.8 218.8 156.3ZM263.7 718.8L781.3 201.2 781.3 718.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"crop\";}}i:17;a:7:{s:3:\"uid\";s:32:\"0ed94772d15c0b3cfe7ab838b039888f\";s:3:\"css\";s:4:\"card\";s:4:\"code\";i:59409;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:428:\"M906.3 109.4L93.8 109.4C41 109.4 0 150.4 0 203.1L0 671.9C0 724.6 41 765.6 93.8 765.6L906.3 765.6C959 765.6 1000 724.6 1000 671.9L1000 203.1C1000 150.4 959 109.4 906.3 109.4ZM93.8 171.9L906.3 171.9C923.8 171.9 937.5 185.5 937.5 203.1L937.5 265.6 62.5 265.6 62.5 203.1C62.5 185.5 76.2 171.9 93.8 171.9ZM906.3 703.1L93.8 703.1C76.2 703.1 62.5 689.5 62.5 671.9L62.5 390.6 937.5 390.6 937.5 671.9C937.5 689.5 923.8 703.1 906.3 703.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"card\";}}i:18;a:7:{s:3:\"uid\";s:32:\"f1714998b56f459891b38a835e31fe0e\";s:3:\"css\";s:3:\"lab\";s:4:\"code\";i:59410;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1006:\"M791 884.8L625 689.5 625 343.8 646.5 343.8C664.1 343.8 677.7 330.1 677.7 312.5 677.7 294.9 664.1 281.3 646.5 281.3L593.8 281.3C576.2 281.3 562.5 294.9 562.5 312.5L562.5 701.2C562.5 709 564.5 714.8 570.3 720.7L697.3 875 302.7 875 429.7 720.7C435.5 714.8 437.5 709 437.5 701.2L437.5 312.5C437.5 294.9 423.8 281.3 406.3 281.3L353.5 281.3C335.9 281.3 322.3 294.9 322.3 312.5 322.3 330.1 335.9 343.8 353.5 343.8L375 343.8 375 689.5 209 884.8C201.2 894.5 197.3 908.2 203.1 919.9 209 929.7 218.8 937.5 232.4 937.5L767.6 937.5C781.3 937.5 791 929.7 796.9 919.9 802.7 908.2 798.8 894.5 791 884.8ZM468.8 250C503.9 250 531.3 222.7 531.3 187.5 531.3 152.3 503.9 125 468.8 125 433.6 125 406.3 152.3 406.3 187.5 406.3 222.7 433.6 250 468.8 250ZM671.9 156.3C732.4 156.3 783.2 107.4 783.2 46.9 783.2-13.7 732.4-62.5 671.9-62.5 611.3-62.5 562.5-13.7 562.5 46.9 562.5 107.4 611.3 156.3 671.9 156.3ZM671.9 0C697.3 0 718.8 21.5 718.8 46.9 718.8 72.3 697.3 93.8 671.9 93.8 646.5 93.8 625 72.3 625 46.9 625 21.5 646.5 0 671.9 0Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"lab\";}}i:19;a:7:{s:3:\"uid\";s:32:\"6e4c9f8982f58807b7c3ad6b4e693cf4\";s:3:\"css\";s:6:\"user-3\";s:4:\"code\";i:59411;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:754:\"M500 0C605.5 0 718.8 89.8 718.8 156.3L718.8 312.5C718.8 373 693.4 488.3 627 541 609.4 552.7 599.6 574.2 603.5 595.7 605.5 619.1 619.1 636.7 638.7 646.5L910.2 775.4C912.1 775.4 937.5 779.3 937.5 812.5L937.5 875 62.5 875 62.5 810.5C62.5 787.1 82 779.3 87.9 775.4L363.3 644.5C382.8 636.7 396.5 617.2 398.4 595.7 402.3 574.2 392.6 552.7 377 539.1 310.5 488.3 281.3 373 281.3 312.5L281.3 156.3C281.3 91.8 394.5 0 500 0M500-62.5C361.3-62.5 218.8 52.7 218.8 156.3L218.8 312.5C218.8 380.9 250 519.5 335.9 587.9L62.5 718.8C62.5 718.8 0 746.1 0 781.3L0 875C0 908.2 27.3 937.5 62.5 937.5L937.5 937.5C970.7 937.5 1000 908.2 1000 875L1000 781.3C1000 744.1 937.5 718.8 937.5 718.8L666 589.8C752 521.5 781.3 386.7 781.3 312.5L781.3 156.3C781.3 52.7 638.7-62.5 500-62.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"user male\";}}i:20;a:7:{s:3:\"uid\";s:32:\"e75c0428a2af4e8baacb115b9d537abf\";s:3:\"css\";s:5:\"speed\";s:4:\"code\";i:59412;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1882:\"M500-27.3C224.6-27.3 0 197.3 0 472.7 0 644.5 87.9 802.7 234.4 894.5 250 904.3 269.5 900.4 277.3 884.8 287.1 871.1 283.2 851.6 267.6 841.8 214.8 808.6 171.9 765.6 138.7 716.8L169.9 697.3C185.5 689.5 191.4 669.9 181.6 654.3 173.8 640.6 154.3 634.8 138.7 644.5L107.4 662.1C82 613.3 68.4 558.6 64.5 503.9L99.6 503.9C117.2 503.9 130.9 488.3 130.9 472.7 130.9 455.1 117.2 441.4 99.6 441.4L64.5 441.4C68.4 382.8 84 328.1 107.4 279.3L138.7 296.9C144.5 300.8 150.4 302.7 154.3 302.7 166 302.7 175.8 296.9 181.6 287.1 191.4 271.5 185.5 252 169.9 244.1L138.7 226.6C169.9 179.7 210.9 140.6 255.9 109.4L273.4 140.6C279.3 150.4 291 156.3 300.8 156.3 306.6 156.3 312.5 154.3 316.4 152.3 332 142.6 337.9 123 328.1 109.4L310.5 78.1C359.4 54.7 412.1 41 468.8 37.1L468.8 76.2C468.8 93.8 482.4 107.4 500 107.4 515.6 107.4 531.3 93.8 531.3 76.2L531.3 37.1C587.9 41 642.6 54.7 691.4 80.1L673.8 109.4C666 123 669.9 142.6 685.5 152.3 691.4 154.3 695.3 156.3 701.2 156.3 712.9 156.3 722.7 150.4 728.5 140.6L746.1 111.3C791 142.6 830.1 181.6 861.3 226.6L832 244.1C816.4 252 812.5 271.5 820.3 287.1 826.2 296.9 835.9 302.7 847.7 302.7 853.5 302.7 857.4 300.8 863.3 296.9L892.6 281.3C916 330.1 931.6 384.8 935.5 441.4L900.4 441.4C884.8 441.4 869.1 455.1 869.1 472.7 869.1 490.2 884.8 503.9 900.4 503.9L935.5 503.9C931.6 558.6 918 613.3 894.5 662.1L863.3 644.5C847.7 634.8 828.1 640.6 820.3 654.3 812.5 669.9 816.4 689.5 832 697.3L863.3 714.8C828.1 767.6 783.2 810.5 728.5 843.8 714.8 853.5 709 873 718.8 886.7 724.6 896.5 734.4 902.3 746.1 902.3 750 902.3 755.9 900.4 761.7 898.4 910.2 806.6 1000 646.5 1000 472.7 1000 197.3 775.4-27.3 500-27.3ZM730.5 375C746.1 365.2 750 347.7 742.2 332 732.4 316.4 714.8 312.5 699.2 320.3L529.3 418C521.5 414.1 509.8 410.2 500 410.2 464.8 410.2 437.5 437.5 437.5 472.7 437.5 507.8 464.8 535.2 500 535.2 533.2 535.2 560.5 507.8 560.5 472.7 560.5 472.7 560.5 472.7 560.5 472.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"speed\";}}i:21;a:7:{s:3:\"uid\";s:32:\"9b029af20f69a2e8e674f5f73a7af520\";s:3:\"css\";s:9:\"youtube-1\";s:4:\"code\";i:59413;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:863:\"M918 123C890.6 103.5 816.4 78.1 500 78.1 160.2 78.1 111.3 107.4 93.8 117.2 7.8 168 0 396.5 0 443.4 0 503.9 9.8 709 93.8 757.8 109.4 767.6 160.2 796.9 500 796.9 816.4 796.9 892.6 771.5 918 752 992.2 699.2 1000 517.6 1000 443.4 1000 380.9 994.1 177.7 918 123ZM882.8 701.2C871.1 709 808.6 734.4 500 734.4 201.2 734.4 138.7 712.9 127 705.1 95.7 687.5 64.5 589.8 62.5 443.4 64.5 294.9 97.7 187.5 127 169.9 138.7 164.1 201.2 140.6 500 140.6 808.6 140.6 871.1 166 882.8 173.8 908.2 193.4 937.5 294.9 937.5 443.4 937.5 593.8 908.2 681.6 882.8 701.2ZM703.1 412.1L421.9 240.2C412.1 234.4 400.4 234.4 390.6 240.2 380.9 246.1 375 255.9 375 267.6L375 611.3C375 623 380.9 634.8 390.6 638.7 396.5 642.6 400.4 642.6 406.3 642.6 412.1 642.6 418 642.6 421.9 638.7L703.1 466.8C712.9 460.9 718.8 451.2 718.8 439.5 718.8 429.7 712.9 418 703.1 412.1ZM437.5 556.6L437.5 322.3 627 439.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"youtube\";}}i:22;a:7:{s:3:\"uid\";s:32:\"07a601478fa07585626a0d2311b3433a\";s:3:\"css\";s:9:\"twitter-3\";s:4:\"code\";i:59414;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1625:\"M668 91.8C720.7 91.8 767.6 113.3 798.8 148.4 839.8 138.7 878.9 125 914.1 105.5 900.4 146.5 871.1 179.7 834 201.2 871.1 197.3 906.3 187.5 937.5 173.8 914.1 209 882.8 240.2 847.7 263.7 847.7 271.5 847.7 279.3 847.7 287.1 847.7 517.6 668 783.2 337.9 783.2 236.3 783.2 142.6 753.9 62.5 705.1 76.2 705.1 89.8 707 105.5 707 189.5 707 267.6 679.7 328.1 632.8 250 630.9 183.6 580.1 160.2 511.7 171.9 513.7 181.6 513.7 193.4 513.7 210.9 513.7 226.6 511.7 242.2 507.8 160.2 492.2 97.7 421.9 97.7 337.9 97.7 335.9 97.7 335.9 97.7 335.9 121.1 347.7 148.4 355.5 179.7 357.4 130.9 326.2 99.6 271.5 99.6 210.9 99.6 179.7 107.4 150.4 123 125 210.9 230.5 343.8 298.8 494.1 306.6 490.2 293 488.3 279.3 488.3 267.6 488.3 169.9 568.4 91.8 668 91.8M937.5 173.8L937.5 173.8M668 29.3C544.9 29.3 443.4 119.1 427.7 236.3 328.1 214.8 236.3 162.1 171.9 84 158.2 70.3 140.6 62.5 123 62.5 121.1 62.5 119.1 62.5 119.1 62.5 97.7 64.5 80.1 74.2 70.3 91.8 46.9 128.9 37.1 169.9 37.1 210.9 37.1 240.2 41 267.6 50.8 293 41 304.7 35.2 320.3 35.2 335.9L35.2 337.9C35.2 398.4 58.6 455.1 99.6 498 97.7 507.8 97.7 519.5 101.6 531.3 115.2 572.3 140.6 609.4 171.9 636.7 150.4 642.6 128.9 644.5 105.5 644.5 93.8 644.5 80.1 642.6 70.3 642.6 66.4 642.6 64.5 642.6 62.5 642.6 35.2 642.6 11.7 658.2 3.9 683.6-5.9 710.9 3.9 742.2 29.3 757.8 121.1 814.5 228.5 845.7 337.9 845.7 693.4 845.7 906.3 566.4 910.2 294.9 939.5 271.5 966.8 242.2 988.3 210.9 996.1 201.2 1000 187.5 1000 173.8 1000 152.3 990.2 134.8 972.7 123 980.5 99.6 972.7 72.3 953.1 56.6 941.4 46.9 927.7 43 914.1 43 902.3 43 892.6 44.9 882.8 50.8 861.3 62.5 839.8 72.3 816.4 80.1 773.4 46.9 722.7 29.3 668 29.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"twitter\";}}i:23;a:7:{s:3:\"uid\";s:32:\"b2a75a97b998369249e3b007fda59146\";s:3:\"css\";s:8:\"tumblr-5\";s:4:\"code\";i:59415;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1156:\"M515.6 0L515.6 218.8 734.4 218.8 734.4 312.5 517.6 312.5 515.6 584C515.6 634.8 519.5 668 523.4 681.6 533.2 705.1 562.5 732.4 619.1 732.4 662.1 732.4 722.7 720.7 765.6 687.5L765.6 832C728.5 849.6 695.3 857.4 664.1 865.2 634.8 871.1 603.5 875 568.4 875 529.3 875 418 875 373 757.8 363.3 736.3 359.4 707 359.4 666L359.4 312.5 234.4 312.5 234.4 216.8C277.3 216.8 402.3 191.4 402.3 0L515.6 0M515.6-62.5L402.3-62.5C367.2-62.5 339.8-35.2 339.8 0 339.8 142.6 259.8 154.3 234.4 154.3 201.2 154.3 171.9 181.6 171.9 216.8L171.9 312.5C171.9 328.1 177.7 343.8 189.5 355.5 201.2 367.2 216.8 375 234.4 375L296.9 375 296.9 666C296.9 714.8 302.7 752 314.5 781.3 341.8 851.6 410.2 937.5 568.4 937.5 607.4 937.5 644.5 933.6 679.7 925.8L685.5 923.8C714.8 918 752 908.2 793 888.7 814.5 878.9 828.1 857.4 828.1 832L828.1 687.5C828.1 664.1 814.5 642.6 793 630.9 785.2 627 775.4 625 765.6 625 752 625 740.2 628.9 728.5 636.7 691.4 664.1 644.5 669.9 619.1 669.9 593.8 669.9 584 662.1 582 660.2 582 654.3 578.1 636.7 578.1 584L578.1 375 734.4 375C769.5 375 796.9 345.7 796.9 312.5L796.9 218.8C796.9 183.6 769.5 156.3 734.4 156.3L578.1 156.3 578.1 0C578.1-35.2 550.8-62.5 515.6-62.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"tumblr\";}}i:24;a:7:{s:3:\"uid\";s:32:\"9484ac617e81a9a513992b4b802542f0\";s:3:\"css\";s:10:\"facebook-3\";s:4:\"code\";i:59416;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:955:\"M568.4 15.6C572.3 15.6 574.2 15.6 574.2 15.6L656.3 15.6 654.3 109.4 574.2 109.4C529.3 109.4 531.3 148.4 531.3 148.4L531.3 296.9 687.5 296.9 666 390.6 529.3 390.6 529.3 859.4 435.5 859.4 435.5 390.6 312.5 390.6 312.5 296.9 435.5 296.9C435.5 296.9 435.5 181.6 435.5 150.4 435.5 23.4 541 15.6 568.4 15.6M656.3 15.6L656.3 15.6M568.4-46.9C544.9-46.9 502-43 460.9-17.6 419.9 5.9 373 54.7 373 150.4L373 234.4 312.5 234.4C294.9 234.4 279.3 240.2 267.6 252 255.9 263.7 250 281.3 250 296.9L250 390.6C250 425.8 277.3 453.1 312.5 453.1L373 453.1 373 859.4C373 892.6 402.3 921.9 435.5 921.9L529.3 921.9C564.5 921.9 591.8 892.6 591.8 859.4L591.8 453.1 666 453.1C693.4 453.1 718.8 433.6 726.6 408.2L748 314.5C753.9 294.9 750 275.4 738.3 259.8 726.6 244.1 709 234.4 687.5 234.4L593.8 234.4 593.8 171.9 654.3 171.9C689.5 171.9 716.8 144.5 716.8 109.4L718.8 19.5C718.8 19.5 718.8 17.6 718.8 15.6 718.8-17.6 689.5-46.9 656.3-46.9L576.2-46.9C574.2-46.9 572.3-46.9 568.4-46.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"facebook\";}}i:25;a:7:{s:3:\"uid\";s:32:\"cf5c9b39ded80b3b255a29654ff07991\";s:3:\"css\";s:9:\"dropbox-3\";s:4:\"code\";i:59417;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1170:\"M1000 156.3C998 146.5 994.1 138.7 984.4 132.8L707-41C695.3-48.8 679.7-46.9 669.9-39.1L500 99.6 330.1-39.1C320.3-46.9 304.7-48.8 293-41L15.6 132.8C5.9 138.7 2 146.5 0 156.3 0 166 3.9 175.8 11.7 183.6L173.8 318.4 35.2 427.7C27.3 433.6 21.5 443.4 23.4 453.1 23.4 462.9 29.3 472.7 37.1 478.5L164.1 562.5C158.2 568.4 154.3 576.2 154.3 585.9L154.3 710.9C154.3 722.7 160.2 732.4 169.9 738.3L484.4 916C488.3 919.9 494.1 919.9 500 919.9 505.9 919.9 511.7 919.9 515.6 916L826.2 738.3C835.9 732.4 841.8 722.7 841.8 710.9L841.8 564.5C841.8 562.5 841.8 560.5 841.8 558.6L962.9 478.5C970.7 472.7 976.6 462.9 976.6 453.1 976.6 443.4 972.7 433.6 964.8 427.7L826.2 318.4 988.3 183.6C996.1 175.8 1000 166 1000 156.3ZM718.8 318.4L500 457 281.3 318.4 500 175.8ZM84 162.1L308.6 23.4 447.3 136.7 224.6 281.3ZM224.6 357.4L445.3 496.1 320.3 591.8 107.4 449.2ZM216.8 597.7L304.7 656.3C314.5 664.1 330.1 662.1 339.8 654.3L466.8 558.6 466.8 834 216.8 693.4ZM779.3 693.4L529.3 835.9 529.3 554.7 658.2 654.3C664.1 658.2 671.9 662.1 677.7 662.1 683.6 662.1 689.5 660.2 695.3 656.3L779.3 599.6 779.3 693.4ZM892.6 449.2L679.7 591.8 554.7 496.1 775.4 357.4ZM775.4 281.3L552.7 136.7 691.4 23.4 916 162.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"dropbox\";}}i:26;a:7:{s:3:\"uid\";s:32:\"da3125c4b1a9cc6f1a5096117f40349f\";s:3:\"css\";s:10:\"dribbble-6\";s:4:\"code\";i:59418;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1255:\"M500-62.5C431.6-62.5 367.2-48.8 306.6-23.4 304.7-23.4 302.7-21.5 300.8-21.5 125 56.6 0 232.4 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM937.5 437.5C937.5 441.4 937.5 445.3 937.5 447.3 888.7 435.5 767.6 412.1 617.2 443.4 605.5 414.1 589.8 382.8 574.2 351.6 572.3 349.6 570.3 345.7 570.3 343.8 730.5 281.3 798.8 199.2 826.2 146.5 894.5 224.6 937.5 326.2 937.5 437.5ZM779.3 101.6C763.7 134.8 710.9 224.6 539.1 289.1 462.9 148.4 402.3 62.5 369.1 19.5 410.2 7.8 455.1 0 500 0 605.5 0 703.1 39.1 779.3 101.6ZM308.6 44.9C335.9 76.2 396.5 158.2 480.5 308.6 285.2 367.2 125 361.3 70.3 355.5 97.7 218.8 187.5 103.5 308.6 44.9ZM62.5 437.5C62.5 431.6 62.5 423.8 62.5 418 82 419.9 111.3 421.9 150.4 421.9 234.4 421.9 361.3 410.2 509.8 365.2 511.7 369.1 515.6 375 517.6 380.9 533.2 408.2 544.9 433.6 556.6 460.9 529.3 468.8 502 478.5 474.6 492.2 296.9 572.3 212.9 687.5 183.6 738.3 109.4 660.2 62.5 554.7 62.5 437.5ZM230.5 781.3C246.1 752 318.4 630.9 500 548.8 527.3 537.1 554.7 527.3 580.1 519.5 640.6 669.9 660.2 793 668 841.8 615.2 863.3 558.6 875 500 875 398.4 875 304.7 839.8 230.5 781.3ZM726.6 812.5C716.8 752 695.3 638.7 642.6 503.9 787.1 474.6 902.3 502 931.6 511.7 910.2 638.7 832 746.1 726.6 812.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"dribbble\";}}i:27;a:7:{s:3:\"uid\";s:32:\"5f6948ece5957301a3c17af16756baa7\";s:3:\"css\";s:8:\"shield-1\";s:4:\"code\";i:59419;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1319:\"M886.7 78.1C875 68.4 859.4 62.5 843.8 62.5 841.8 62.5 841.8 62.5 839.8 62.5 837.9 62.5 828.1 62.5 812.5 62.5 787.1 62.5 736.3 60.5 687.5 48.8 625 33.2 554.7-37.1 533.2-50.8 523.4-58.6 509.8-62.5 498-62.5 486.3-62.5 474.6-58.6 464.8-50.8 460.9-48.8 386.7 31.3 312.5 48.8 265.6 60.5 212.9 62.5 187.5 62.5 171.9 62.5 162.1 62.5 160.2 62.5 158.2 62.5 158.2 62.5 156.3 62.5 140.6 62.5 125 68.4 113.3 78.1 101.6 89.8 93.8 107.4 93.8 125L93.8 281.3C93.8 857.4 470.7 933.6 488.3 935.5 490.2 935.5 494.1 937.5 498 937.5 502 937.5 505.9 935.5 509.8 935.5 525.4 933.6 906.3 857.4 906.3 281.3L906.3 125C906.3 107.4 898.4 89.8 886.7 78.1ZM843.8 281.3C843.8 812.5 498 875 498 875 498 875 156.3 812.5 156.3 281.3 156.3 144.5 156.3 125 156.3 125 156.3 125 168 125 187.5 125 218.8 125 275.4 123 328.1 109.4 414.1 87.9 498 0 498 0 498 0 585.9 87.9 673.8 109.4 726.6 123 781.3 125 812.5 125 832 125 843.8 125 843.8 125 843.8 125 843.8 144.5 843.8 281.3ZM632.8 275.4C621.1 263.7 599.6 263.7 587.9 275.4L500 363.3 412.1 275.4C398.4 263.7 378.9 263.7 367.2 275.4 355.5 287.1 355.5 308.6 367.2 320.3L455.1 408.2 367.2 496.1C355.5 507.8 355.5 529.3 367.2 541 378.9 552.7 398.4 552.7 412.1 541L500 453.1 587.9 541C599.6 552.7 621.1 552.7 632.8 541 644.5 529.3 644.5 507.8 632.8 496.1L544.9 408.2 632.8 320.3C644.5 308.6 644.5 287.1 632.8 275.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:14:\"shield unblock\";}}i:28;a:7:{s:3:\"uid\";s:32:\"a8e858ae14c701feb9d9e1e10fe51285\";s:3:\"css\";s:8:\"tablet-2\";s:4:\"code\";i:59420;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:674:\"M812.5-62.5L187.5-62.5C134.8-62.5 93.8-21.5 93.8 31.3L93.8 843.8C93.8 896.5 134.8 937.5 187.5 937.5L812.5 937.5C865.2 937.5 906.3 896.5 906.3 843.8L906.3 31.3C906.3-21.5 865.2-62.5 812.5-62.5ZM843.8 843.8C843.8 861.3 830.1 875 812.5 875L187.5 875C169.9 875 156.3 861.3 156.3 843.8L156.3 31.3C156.3 13.7 169.9 0 187.5 0L812.5 0C830.1 0 843.8 13.7 843.8 31.3ZM500 718.8C464.8 718.8 437.5 746.1 437.5 781.3 437.5 816.4 464.8 843.8 500 843.8 535.2 843.8 562.5 816.4 562.5 781.3 562.5 746.1 535.2 718.8 500 718.8ZM562.5 31.3L437.5 31.3C419.9 31.3 406.3 44.9 406.3 62.5 406.3 80.1 419.9 93.8 437.5 93.8L562.5 93.8C580.1 93.8 593.8 80.1 593.8 62.5 593.8 44.9 580.1 31.3 562.5 31.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"tablet\";}}i:29;a:7:{s:3:\"uid\";s:32:\"f6286d6d96547ec30ef68ebc4a5b049b\";s:3:\"css\";s:7:\"magic-1\";s:4:\"code\";i:59421;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:959:\"M996.1 357.4L896.5 207 945.3 31.3C949.2 21.5 945.3 9.8 937.5 2 929.7-5.9 918-9.8 908.2-5.9L732.4 44.9 582-56.6C572.3-62.5 560.5-64.5 550.8-58.6 541-54.7 533.2-43 533.2-31.3L527.3 150.4 384.8 261.7C377 267.6 371.1 279.3 373 291 375 302.7 382.8 312.5 394.5 316.4L527.3 363.3C527.3 365.2 525.4 365.2 525.4 365.2L7.8 884.8C-5.9 896.5-5.9 916 7.8 927.7 13.7 933.6 21.5 937.5 29.3 937.5 37.1 937.5 44.9 933.6 50.8 927.7L570.3 410.2C572.3 408.2 572.3 406.3 574.2 402.3L627 546.9C630.9 558.6 640.6 566.4 652.3 568.4 652.3 568.4 654.3 568.4 656.3 568.4 666 568.4 675.8 564.5 681.6 556.6L793 412.1 972.7 406.3C982.4 404.3 994.1 398.4 998 388.7 1003.9 378.9 1003.9 367.2 996.1 357.4ZM775.4 349.6C765.6 349.6 757.8 355.5 752 361.3L666 472.7 619.1 341.8C615.2 332 609.4 326.2 599.6 322.3L468.8 275.4 578.1 189.5C585.9 183.6 589.8 175.8 589.8 166L593.8 27.3 710.9 103.5C718.8 109.4 728.5 111.3 736.3 109.4L871.1 70.3 832 203.1C830.1 212.9 832 222.7 835.9 230.5L914.1 345.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"magic\";}}i:30;a:7:{s:3:\"uid\";s:32:\"1a6f74047e8e786c1ef5a1e090b2f75f\";s:3:\"css\";s:9:\"sandwatch\";s:4:\"code\";i:59422;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:787:\"M814.5 0L750 0 750 210.9C750 312.5 695.3 390.6 576.2 451.2 699.2 513.7 752 589.8 752 703.1 752 777.3 752 839.8 752 875L814.5 875C830.1 875 845.7 888.7 845.7 906.3 845.7 923.8 830.1 937.5 814.5 937.5L185.5 937.5C169.9 937.5 154.3 923.8 154.3 906.3 154.3 888.7 169.9 875 185.5 875L250 875C250 839.8 250 777.3 250 703.1 250 589.8 300.8 513.7 423.8 451.2 306.6 390.6 252 312.5 252 210.9L252 0 185.5 0C169.9 0 154.3-13.7 154.3-31.3 154.3-48.8 169.9-62.5 185.5-62.5L814.5-62.5C830.1-62.5 845.7-48.8 845.7-31.3 845.7-13.7 830.1 0 814.5 0ZM312.5 703.1C312.5 777.3 312.5 839.8 312.5 875L689.5 875C689.5 839.8 689.5 777.3 689.5 703.1 689.5 617.2 656.3 548.8 500 484.4 343.8 548.8 312.5 617.2 312.5 703.1ZM687.5 0L314.5 0 314.5 210.9C314.5 271.5 334 347.7 500 416 666 347.7 687.5 271.5 687.5 210.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"sandwatch\";}}i:31;a:7:{s:3:\"uid\";s:32:\"0052b4fcc91749bc5c7fb5fa1953fe1f\";s:3:\"css\";s:16:\"graduation-cap-3\";s:4:\"code\";i:59423;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:850:\"M966.8 617.2L966.8 365.2 982.4 357.4C994.1 351.6 1000 341.8 1000 330.1 1000 318.4 994.1 306.6 984.4 302.7L513.7 50.8C503.9 44.9 492.2 44.9 484.4 50.8L15.6 302.7C5.9 308.6 0 318.4 0 330.1 0 341.8 5.9 351.6 15.6 357.4L222.7 466.8C218.8 470.7 216.8 476.6 216.8 482.4L216.8 746.1C216.8 755.9 220.7 763.7 228.5 769.5 234.4 775.4 298.8 828.1 498 828.1 695.3 828.1 763.7 779.3 769.5 773.4 777.3 767.6 781.3 757.8 781.3 748L781.3 476.6C781.3 472.7 781.3 468.8 779.3 464.8L904.3 398.4 904.3 617.2C886.7 628.9 875 648.4 875 671.9 875 705.1 902.3 734.4 937.5 734.4 970.7 734.4 1000 705.1 1000 671.9 1000 648.4 986.3 628.9 966.8 617.2ZM718.8 730.5C693.4 742.2 628.9 765.6 498 765.6 367.2 765.6 302.7 740.2 279.3 728.5L279.3 498 482.4 605.5C488.3 607.4 492.2 609.4 498 609.4 502 609.4 507.8 607.4 511.7 605.5L718.8 496.1ZM498 543L95.7 330.1 498 113.3 902.3 328.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:14:\"graduation cap\";}}i:32;a:7:{s:3:\"uid\";s:32:\"d5db04544a0bdddff747d3ebb9e3b370\";s:3:\"css\";s:5:\"ghost\";s:4:\"code\";i:59424;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1218:\"M500-62.5C275.4-62.5 93.8 132.8 93.8 373L93.8 906.3C93.8 919.9 101.6 931.6 113.3 935.5 117.2 937.5 121.1 937.5 125 937.5 134.8 937.5 142.6 933.6 148.4 927.7L265.6 796.9 359.4 923.8C365.2 933.6 373 937.5 382.8 937.5L382.8 937.5C394.5 937.5 402.3 933.6 408.2 925.8L502 800.8 591.8 925.8C597.7 933.6 607.4 937.5 617.2 937.5 627 937.5 636.7 933.6 642.6 925.8L736.3 796.9 851.6 927.7C859.4 937.5 873 939.5 886.7 935.5 898.4 931.6 906.3 919.9 906.3 906.3L906.3 373C906.3 132.8 724.6-62.5 500-62.5ZM843.8 824.2L757.8 726.6C750 720.7 742.2 716.8 732.4 716.8 722.7 716.8 714.8 722.7 709 728.5L617.2 853.5 527.3 730.5C521.5 720.7 511.7 716.8 502 716.8L502 716.8C492.2 716.8 482.4 720.7 476.6 728.5L384.8 853.5 294.9 728.5C289.1 722.7 279.3 716.8 271.5 716.8 269.5 716.8 269.5 716.8 269.5 716.8 259.8 716.8 252 720.7 246.1 726.6L156.3 826.2 156.3 373C156.3 168 310.5 0 500 0 689.5 0 843.8 168 843.8 373L843.8 824.2ZM656.3 281.3C621.1 281.3 593.8 308.6 593.8 343.8 593.8 378.9 621.1 406.3 656.3 406.3 691.4 406.3 718.8 378.9 718.8 343.8 718.8 308.6 691.4 281.3 656.3 281.3ZM343.8 281.3C308.6 281.3 281.3 308.6 281.3 343.8 281.3 378.9 308.6 406.3 343.8 406.3 378.9 406.3 406.3 378.9 406.3 343.8 406.3 308.6 378.9 281.3 343.8 281.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"ghost\";}}i:33;a:7:{s:3:\"uid\";s:32:\"4a183c194cb45b7abb2693039990bd7e\";s:3:\"css\";s:4:\"game\";s:4:\"code\";i:59425;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1645:\"M726.6 11.7C701.2 0 677.7-11.7 656.3-21.5 599.6-50.8 550.8-62.5 502-62.5 406.3-62.5 339.8-7.8 298.8 33.2L263.7 68.4 240.2 91.8 207 125 154.3 177.7 97.7 236.3C-11.7 343.8-29.3 455.1 41 593.8 50.8 615.2 62.5 638.7 74.2 664.1 136.7 798.8 203.1 937.5 310.5 937.5 312.5 937.5 316.4 937.5 318.4 937.5 429.7 929.7 460.9 787.1 488.3 662.1 492.2 642.6 496.1 623 500 605.5 507.8 576.2 523.4 558.6 562.5 517.6L568.4 511.7 572.3 509.8 576.2 505.9 580.1 500C621.1 460.9 638.7 445.3 668 437.5 685.5 433.6 705.1 429.7 724.6 425.8 849.6 398.4 992.2 367.2 1000 255.9 1009.8 144.5 865.2 76.2 726.6 11.7ZM935.5 250C929.7 328.1 755.9 351.6 652.3 377 605.5 388.7 578.1 414.1 535.2 455.1 533.2 459 529.3 460.9 527.3 464.8 523.4 466.8 521.5 470.7 517.6 472.7 476.6 515.6 451.2 543 439.5 589.8 414.1 693.4 390.6 867.2 312.5 873 312.5 873 310.5 873 308.6 873 226.6 873 156.3 685.5 95.7 564.5 33.2 439.5 60.5 357.4 140.6 279.3 156.3 263.7 173.8 244.1 197.3 220.7 220.7 197.3 250 168 283.2 134.8 306.6 111.3 326.2 91.8 341.8 76.2 390.6 27.3 441.4-2 502-2 539.1-2 580.1 9.8 627 33.2 750 95.7 943.4 166 935.5 250ZM466.8 281.3L529.3 281.3 529.3 218.8 466.8 218.8ZM466.8 187.5L529.3 187.5 529.3 125 466.8 125ZM560.5 187.5L623 187.5 623 125 560.5 125ZM560.5 281.3L623 281.3 623 218.8 560.5 218.8ZM322.3 468.8L345.7 445.3C357.4 433.6 357.4 414.1 345.7 402.3 334 390.6 314.5 390.6 302.7 402.3L279.3 425.8 255.9 402.3C244.1 390.6 224.6 390.6 212.9 402.3 201.2 414.1 201.2 433.6 212.9 445.3L236.3 468.8 212.9 492.2C201.2 503.9 201.2 523.4 212.9 535.2 224.6 546.9 244.1 546.9 255.9 535.2L279.3 509.8 304.7 535.2C316.4 546.9 334 546.9 345.7 535.2 357.4 523.4 357.4 503.9 345.7 492.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"game\";}}i:34;a:7:{s:3:\"uid\";s:32:\"41692a18920918845815082910d0d847\";s:3:\"css\";s:6:\"fire-4\";s:4:\"code\";i:59426;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1259:\"M496.1 937.5C261.7 937.5 93.8 773.4 93.8 548.8 93.8 429.7 166 300.8 168 294.9 173.8 283.2 187.5 277.3 199.2 279.3 212.9 281.3 222.7 289.1 226.6 302.7 226.6 302.7 246.1 375 271.5 416 287.1 441.4 304.7 460.9 324.2 474.6 312.5 418 300.8 330.1 318.4 242.2 363.3 0 554.7-58.6 562.5-60.5 572.3-64.5 584-60.5 591.8-52.7 599.6-46.9 603.5-35.2 601.6-25.4 601.6-23.4 570.3 146.5 636.7 291 642.6 304.7 652.3 320.3 660.2 335.9 664.1 314.5 668 293 673.8 271.5 697.3 185.5 761.7 156.3 763.7 154.3 775.4 148.4 787.1 150.4 796.9 158.2 804.7 166 810.5 177.7 808.6 187.5 806.6 191.4 798.8 248 847.7 332 892.6 406.3 906.3 455.1 906.3 548.8 906.3 773.4 734.4 937.5 496.1 937.5ZM191.4 394.5C173.8 437.5 156.3 494.1 156.3 548.8 156.3 736.3 296.9 875 496.1 875 697.3 875 843.8 736.3 843.8 548.8 843.8 466.8 834 429.7 794.9 363.3 769.5 320.3 755.9 281.3 750 250 744.1 259.8 738.3 273.4 734.4 287.1 714.8 353.5 718.8 431.6 718.8 433.6 720.7 447.3 710.9 459 699.2 464.8 685.5 468.8 669.9 464.8 662.1 453.1 660.2 449.2 605.5 371.1 580.1 318.4 529.3 209 529.3 89.8 535.2 21.5 484.4 50.8 404.3 117.2 378.9 253.9 355.5 386.7 402.3 519.5 404.3 521.5 408.2 531.3 406.3 543 398.4 552.7 390.6 560.5 378.9 564.5 367.2 562.5 363.3 560.5 275.4 539.1 218.8 449.2 207 431.6 199.2 414.1 191.4 394.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"fire\";}}i:35;a:7:{s:3:\"uid\";s:32:\"34d2777e77ee75c3d82a38039496b167\";s:3:\"css\";s:9:\"glasses-1\";s:4:\"code\";i:59427;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1486:\"M1002 574.2C1000 560.5 949.2 261.7 941.4 214.8 941.4 209 939.5 205.1 939.5 199.2 933.6 152.3 921.9 62.5 777.3 62.5 759.8 62.5 746.1 76.2 746.1 93.8 746.1 111.3 759.8 125 777.3 125 867.2 125 871.1 162.1 877 207 878.9 212.9 878.9 218.8 880.9 224.6 882.8 246.1 900.4 334 914.1 421.9 877 392.6 832 377 783.2 377 703.1 377 630.9 419.9 593.8 482.4 574.2 476.6 543 466.8 500 466.8 457 466.8 427.7 476.6 408.2 484.4 369.1 419.9 300.8 377 220.7 377 168 377 119.1 394.5 82 425.8 95.7 337.9 113.3 248 117.2 224.6 117.2 218.8 119.1 212.9 119.1 207 125 162.1 130.9 125 218.8 125 236.3 125 250 111.3 250 93.8 250 76.2 236.3 62.5 218.8 62.5 74.2 62.5 62.5 152.3 56.6 199.2 56.6 205.1 56.6 209 54.7 214.8 46.9 261.7 0 558.6-2 572.3-2 574.2-2 578.1 0 580.1 0 585.9-2 589.8-2 593.8-2 714.8 99.6 812.5 220.7 812.5 339.8 812.5 437.5 714.8 437.5 593.8 437.5 576.2 435.5 558.6 431.6 541 443.4 537.1 466.8 529.3 500 529.3 531.3 529.3 554.7 535.2 568.4 541 564.5 558.6 560.5 576.2 560.5 593.8 560.5 714.8 662.1 812.5 783.2 812.5 902.3 812.5 1000 714.8 1000 593.8 1000 591.8 1000 587.9 1000 584 1002 582 1002 578.1 1002 574.2ZM220.7 750C134.8 750 60.5 679.7 60.5 593.8 60.5 509.8 134.8 439.5 220.7 439.5 306.6 439.5 375 507.8 375 593.8 375 679.7 306.6 750 220.7 750ZM783.2 750C697.3 750 623 679.7 623 593.8 623 509.8 697.3 439.5 783.2 439.5 857.4 439.5 918 490.2 933.6 560.5 935.5 566.4 935.5 572.3 935.5 578.1 935.5 582 937.5 584 937.5 585.9 937.5 587.9 937.5 591.8 937.5 593.8 937.5 679.7 869.1 750 783.2 750Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"glasses\";}}i:36;a:7:{s:3:\"uid\";s:32:\"e4b85304321c70f23eadfaf50b6d3a6f\";s:3:\"css\";s:14:\"envelope-empty\";s:4:\"code\";i:59428;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:748:\"M1000 400.4C998 388.7 994.1 378.9 988.3 369.1L988.3 369.1 986.3 369.1C984.4 365.2 980.5 361.3 976.6 357.4L568.4-35.2C533.2-72.3 470.7-72.3 435.5-35.2L27.3 355.5C19.5 363.3 0 384.8 0 406.3L0 875C0 910.2 27.3 937.5 62.5 937.5L937.5 937.5C972.7 937.5 1000 910.2 1000 875L1000 408.2C1000 406.3 1000 402.3 1000 400.4ZM263.7 646.5L62.5 832 62.5 468.8ZM328.1 671.9C330.1 671.9 332 669.9 334 668 334 666 334 666 334 666L472.7 539.1C480.5 533.2 488.3 531.3 496.1 531.3 505.9 531.3 515.6 533.2 521.5 539.1L896.5 875 107.4 875ZM740.2 650.4L937.5 474.6 937.5 828.1ZM101.6 369.1L480.5 7.8C486.3 2 494.1-2 502-2 509.8-2 517.6 2 523.4 7.8L877 343.8 875 343.8 929.7 398.4 693.4 609.4 560.5 490.2C523.4 460.9 470.7 459 431.6 492.2L310.5 603.5 74.2 396.5 99.6 369.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:14:\"envelope empty\";}}i:37;a:7:{s:3:\"uid\";s:32:\"3579ef09633059621d592e99e8d8afdb\";s:3:\"css\";s:15:\"envelope-letter\";s:4:\"code\";i:59429;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:997:\"M1000 400.4C998 388.7 994.1 378.9 988.3 369.1L988.3 369.1 986.3 369.1C984.4 365.2 980.5 361.3 976.6 357.4L812.5 193.4 812.5 91.8C812.5 76.2 798.8 60.5 781.3 60.5L681.6 60.5 568.4-35.2C533.2-72.3 470.7-72.3 435.5-35.2L322.3 60.5 218.8 60.5C201.2 60.5 187.5 76.2 187.5 91.8L187.5 195.3 27.3 355.5C11.7 365.2 0 384.8 0 406.3L0 875C0 910.2 27.3 937.5 62.5 937.5L937.5 937.5C972.7 937.5 1000 910.2 1000 875L1000 408.2C1000 406.3 1000 402.3 1000 400.4ZM261.7 646.5L62.5 832 62.5 468.8ZM322.3 675.8C326.2 673.8 330.1 669.9 334 668 335.9 666 335.9 664.1 337.9 662.1L472.7 537.1C480.5 531.3 488.3 527.3 496.1 527.3 505.9 527.3 515.6 531.3 521.5 535.2L896.5 875 107.4 875ZM740.2 650.4L937.5 474.6 937.5 828.1ZM877 343.8L875 343.8 929.7 398.4 812.5 502 812.5 279.3ZM480.5 7.8C486.3 2 494.1-2 502-2 509.8-2 517.6 2 523.4 7.8L587.9 60.5 416 60.5ZM750 123L750 558.6 693.4 607.4 560.5 486.3C523.4 459 470.7 457 431.6 488.3L308.6 603.5 250 550.8 250 123ZM101.6 369.1L187.5 283.2 187.5 496.1 74.2 396.5 99.6 369.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:15:\"envelope letter\";}}i:38;a:7:{s:3:\"uid\";s:32:\"8021124170b6337e7b6a15330824f702\";s:3:\"css\";s:6:\"bell-3\";s:4:\"code\";i:59430;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:804:\"M884.8 632.8C847.7 587.9 798.8 525.4 798.8 460.9L798.8 257.8C798.8 82 666-60.5 498-60.5 330.1-60.5 199.2 82 199.2 257.8L199.2 460.9C199.2 525.4 146.5 584 111.3 630.9 80.1 671.9 56.6 705.1 72.3 736.3 87.9 765.6 123 769.5 154.3 769.5L332 769.5C332 861.3 406.3 935.5 500 935.5 591.8 935.5 666 861.3 666 769.5L849.6 769.5C867.2 769.5 912.1 769.5 927.7 738.3 943.4 705.1 918 673.8 884.8 632.8ZM500 871.1C443.4 871.1 398.4 826.2 398.4 769.5L599.6 769.5C599.6 826.2 554.7 871.1 500 871.1ZM849.6 703.1L154.3 703.1C148.4 703.1 144.5 703.1 140.6 703.1 148.4 693.4 156.3 679.7 164.1 669.9 203.1 619.1 265.6 546.9 265.6 460.9L265.6 257.8C265.6 119.1 367.2 5.9 498 5.9 628.9 5.9 732.4 119.1 732.4 257.8L732.4 460.9C732.4 548.8 791 623 832 675.8 839.8 683.6 849.6 693.4 855.5 703.1 853.5 703.1 851.6 703.1 849.6 703.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"bell\";}}i:39;a:7:{s:3:\"uid\";s:32:\"1d1f786fd1f159df7fe0e69696b7604e\";s:3:\"css\";s:9:\"award-alt\";s:4:\"code\";i:59431;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:994:\"M998 757.8L814.5 419.9C832 377 843.8 330.1 843.8 281.3 843.8 91.8 689.5-62.5 500-62.5 310.5-62.5 156.3 91.8 156.3 281.3 156.3 332 168 378.9 187.5 421.9L3.9 757.8C-3.9 767.6-2 781.3 5.9 791 13.7 800.8 25.4 806.6 37.1 802.7L193.4 767.6 248 916C252 927.7 261.7 935.5 275.4 937.5 275.4 937.5 277.3 937.5 277.3 937.5 289.1 937.5 298.8 931.6 304.7 919.9L464.8 623C476.6 625 488.3 625 500 625 509.8 625 521.5 625 531.3 623L695.3 921.9C701.2 931.6 710.9 937.5 722.7 937.5 722.7 937.5 724.6 937.5 724.6 937.5 738.3 935.5 748 927.7 752 916L806.6 767.6 962.9 802.7C974.6 806.6 986.3 800.8 994.1 791 1002 781.3 1003.9 769.5 998 757.8ZM283.2 830.1L244.1 720.7C238.3 705.1 222.7 697.3 207 699.2L91.8 726.6 222.7 486.3C267.6 544.9 328.1 587.9 400.4 609.4ZM218.8 281.3C218.8 127 345.7 0 500 0 654.3 0 781.3 127 781.3 281.3 781.3 435.5 654.3 562.5 500 562.5 345.7 562.5 218.8 435.5 218.8 281.3ZM793 699.2C777.3 697.3 761.7 705.1 755.9 720.7L716.8 830.1 595.7 611.3C669.9 589.8 734.4 543 777.3 482.4L910.2 726.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"award prize\";}}i:40;a:7:{s:3:\"uid\";s:32:\"881c93289f5f82197d9422f81d34d900\";s:3:\"css\";s:8:\"anchor-3\";s:4:\"code\";i:59432;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1383:\"M998 652.3L916 503.9C916 503.9 916 503.9 916 503.9L910.2 494.1C908.2 488.3 902.3 484.4 896.5 482.4 890.6 482.4 884.8 482.4 880.9 486.3L871.1 492.2C871.1 492.2 869.1 492.2 869.1 492.2L728.5 587.9C716.8 595.7 712.9 609.4 720.7 621.1L726.6 627C732.4 638.7 746.1 638.7 757.8 632.8L841.8 574.2C822.3 736.3 691.4 861.3 531.3 875L531.3 248 656.3 248C673.8 248 687.5 234.4 687.5 216.8 687.5 201.2 673.8 185.5 656.3 185.5L529.3 185.5C529.3 185.5 529.3 185.5 529.3 183.6 584 171.9 627 121.1 627 60.5 627-7.8 570.3-64.5 500-64.5 431.6-64.5 375-7.8 375 60.5 375 121.1 416 169.9 470.7 183.6 470.7 185.5 470.7 185.5 470.7 185.5L343.8 185.5C326.2 185.5 312.5 201.2 312.5 216.8 312.5 234.4 326.2 248 343.8 248L468.8 248 468.8 875C308.6 861.3 177.7 736.3 158.2 574.2L242.2 632.8C252 638.7 267.6 638.7 273.4 627L279.3 621.1C287.1 609.4 283.2 595.7 271.5 587.9L130.9 492.2C130.9 492.2 128.9 492.2 128.9 492.2L119.1 486.3C115.2 482.4 109.4 482.4 103.5 482.4 97.7 484.4 91.8 488.3 89.8 494.1L84 503.9C84 503.9 84 503.9 84 503.9L2 652.3C-3.9 662.1 0 677.7 9.8 683.6L19.5 687.5C29.3 693.4 43 687.5 48.8 677.7L95.7 589.8C125 789.1 296.9 939.5 500 939.5 703.1 939.5 875 789.1 904.3 589.8L951.2 677.7C957 687.5 970.7 693.4 980.5 687.5L990.2 683.6C1000 677.7 1003.9 662.1 998 652.3ZM437.5 60.5C437.5 27.3 464.8-2 500-2 535.2-2 564.5 27.3 564.5 60.5 564.5 95.7 535.2 125 500 125 464.8 125 437.5 95.7 437.5 60.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"anchor\";}}i:41;a:7:{s:3:\"uid\";s:32:\"121a77c02ffeabc88c5330e3dbe128b7\";s:3:\"css\";s:8:\"wallet-1\";s:4:\"code\";i:59433;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:659:\"M1000 220.7C1000 197.3 994.1 144.5 923.8 125L224.6-15.6 218.8-15.6C166-15.6 125 25.4 125 78.1L125 203.1 93.8 203.1C41 203.1 0 246.1 0 296.9L0 796.9C0 849.6 41 890.6 93.8 890.6L906.3 890.6C959 890.6 1000 849.6 1000 796.9ZM187.5 78.1C187.5 62.5 199.2 48.8 214.8 46.9L904.3 185.5C904.3 185.5 900.4 203.1 875 203.1L187.5 203.1ZM937.5 796.9C937.5 814.5 923.8 828.1 906.3 828.1L93.8 828.1C76.2 828.1 62.5 814.5 62.5 796.9L62.5 296.9C62.5 279.3 76.2 265.6 93.8 265.6L875 265.6C906.3 265.6 937.5 255.9 937.5 234.4L937.5 796.9ZM187.5 484.4C152.3 484.4 125 513.7 125 546.9 125 582 152.3 609.4 187.5 609.4 222.7 609.4 250 582 250 546.9 250 513.7 222.7 484.4 187.5 484.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"wallet money\";}}i:42;a:7:{s:3:\"uid\";s:32:\"0608f9368601ce87e1ddca30dbd82b91\";s:3:\"css\";s:8:\"vector-1\";s:4:\"code\";i:59434;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1186:\"M968.8 593.8L937.5 593.8 937.5 591.8C937.5 433.6 853.5 294.9 726.6 218.8L882.8 218.8C894.5 238.3 914.1 250 937.5 250 972.7 250 1000 222.7 1000 187.5 1000 152.3 972.7 125 937.5 125 914.1 125 894.5 136.7 882.8 156.3L593.8 156.3 593.8 125C593.8 107.4 580.1 93.8 562.5 93.8L437.5 93.8C419.9 93.8 406.3 107.4 406.3 125L406.3 156.3 117.2 156.3C105.5 136.7 85.9 125 62.5 125 27.3 125 0 152.3 0 187.5 0 222.7 27.3 250 62.5 250 85.9 250 105.5 238.3 117.2 218.8L273.4 218.8C146.5 294.9 62.5 433.6 62.5 591.8L62.5 593.8 31.3 593.8C13.7 593.8 0 607.4 0 625L0 750C0 767.6 13.7 781.3 31.3 781.3L156.3 781.3C173.8 781.3 187.5 767.6 187.5 750L187.5 625C187.5 607.4 173.8 593.8 156.3 593.8L125 593.8 125 591.8C125 418 244.1 271.5 406.3 228.5L406.3 250C406.3 267.6 419.9 281.3 437.5 281.3L562.5 281.3C580.1 281.3 593.8 267.6 593.8 250L593.8 228.5C755.9 271.5 875 418 875 591.8L875 593.8 843.8 593.8C826.2 593.8 812.5 607.4 812.5 625L812.5 750C812.5 767.6 826.2 781.3 843.8 781.3L968.8 781.3C986.3 781.3 1000 767.6 1000 750L1000 625C1000 607.4 986.3 593.8 968.8 593.8ZM125 718.8L62.5 718.8 62.5 656.3 125 656.3ZM531.3 218.8L468.8 218.8 468.8 156.3 531.3 156.3ZM937.5 718.8L875 718.8 875 656.3 937.5 656.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"vector\";}}i:43;a:7:{s:3:\"uid\";s:32:\"80f0d44859c66bc9bfb05a9ef57b8ee2\";s:3:\"css\";s:7:\"message\";s:4:\"code\";i:59435;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:859:\"M937.5 0L62.5 0C27.3 0 0 27.3 0 62.5L0 627C0 660.2 27.3 689.5 62.5 689.5L187.5 689.5 187.5 843.8C187.5 857.4 195.3 867.2 207 873 210.9 875 214.8 875 218.8 875 226.6 875 234.4 873 240.2 867.2L419.9 689.5 937.5 689.5C972.7 689.5 1000 660.2 1000 627L1000 62.5C1000 27.3 972.7 0 937.5 0ZM937.5 627L394.5 627 250 769.5 250 627 62.5 627 62.5 62.5 937.5 62.5ZM218.8 377L781.3 377C798.8 377 812.5 361.3 812.5 345.7 812.5 328.1 798.8 314.5 781.3 314.5L218.8 314.5C201.2 314.5 187.5 328.1 187.5 345.7 187.5 361.3 201.2 377 218.8 377ZM218.8 252L781.3 252C798.8 252 812.5 236.3 812.5 220.7 812.5 203.1 798.8 189.5 781.3 189.5L218.8 189.5C201.2 189.5 187.5 203.1 187.5 220.7 187.5 236.3 201.2 252 218.8 252ZM218.8 502L593.8 502C611.3 502 625 486.3 625 470.7 625 453.1 611.3 439.5 593.8 439.5L218.8 439.5C201.2 439.5 187.5 453.1 187.5 470.7 187.5 486.3 201.2 502 218.8 502Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"message sms\";}}i:44;a:7:{s:3:\"uid\";s:32:\"bf40d3623fc37fb2fa39d18fd2406a43\";s:3:\"css\";s:8:\"puzzle-2\";s:4:\"code\";i:59436;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1303:\"M500 937.5C480.5 937.5 460.9 929.7 447.3 916L21.5 490.2C-7.8 460.9-7.8 414.1 21.5 384.8L177.7 228.5C187.5 218.8 201.2 216.8 214.8 222.7 226.6 228.5 232.4 242.2 230.5 255.9 228.5 265.6 228.5 271.5 228.5 279.3 228.5 347.7 283.2 404.3 351.6 404.3 419.9 404.3 470.7 347.7 470.7 279.3 470.7 210.9 419.9 154.3 351.6 154.3 345.7 154.3 337.9 156.3 330.1 156.3 316.4 160.2 302.7 152.3 296.9 140.6 289.1 128.9 293 113.3 302.7 103.5L447.3-41C476.6-70.3 525.4-70.3 552.7-41L658.2 64.5C681.6-3.9 746.1-54.7 822.3-54.7 918-54.7 994.1 23.4 994.1 117.2 994.1 193.4 945.3 259.8 875 281.3L978.5 384.8C1007.8 414.1 1007.8 460.9 978.5 490.2L552.7 916C539.1 929.7 519.5 937.5 500 937.5ZM169.9 324.2L64.5 429.7C60.5 433.6 60.5 441.4 66.4 445.3L492.2 871.1C498 877 502 877 507.8 871.1L933.6 445.3C939.5 441.4 939.5 433.6 933.6 429.7L785.2 279.3C775.4 269.5 771.5 253.9 777.3 242.2 783.2 230.5 796.9 224.6 810.5 224.6L814.5 226.6C816.4 226.6 820.3 226.6 822.3 226.6 882.8 226.6 931.6 177.7 931.6 117.2 931.6 56.6 882.8 7.8 822.3 7.8 761.7 7.8 712.9 56.6 712.9 117.2 712.9 119.1 712.9 123 714.8 125L714.8 130.9C716.8 144.5 709 156.3 697.3 162.1 685.5 168 671.9 166 662.1 156.3L507.8 2C502-3.9 498-3.9 492.2 2L396.5 97.7C478.5 117.2 533.2 191.4 533.2 279.3 533.2 380.9 455.1 466.8 351.6 466.8 263.7 466.8 191.4 404.3 169.9 324.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"puzzle\";}}i:45;a:7:{s:3:\"uid\";s:32:\"c557508b402c8012596e57f48e45fcc7\";s:3:\"css\";s:7:\"print-3\";s:4:\"code\";i:59437;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:721:\"M929.7 185.5L812.5 185.5 812.5-62.5 187.5-62.5 187.5 185.5 70.3 185.5C31.3 185.5 0 216.8 0 255.9L0 679.7C0 718.8 31.3 750 70.3 750L187.5 750 187.5 937.5 812.5 937.5 812.5 750 929.7 750C968.8 750 1000 718.8 1000 679.7L1000 255.9C1000 216.8 968.8 185.5 929.7 185.5ZM250 0L750 0 750 185.5 250 185.5ZM750 875L250 875 250 531.3 750 531.3ZM937.5 679.7C937.5 683.6 933.6 687.5 929.7 687.5L812.5 687.5 812.5 468.8 187.5 468.8 187.5 687.5 70.3 687.5C66.4 687.5 62.5 683.6 62.5 679.7L62.5 255.9C62.5 252 66.4 248 70.3 248L929.7 248C933.6 248 937.5 252 937.5 255.9ZM812.5 312.5L781.3 312.5C763.7 312.5 750 326.2 750 343.8 750 361.3 763.7 375 781.3 375L812.5 375C830.1 375 843.8 361.3 843.8 343.8 843.8 326.2 830.1 312.5 812.5 312.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"print\";}}i:46;a:7:{s:3:\"uid\";s:32:\"055b861aab6ffaba954334e7dd61f097\";s:3:\"css\";s:6:\"gift-3\";s:4:\"code\";i:59438;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:826:\"M1000 250C1000 216.8 972.7 187.5 937.5 187.5L830.1 187.5C859.4 160.2 877 125 877 82 877 27.3 845.7-31.3 757.8-31.3 642.6-31.3 546.9 89.8 502 158.2 457 89.8 357.4-31.3 242.2-31.3 156.3-31.3 125 27.3 125 82 125 125 142.6 160.2 171.9 187.5L62.5 187.5C27.3 187.5 0 216.8 0 250L0 437.5 62.5 437.5 62.5 843.8C62.5 878.9 91.8 906.3 125 906.3L875 906.3C910.2 906.3 937.5 878.9 937.5 843.8L937.5 437.5 1000 437.5ZM757.8 31.3C796.9 31.3 814.5 46.9 814.5 82 814.5 150.4 736.3 187.5 664.1 187.5L556.6 187.5C601.6 121.1 679.7 31.3 757.8 31.3ZM242.2 31.3C320.3 31.3 402.3 121.1 447.3 187.5L339.8 187.5C267.6 187.5 187.5 150.4 187.5 80.1 187.5 46.9 205.1 31.3 242.2 31.3ZM937.5 375L531.3 375 531.3 250 937.5 250ZM62.5 250L468.8 250 468.8 375 62.5 375ZM125 437.5L468.8 437.5 468.8 843.8 125 843.8ZM875 843.8L531.3 843.8 531.3 437.5 875 437.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"gift\";}}i:47;a:7:{s:3:\"uid\";s:32:\"e810c3f66c43a02e92d3ebd99e805d06\";s:3:\"css\";s:9:\"note-list\";s:4:\"code\";i:59439;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:913:\"M33.2 0L470.7 0C488.3 0 502-13.7 502-31.3 502-48.8 488.3-62.5 470.7-62.5L33.2-62.5C15.6-62.5 2-48.8 2-31.3 2-13.7 15.6 0 33.2 0ZM33.2 187.5L470.7 187.5C488.3 187.5 502 173.8 502 156.3 502 138.7 488.3 125 470.7 125L33.2 125C15.6 125 2 138.7 2 156.3 2 173.8 15.6 187.5 33.2 187.5ZM502 343.8C502 326.2 488.3 312.5 470.7 312.5L33.2 312.5C15.6 312.5 2 326.2 2 343.8 2 361.3 15.6 375 33.2 375L470.7 375C488.3 375 502 361.3 502 343.8ZM988.3 253.9L683.6-50.8C673.8-60.5 660.2-62.5 648.4-56.6 634.8-52.7 627-41 627-27.3L627 664.1C593.8 640.6 550.8 625 502 625 398.4 625 314.5 695.3 314.5 781.3 314.5 867.2 398.4 937.5 502 937.5 605.5 937.5 689.5 867.2 689.5 781.3 689.5 777.3 689.5 773.4 689.5 769.5L689.5 43 945.3 298.8C957 310.5 976.6 310.5 988.3 298.8 1002 287.1 1002 267.6 988.3 253.9ZM627 785.2C625 828.1 574.2 875 502 875 427.7 875 377 826.2 377 781.3 377 736.3 427.7 687.5 502 687.5 574.2 687.5 625 734.4 627 777.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"note\";}}i:48;a:7:{s:3:\"uid\";s:32:\"44419ade157f936521d1f84d7fa95f45\";s:3:\"css\";s:8:\"attach-3\";s:4:\"code\";i:59440;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1041:\"M990.2 308.6L630.9-52.7C623-60.5 613.3-64.5 601.6-60.5 591.8-58.6 582-50.8 580.1-41 558.6 29.3 554.7 91.8 572.3 150.4 570.3 150.4 568.4 152.3 568.4 154.3L400.4 320.3C345.7 294.9 289.1 281.3 230.5 281.3 193.4 281.3 158.2 287.1 123 298.8 113.3 300.8 105.5 310.5 103.5 320.3 99.6 330.1 103.5 341.8 111.3 349.6L324.2 564.5 25.4 869.1 0 937.5 62.5 912.1 369.1 609.4 585.9 828.1C591.8 834 599.6 835.9 607.4 835.9 609.4 835.9 613.3 835.9 615.2 835.9 625 832 634.8 824.2 636.7 814.5 666 722.7 658.2 625 617.2 537.1L789.1 367.2C789.1 367.2 789.1 365.2 789.1 365.2 816.4 373 841.8 377 869.1 377 904.3 377 941.4 371.1 978.5 359.4 988.3 357.4 996.1 347.7 1000 337.9 1002 328.1 998 316.4 990.2 308.6ZM589.8 742.2L195.3 345.7C296.9 334 406.3 375 484.4 455.1 562.5 533.2 601.6 640.6 589.8 742.2ZM585.9 480.5C570.3 455.1 550.8 431.6 529.3 410.2 505.9 388.7 482.4 369.1 457 351.6L597.7 210.9C613.3 236.3 630.9 259.8 654.3 283.2 677.7 306.6 701.2 324.2 726.6 339.8ZM697.3 238.3C638.7 177.7 615.2 111.3 627 31.3L906.3 312.5C826.2 324.2 759.8 300.8 697.3 238.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"attach\";}}i:49;a:7:{s:3:\"uid\";s:32:\"228a1fcf8c2f993bf7ccde61206d877d\";s:3:\"css\";s:5:\"image\";s:4:\"code\";i:59441;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:659:\"M937.5 15.6L62.5 15.6C27.3 15.6 0 43 0 78.1L0 796.9C0 832 27.3 859.4 62.5 859.4L937.5 859.4C972.7 859.4 1000 832 1000 796.9L1000 78.1C1000 43 972.7 15.6 937.5 15.6ZM937.5 796.9L62.5 796.9 62.5 613.3 312.5 369.1 572.3 628.9C582 640.6 601.6 638.7 615.2 628.9L728.5 525.4 935.5 736.3C935.5 738.3 937.5 738.3 937.5 738.3ZM937.5 650.4L753.9 462.9C742.2 451.2 724.6 449.2 712.9 459L595.7 562.5 335.9 306.6C330.1 298.8 322.3 294.9 314.5 294.9 306.6 294.9 296.9 296.9 291 302.7L62.5 525.4 62.5 78.1 937.5 78.1ZM718.8 328.1C753.9 328.1 781.3 300.8 781.3 265.6 781.3 232.4 753.9 203.1 718.8 203.1 683.6 203.1 656.3 232.4 656.3 265.6 656.3 300.8 683.6 328.1 718.8 328.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"image\";}}i:50;a:7:{s:3:\"uid\";s:32:\"35b37d45fa8370fec3ab314517db139e\";s:3:\"css\";s:5:\"map-2\";s:4:\"code\";i:59442;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:416:\"M970.7 70.3L656.3-60.5 343.8 62.5 29.3-60.5C27.3-60.5 25.4-62.5 21.5-62.5 9.8-62.5 0-52.7 0-37.1L0 773.4C0 789.1 13.7 808.6 29.3 812.5L345.7 937.5 656.3 810.5 970.7 933.6C972.7 933.6 974.6 933.6 978.5 933.6 990.2 933.6 1000 925.8 1000 910.2L1000 109.4C1000 91.8 986.3 74.2 970.7 70.3ZM375 115.2L625 15.6 625 759.8 375 859.4ZM62.5 21.5L312.5 115.2 312.5 859.4 62.5 755.9ZM937.5 853.5L687.5 759.8 687.5 17.6 937.5 125Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"map\";}}i:51;a:7:{s:3:\"uid\";s:32:\"09238a63a4df117f1eb554d63b741d69\";s:3:\"css\";s:6:\"layers\";s:4:\"code\";i:59443;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:978:\"M21.5 232.4L484.4 484.4C490.2 488.3 494.1 488.3 500 488.3 505.9 488.3 509.8 488.3 515.6 484.4L984.4 232.4C994.1 226.6 1000 216.8 1000 205.1 1000 193.4 994.1 181.6 982.4 177.7L519.5-58.6C509.8-62.5 500-62.5 490.2-58.6L21.5 177.7C11.7 181.6 5.9 193.4 5.9 205.1 3.9 216.8 11.7 226.6 21.5 232.4ZM505.9 3.9L902.3 205.1 500 421.9 103.5 205.1ZM978.5 406.3L884.8 359.4 818.4 396.5 896.5 435.5 494.1 652.3 97.7 435.5 181.6 394.5 115.2 357.4 17.6 406.3C5.9 412.1 0 421.9 0 433.6 0 445.3 5.9 457 15.6 460.9L480.5 714.8C484.4 716.8 490.2 718.8 494.1 718.8 500 718.8 505.9 716.8 509.8 714.8L978.5 460.9C988.3 457 994.1 445.3 994.1 433.6 994.1 421.9 988.3 412.1 978.5 406.3ZM978.5 625L890.6 582 822.3 619.1 896.5 654.3 494.1 871.1 97.7 654.3 175.8 619.1 109.4 582 17.6 625C5.9 630.9 0 640.6 0 652.3 0 664.1 5.9 675.8 15.6 679.7L480.5 933.6C484.4 935.5 490.2 937.5 494.1 937.5 500 937.5 505.9 935.5 509.8 933.6L978.5 681.6C988.3 675.8 994.1 664.1 994.1 652.3 994.1 640.6 988.3 630.9 978.5 625Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"layers\";}}i:52;a:7:{s:3:\"uid\";s:32:\"c9e9459b947f6a0f4d0aa69103e0a74e\";s:3:\"css\";s:5:\"bag-1\";s:4:\"code\";i:59444;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:924:\"M998 857.4L918 365.2C910.2 302.7 851.6 250 787.1 250L718.8 250 718.8 168C718.8 39.1 628.9-62.5 500-62.5 373-62.5 281.3 39.1 281.3 168L281.3 250 207 250C142.6 250 84 302.7 76.2 365.2L2 857.4C-2 882.8 3.9 904.3 15.6 918 29.3 931.6 46.9 937.5 68.4 937.5L921.9 937.5C955.1 937.5 972.7 925.8 982.4 914.1 992.2 904.3 1002 886.7 998 857.4ZM343.8 168C343.8 74.2 408.2 0 500 0 593.8 0 656.3 74.2 656.3 168L656.3 250 343.8 250ZM925.8 875L72.3 875C68.4 875 62.5 873 62.5 865.2L138.7 373C142.6 339.8 173.8 312.5 207 312.5L281.3 312.5 281.3 384.8C261.7 394.5 250 414.1 250 437.5 250 472.7 277.3 500 312.5 500 347.7 500 375 472.7 375 437.5 375 414.1 363.3 394.5 343.8 384.8L343.8 312.5 656.3 312.5 656.3 384.8C636.7 394.5 625 414.1 625 437.5 625 472.7 652.3 500 687.5 500 722.7 500 750 472.7 750 437.5 750 414.1 738.3 394.5 718.8 384.8L718.8 312.5 787.1 312.5C820.3 312.5 851.6 339.8 855.5 375L937.5 867.2C937.5 871.1 933.6 875 925.8 875Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"bag\";}}i:53;a:7:{s:3:\"uid\";s:32:\"eb6121af5f98daa5ad2dc41accc70d75\";s:3:\"css\";s:7:\"globe-3\";s:4:\"code\";i:59445;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:849:\"M908.2 341.8C908.2 177.7 820.3 27.3 675.8-58.6 660.2-66.4 640.6-62.5 632.8-46.9 623-31.3 628.9-11.7 644.5-3.9 769.5 70.3 845.7 199.2 845.7 341.8 845.7 578.1 673.8 750 437.5 750 382.8 750 332 740.2 283.2 720.7 267.6 714.8 250 722.7 244.1 738.3 236.3 753.9 244.1 773.4 259.8 779.3 316.4 800.8 375 812.5 437.5 812.5 437.5 812.5 437.5 812.5 437.5 812.5L437.5 875 345.7 875C328.1 875 314.5 888.7 314.5 906.3 314.5 923.8 328.1 937.5 345.7 937.5L593.8 937.5C611.3 937.5 627 923.8 627 906.3 627 888.7 611.3 875 593.8 875L500 875 500 808.6C740.2 781.3 908.2 593.8 908.2 341.8ZM781.3 345.7C781.3 154.3 627 0 435.5 0 246.1 0 91.8 154.3 91.8 345.7 91.8 535.2 246.1 687.5 435.5 687.5 627 687.5 781.3 535.2 781.3 345.7ZM154.3 345.7C154.3 189.5 281.3 62.5 435.5 62.5 591.8 62.5 718.8 189.5 718.8 345.7 718.8 500 591.8 625 435.5 625 281.3 625 154.3 500 154.3 345.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"globe\";}}i:54;a:7:{s:3:\"uid\";s:32:\"f51fc23a8d16364de2bf0190d351e1bb\";s:3:\"css\";s:11:\"globe-alt-2\";s:4:\"code\";i:59446;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1939:\"M1002 437.5C1002 171.9 793-46.9 529.3-62.5 525.4-62.5 519.5-62.5 513.7-62.5 511.7-62.5 509.8-62.5 507.8-62.5 505.9-62.5 503.9-62.5 500-62.5 224.6-62.5-2 162.1-2 437.5-2 712.9 224.6 937.5 500 937.5 503.9 937.5 505.9 937.5 509.8 937.5 509.8 937.5 511.7 937.5 513.7 937.5 519.5 937.5 525.4 937.5 529.3 937.5 793 921.9 1002 703.1 1002 437.5ZM908.2 597.7C890.6 593.8 847.7 582 771.5 574.2 777.3 531.3 781.3 484.4 781.3 437.5 781.3 400.4 779.3 363.3 775.4 328.1 871.1 318.4 914.1 302.7 916 302.7L904.3 269.5C925.8 320.3 939.5 377 939.5 437.5 939.5 494.1 927.7 548.8 908.2 597.7ZM279.3 437.5C279.3 402.3 281.3 369.1 285.2 335.9 335.9 339.8 396.5 341.8 468.8 343.8L468.8 560.5C398.4 560.5 339.8 564.5 289.1 566.4 283.2 525.4 279.3 482.4 279.3 437.5ZM529.3 3.9C607.4 25.4 671.9 132.8 701.2 273.4 654.3 277.3 597.7 281.3 529.3 281.3ZM468.8 5.9L468.8 281.3C400.4 279.3 343.8 277.3 294.9 273.4 326.2 134.8 392.6 29.3 468.8 5.9ZM468.8 623L468.8 869.1C396.5 847.7 334 753.9 302.7 628.9 349.6 625 404.3 623 468.8 623ZM529.3 871.1L529.3 623C593.8 623 650.4 625 695.3 628.9 664.1 755.9 601.6 849.6 529.3 871.1ZM529.3 560.5L529.3 343.8C601.6 341.8 662.1 339.8 712.9 335.9 716.8 369.1 718.8 402.3 718.8 437.5 718.8 482.4 714.8 525.4 709 568.4 658.2 564.5 599.6 560.5 529.3 560.5ZM892.6 244.1C884.8 246.1 843.8 257.8 765.6 267.6 748 173.8 716.8 93.8 673.8 35.2 769.5 78.1 847.7 152.3 892.6 244.1ZM349.6 25.4C298.8 84 257.8 168 234.4 267.6 164.1 259.8 121.1 252 105.5 248 154.3 144.5 242.2 64.5 349.6 25.4ZM82 306.6C93.8 308.6 138.7 320.3 224.6 330.1 218.8 365.2 216.8 400.4 216.8 437.5 216.8 484.4 220.7 529.3 228.5 572.3 156.3 580.1 111.3 589.8 91.8 595.7 72.3 546.9 60.5 492.2 60.5 437.5 60.5 392.6 68.4 347.7 82 306.6ZM119.1 652.3C140.6 648.4 181.6 640.6 242.2 634.8 265.6 722.7 304.7 796.9 349.6 849.6 252 812.5 169.9 742.2 119.1 652.3ZM673.8 839.8C710.9 787.1 742.2 716.8 759.8 634.8 822.3 642.6 861.3 650.4 880.9 656.3 834 736.3 761.7 800.8 673.8 839.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"globe\";}}i:55;a:7:{s:3:\"uid\";s:32:\"1c35fad0a08ddf4e67db741a0ebfc170\";s:3:\"css\";s:10:\"fullscreen\";s:4:\"code\";i:59447;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:864:\"M218.8 46.9L31.3 46.9C13.7 46.9 0 60.5 0 78.1L0 265.6C0 283.2 13.7 296.9 31.3 296.9 48.8 296.9 62.5 283.2 62.5 265.6L62.5 109.4 218.8 109.4C236.3 109.4 250 95.7 250 78.1 250 60.5 236.3 46.9 218.8 46.9ZM968.8 578.1C951.2 578.1 937.5 591.8 937.5 609.4L937.5 765.6 781.3 765.6C763.7 765.6 750 779.3 750 796.9 750 814.5 763.7 828.1 781.3 828.1L968.8 828.1C986.3 828.1 1000 814.5 1000 796.9L1000 609.4C1000 591.8 986.3 578.1 968.8 578.1ZM218.8 765.6L62.5 765.6 62.5 609.4C62.5 591.8 48.8 578.1 31.3 578.1 13.7 578.1 0 591.8 0 609.4L0 796.9C0 814.5 13.7 828.1 31.3 828.1L218.8 828.1C236.3 828.1 250 814.5 250 796.9 250 779.3 236.3 765.6 218.8 765.6ZM968.8 46.9L781.3 46.9C763.7 46.9 750 60.5 750 78.1 750 95.7 763.7 109.4 781.3 109.4L937.5 109.4 937.5 265.6C937.5 283.2 951.2 296.9 968.8 296.9 986.3 296.9 1000 283.2 1000 265.6L1000 78.1C1000 60.5 986.3 46.9 968.8 46.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"fullscreen\";}}i:56;a:7:{s:3:\"uid\";s:32:\"a2985fa44c83812210a2474674d63716\";s:3:\"css\";s:10:\"folder-alt\";s:4:\"code\";i:59448;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:370:\"M937.5 140.6L468.8 140.6 375 46.9 62.5 46.9C27.3 46.9 0 74.2 0 109.4L0 265.6 0 265.6 0 328.1 0 328.1 0 765.6C0 800.8 27.3 828.1 62.5 828.1L937.5 828.1C972.7 828.1 1000 800.8 1000 765.6L1000 203.1C1000 168 972.7 140.6 937.5 140.6ZM62.5 109.4L345.7 109.4 423.8 185.5 443.4 203.1 937.5 203.1 937.5 265.6 62.5 265.6 62.5 109.4ZM62.5 765.6L62.5 328.1 937.5 328.1 937.5 765.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"folder\";}}i:57;a:7:{s:3:\"uid\";s:32:\"21641b9eb4a72bbc4259381c20f475a0\";s:3:\"css\";s:7:\"video-3\";s:4:\"code\";i:59449;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1697:\"M781.3 203.1L843.8 203.1C861.3 203.1 875 189.5 875 171.9L875 140.6C875 123 861.3 109.4 843.8 109.4L781.3 109.4C763.7 109.4 750 123 750 140.6L750 171.9C750 189.5 763.7 203.1 781.3 203.1ZM781.3 390.6L843.8 390.6C861.3 390.6 875 377 875 359.4L875 328.1C875 310.5 861.3 296.9 843.8 296.9L781.3 296.9C763.7 296.9 750 310.5 750 328.1L750 359.4C750 377 763.7 390.6 781.3 390.6ZM781.3 578.1L843.8 578.1C861.3 578.1 875 564.5 875 546.9L875 515.6C875 498 861.3 484.4 843.8 484.4L781.3 484.4C763.7 484.4 750 498 750 515.6L750 546.9C750 564.5 763.7 578.1 781.3 578.1ZM781.3 765.6L843.8 765.6C861.3 765.6 875 752 875 734.4L875 703.1C875 685.5 861.3 671.9 843.8 671.9L781.3 671.9C763.7 671.9 750 685.5 750 703.1L750 734.4C750 752 763.7 765.6 781.3 765.6ZM156.3 203.1L218.8 203.1C236.3 203.1 250 189.5 250 171.9L250 140.6C250 123 236.3 109.4 218.8 109.4L156.3 109.4C138.7 109.4 125 123 125 140.6L125 171.9C125 189.5 138.7 203.1 156.3 203.1ZM156.3 390.6L218.8 390.6C236.3 390.6 250 377 250 359.4L250 328.1C250 310.5 236.3 296.9 218.8 296.9L156.3 296.9C138.7 296.9 125 310.5 125 328.1L125 359.4C125 377 138.7 390.6 156.3 390.6ZM156.3 578.1L218.8 578.1C236.3 578.1 250 564.5 250 546.9L250 515.6C250 498 236.3 484.4 218.8 484.4L156.3 484.4C138.7 484.4 125 498 125 515.6L125 546.9C125 564.5 138.7 578.1 156.3 578.1ZM156.3 765.6L218.8 765.6C236.3 765.6 250 752 250 734.4L250 703.1C250 685.5 236.3 671.9 218.8 671.9L156.3 671.9C138.7 671.9 125 685.5 125 703.1L125 734.4C125 752 138.7 765.6 156.3 765.6ZM937.5-46.9L62.5-46.9C27.3-46.9 0-19.5 0 15.6L0 859.4C0 894.5 27.3 921.9 62.5 921.9L937.5 921.9C972.7 921.9 1000 894.5 1000 859.4L1000 15.6C1000-19.5 972.7-46.9 937.5-46.9ZM937.5 859.4L62.5 859.4 62.5 15.6 937.5 15.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"video\";}}i:58;a:7:{s:3:\"uid\";s:32:\"7a3ea36c927baf94ab18e174237835e2\";s:3:\"css\";s:5:\"rss-3\";s:4:\"code\";i:59450;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:695:\"M99.6 259.8C82 259.8 68.4 273.4 68.4 293 68.4 310.5 82 324.2 99.6 324.2 394.5 324.2 613.3 543 613.3 839.8 613.3 857.4 627 871.1 644.5 871.1 662.1 871.1 675.8 857.4 675.8 839.8 675.8 505.9 431.6 259.8 99.6 259.8ZM99.6-60.5C82-60.5 68.4-44.9 68.4-27.3 68.4-9.8 82 3.9 99.6 3.9 558.6 3.9 931.6 377 931.6 835.9 931.6 853.5 947.3 869.1 964.8 869.1 982.4 869.1 996.1 853.5 996.1 835.9 996.1 341.8 593.8-60.5 99.6-60.5ZM179.7 582C82 582 3.9 660.2 3.9 757.8 3.9 855.5 82 935.5 179.7 935.5 277.3 935.5 355.5 855.5 355.5 757.8 355.5 660.2 277.3 582 179.7 582ZM179.7 873C117.2 873 64.5 822.3 64.5 757.8 64.5 695.3 117.2 642.6 179.7 642.6 242.2 642.6 294.9 695.3 294.9 757.8 294.9 822.3 242.2 873 179.7 873Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"rss\";}}i:59;a:7:{s:3:\"uid\";s:32:\"97b7076c4317cc920b151cb4c6d622ea\";s:3:\"css\";s:14:\"headphones-alt\";s:4:\"code\";i:59451;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1268:\"M1000 496.1C1000 476.6 996.1 398.4 994.1 377 964.8 121.1 759.8-62.5 502-62.5 236.3-62.5 19.5 142.6 5.9 416 3.9 421.9 2 462.9 2 488.3L2 502C0 507.8 0 513.7 0 519.5L0 730.5C0 775.4 37.1 812.5 84 812.5L168 812.5C212.9 812.5 250 775.4 250 730.5L250 519.5C250 474.6 212.9 437.5 168 437.5L84 437.5C78.1 437.5 72.3 437.5 66.4 439.5 66.4 429.7 66.4 421.9 66.4 418 80.1 179.7 269.5 0 502 0 726.6 0 908.2 160.2 931.6 382.8 933.6 392.6 933.6 416 935.5 439.5 929.7 437.5 923.8 437.5 916 437.5L834 437.5C787.1 437.5 750 474.6 750 519.5L750 728.5C750 761.7 767.6 787.1 794.9 802.7L593.8 880.9 593.8 875C593.8 859.4 580.1 843.8 562.5 843.8L468.8 843.8C451.2 843.8 437.5 859.4 437.5 875L437.5 906.3C437.5 923.8 451.2 937.5 468.8 937.5L562.5 937.5C562.5 937.5 562.5 937.5 562.5 937.5L619.1 937.5 941.4 812.5C945.3 810.5 949.2 806.6 951.2 804.7 980.5 791 1000 761.7 1000 728.5L1000 519.5C1000 515.6 1000 509.8 998 505.9 1000 502 1000 500 1000 496.1ZM84 500L168 500C179.7 500 187.5 509.8 187.5 519.5L187.5 730.5C187.5 742.2 179.7 750 168 750L84 750C72.3 750 62.5 742.2 62.5 730.5L62.5 519.5C62.5 509.8 72.3 500 84 500ZM812.5 519.5C812.5 509.8 822.3 500 834 500L916 500C927.7 500 937.5 509.8 937.5 519.5L937.5 728.5C937.5 740.2 927.7 750 916 750L834 750C822.3 750 812.5 740.2 812.5 728.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"headphones\";}}i:60;a:7:{s:3:\"uid\";s:32:\"ebe64d873037d4c962be4469f7b4252e\";s:3:\"css\";s:12:\"headphones-2\";s:4:\"code\";i:59452;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1061:\"M1000 527.3C1000 507.8 996.1 429.7 994.1 408.2 964.8 152.3 759.8-31.3 502-31.3 236.3-31.3 19.5 173.8 5.9 447.3 3.9 453.1 2 494.1 2 519.5L2 533.2C0 539.1 0 544.9 0 550.8L0 824.2C0 869.1 37.1 906.3 84 906.3L168 906.3C212.9 906.3 250 869.1 250 824.2L250 552.7C250 505.9 212.9 468.8 168 468.8L84 468.8C78.1 468.8 72.3 468.8 66.4 470.7 66.4 460.9 66.4 453.1 66.4 449.2 80.1 210.9 269.5 31.3 502 31.3 726.6 31.3 908.2 191.4 931.6 414.1 933.6 423.8 933.6 447.3 935.5 470.7 929.7 468.8 923.8 468.8 916 468.8L834 468.8C787.1 468.8 750 505.9 750 552.7L750 822.3C750 869.1 787.1 906.3 834 906.3L916 906.3C962.9 906.3 1000 869.1 1000 822.3L1000 552.7C1000 546.9 1000 541 998 537.1 1000 533.2 1000 531.3 1000 527.3ZM84 531.3L168 531.3C179.7 531.3 187.5 541 187.5 552.7L187.5 824.2C187.5 835.9 179.7 843.8 168 843.8L84 843.8C72.3 843.8 62.5 835.9 62.5 824.2L62.5 552.7C62.5 541 72.3 531.3 84 531.3ZM937.5 822.3C937.5 834 927.7 843.8 916 843.8L834 843.8C822.3 843.8 812.5 834 812.5 822.3L812.5 552.7C812.5 541 822.3 531.3 834 531.3L916 531.3C927.7 531.3 937.5 541 937.5 552.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:16:\"headphones music\";}}i:61;a:7:{s:3:\"uid\";s:32:\"63af009d4abf9d9f8517be887f652753\";s:3:\"css\";s:9:\"droplet-1\";s:4:\"code\";i:59453;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:347:\"M498 935.5C310.5 935.5 156.3 785.2 156.3 597.7 156.3 380.9 460.9-31.3 472.7-48.8 478.5-56.6 488.3-60.5 498-60.5 509.8-60.5 517.6-56.6 523.4-48.8 537.1-31.3 843.8 373 843.8 597.7 843.8 785.2 689.5 935.5 498 935.5ZM498 23.4C425.8 127 218.8 435.5 218.8 597.7 218.8 750 343.8 873 498 873 654.3 873 781.3 750 781.3 597.7 781.3 429.7 572.3 125 498 23.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"droplet\";}}i:62;a:7:{s:3:\"uid\";s:32:\"e4c1965c990ec5690863dae2dbf070c0\";s:3:\"css\";s:7:\"inbox-5\";s:4:\"code\";i:59454;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:565:\"M998 435.5L884.8 37.1C880.9 25.4 869.1 15.6 853.5 15.6L136.7 15.6C121.1 15.6 109.4 25.4 105.5 39.1L0 416C-2 423.8 0 429.7 2 437.5 2 441.4 0 447.3 0 455.1L0 796.9C0 832 27.3 859.4 62.5 859.4L937.5 859.4C972.7 859.4 1000 832 1000 796.9L1000 455.1C1000 453.1 1000 451.2 1000 449.2 1000 445.3 1000 439.5 998 435.5ZM160.2 78.1L830.1 78.1 921.9 392.6 630.9 392.6C628.9 466.8 576.2 517.6 500 517.6 423.8 517.6 373 466.8 371.1 392.6L72.3 392.6ZM937.5 796.9L62.5 796.9 62.5 455.1 320.3 455.1C347.7 533.2 412.1 580.1 500 580.1 587.9 580.1 654.3 533.2 681.6 455.1L937.5 455.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"inbox\";}}i:63;a:7:{s:3:\"uid\";s:32:\"08879956ca7407dccf5eb08f9efabc19\";s:3:\"css\";s:4:\"copy\";s:4:\"code\";i:59455;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:433:\"M750-62.5L406.3-62.5C371.1-62.5 343.8-35.2 343.8 0L687.5 0 687.5 250 937.5 250 937.5 750 718.8 750 718.8 812.5 937.5 812.5C972.7 812.5 1000 785.2 1000 750L1000 187.5ZM750 187.5L750 25.4 912.1 187.5ZM62.5 62.5C27.3 62.5 0 89.8 0 125L0 875C0 910.2 27.3 937.5 62.5 937.5L593.8 937.5C628.9 937.5 656.3 910.2 656.3 875L656.3 312.5 406.3 62.5ZM593.8 875L62.5 875 62.5 125 343.8 125 343.8 375 593.8 375ZM406.3 312.5L406.3 150.4 568.4 312.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"copy docs\";}}i:64;a:7:{s:3:\"uid\";s:32:\"909dcf10afcd001a352e6ec72e13eac8\";s:3:\"css\";s:8:\"sign-alt\";s:4:\"code\";i:59456;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:796:\"M994.1 119.1L896.5 9.8C890.6 3.9 880.9 0 873 0L531.3 0 531.3-33.2C531.3-48.8 515.6-62.5 500-62.5 482.4-62.5 468.8-48.8 468.8-33.2L468.8 0 218.8 0C201.2 0 187.5 13.7 187.5 31.3L187.5 250C187.5 267.6 201.2 281.3 218.8 281.3L468.8 281.3 468.8 343.8 127 343.8C119.1 343.8 109.4 347.7 103.5 353.5L5.9 464.8C-3.9 476.6-3.9 494.1 5.9 505.9L103.5 615.2C109.4 623 119.1 625 127 625L468.8 625 468.8 908.2C468.8 923.8 482.4 937.5 500 937.5 515.6 937.5 531.3 923.8 531.3 908.2L531.3 625 781.3 625C798.8 625 812.5 611.3 812.5 593.8L812.5 375C812.5 357.4 798.8 343.8 781.3 343.8L531.3 343.8 531.3 281.3 873 281.3C880.9 281.3 890.6 277.3 896.5 269.5L994.1 160.2C1003.9 148.4 1003.9 130.9 994.1 119.1ZM750 562.5L140.6 562.5 72.3 486.3 140.6 406.3 750 406.3ZM859.4 218.8L250 218.8 250 62.5 859.4 62.5 927.7 140.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"sign two\";}}i:65;a:7:{s:3:\"uid\";s:32:\"b9df9a5dbf8f18f0b6837a422c552002\";s:3:\"css\";s:4:\"sign\";s:4:\"code\";i:59457;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:497:\"M943.4 228.5L769.5 41C763.7 35.2 755.9 31.3 746.1 31.3L486.3 31.3 484.4-33.2C484.4-48.8 470.7-62.5 453.1-62.5 435.5-62.5 423.8-48.8 423.8-33.2L423.8 31.3 78.1 31.3C60.5 31.3 46.9 44.9 46.9 62.5L46.9 437.5C46.9 455.1 60.5 468.8 78.1 468.8L421.9 468.8 421.9 908.2C421.9 923.8 437.5 937.5 453.1 937.5 470.7 937.5 484.4 923.8 484.4 908.2L484.4 468.8 746.1 468.8C755.9 468.8 763.7 464.8 769.5 459L943.4 271.5C955.1 259.8 955.1 240.2 943.4 228.5ZM732.4 406.3L109.4 406.3 109.4 93.8 732.4 93.8 878.9 250Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"sign\";}}i:66;a:7:{s:3:\"uid\";s:32:\"02bd4847f529d194e581877b1bf7a60e\";s:3:\"css\";s:9:\"diamond-1\";s:4:\"code\";i:59458;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:600:\"M994.1 226.6L857.4-35.2C849.6-50.8 830.1-62.5 812.5-62.5L498-62.5C498-62.5 498-62.5 498-62.5 496.1-62.5 496.1-62.5 496.1-62.5L187.5-62.5C169.9-62.5 150.4-50.8 140.6-35.2L5.9 220.7C-2 236.3-2 259.8 9.8 273.4L478.5 927.7C482.4 933.6 490.2 937.5 496.1 937.5 502 937.5 509.8 933.6 513.7 927.7L990.2 279.3C1002 265.6 1002 242.2 994.1 226.6ZM919.9 218.8L752 218.8 820.3 27.3ZM562.5 0L763.7 0 701.2 177.7ZM652.3 218.8L361.3 218.8 500 21.5ZM306.6 189.5L244.1 0 437.5 0ZM664.1 281.3L496.1 761.7 337.9 281.3ZM425.8 750L89.8 281.3 271.5 281.3ZM730.5 281.3L912.1 281.3 566.4 750ZM183.6 17.6L250 218.8 78.1 218.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"diamond\";}}i:67;a:7:{s:3:\"uid\";s:32:\"e7601e283ef8d8dd26ca48182a49d866\";s:3:\"css\";s:5:\"cup-2\";s:4:\"code\";i:59459;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1099:\"M812.5 343.8C804.7 343.8 779.3 343.8 750 343.8L750 281.3C750 246.1 722.7 218.8 687.5 218.8L62.5 218.8C27.3 218.8 0 246.1 0 281.3L0 750C0 853.5 84 937.5 187.5 937.5L562.5 937.5C666 937.5 750 853.5 750 750L750 718.8C777.3 718.8 806.6 718.8 812.5 718.8 916 718.8 1000 634.8 1000 531.3 1000 427.7 916 343.8 812.5 343.8ZM687.5 750C687.5 818.4 632.8 875 562.5 875L187.5 875C119.1 875 62.5 818.4 62.5 750L62.5 281.3 62.5 281.3 687.5 281.3ZM812.5 656.3C806.6 656.3 777.3 656.3 750 656.3L750 406.3C779.3 406.3 804.7 406.3 812.5 406.3 884.8 406.3 939.5 459 939.5 531.3 939.5 603.5 884.8 656.3 812.5 656.3ZM562.5 156.3C580.1 156.3 593.8 142.6 593.8 125L593.8-31.3C593.8-48.8 580.1-62.5 562.5-62.5 544.9-62.5 531.3-48.8 531.3-31.3L531.3 125C531.3 142.6 544.9 156.3 562.5 156.3ZM187.5 156.3C205.1 156.3 218.8 142.6 218.8 125L218.8-31.3C218.8-48.8 205.1-62.5 187.5-62.5 169.9-62.5 156.3-48.8 156.3-31.3L156.3 125C156.3 142.6 169.9 156.3 187.5 156.3ZM375 156.3C392.6 156.3 406.3 142.6 406.3 125L406.3-31.3C406.3-48.8 392.6-62.5 375-62.5 357.4-62.5 343.8-48.8 343.8-31.3L343.8 125C343.8 142.6 357.4 156.3 375 156.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"cup\";}}i:68;a:7:{s:3:\"uid\";s:32:\"29fa9d76e5c45b92faba28d56427f971\";s:3:\"css\";s:9:\"compass-3\";s:4:\"code\";i:59460;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:633:\"M716.8 210.9L410.2 341.8C404.3 345.7 400.4 349.6 396.5 355.5L257.8 638.7C252 648.4 253.9 662.1 261.7 671.9 267.6 677.7 275.4 681.6 283.2 681.6 287.1 681.6 293 679.7 296.9 677.7L595.7 554.7C599.6 550.8 605.5 546.9 607.4 541L755.9 252C761.7 240.2 759.8 226.6 750 216.8 742.2 207 726.6 205.1 716.8 210.9ZM349.6 585.9L433.6 414.1 519.5 521.5ZM570.3 484.4L484.4 375 656.3 306.6ZM500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"compass\";}}i:69;a:7:{s:3:\"uid\";s:32:\"449a429c73974a56cbecd44c935546f9\";s:3:\"css\";s:8:\"call-out\";s:4:\"code\";i:59461;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1566:\"M976.6 691.4C960.9 679.7 794.9 568.4 773.4 556.6 765.6 550.8 753.9 548.8 742.2 548.8 726.6 548.8 709 552.7 693.4 560.5 677.7 570.3 628.9 597.7 603.5 611.3 584 595.7 533.2 558.6 457 480.5 378.9 404.3 339.8 353.5 326.2 332 339.8 308.6 367.2 259.8 375 244.1 390.6 212.9 392.6 183.6 380.9 162.1 369.1 144.5 257.8-23.4 246.1-41 234.4-54.7 216.8-62.5 195.3-62.5 177.7-62.5 160.2-58.6 146.5-46.9 144.5-46.9-3.9 60.5-2 121.1 3.9 291 169.9 492.2 308.6 628.9 445.3 767.6 646.5 933.6 816.4 937.5L818.4 937.5C878.9 937.5 984.4 793 984.4 791 1011.7 752 1002 709 976.6 691.4ZM933.6 755.9C894.5 810.5 837.9 867.2 816.4 875 699.2 869.1 533.2 767.6 351.6 585.9 169.9 402.3 66.4 238.3 62.5 121.1 70.3 99.6 127 43 181.6 3.9 185.5 0 189.5 0 195.3 0 195.3 0 197.3 0 197.3 0 214.8 25.4 308.6 168 326.2 195.3 326.2 197.3 326.2 205.1 320.3 214.8 314.5 226.6 296.9 257.8 271.5 300.8L252 335.9 275.4 369.1C291 392.6 332 445.3 412.1 525.4 492.2 605.5 544.9 646.5 568.4 662.1L601.6 685.5 634.8 666C668 646.5 709 623 722.7 617.2 732.4 611.3 740.2 611.3 742.2 611.3 742.2 611.3 742.2 611.3 742.2 611.3 767.6 625 912.1 722.7 937.5 740.2 939.5 742.2 937.5 748 933.6 755.9ZM668 310.5L937.5 43 935.5 195.3C935.5 207 945.3 218.8 959 218.8L974.6 218.8C986.3 218.8 998 210.9 998 197.3L998-27.3C998-27.3 998-27.3 998-27.3L998-39.1C998-46.9 998-50.8 992.2-56.6 988.3-60.5 984.4-62.5 976.6-62.5L964.8-62.5C964.8-62.5 964.8-62.5 964.8-62.5L740.2-62.5C728.5-62.5 718.8-52.7 716.8-39.1L716.8-23.4C718.8-7.8 730.5 0 744.1 0L890.6 0 623 267.6C611.3 279.3 611.3 298.8 623 310.5 636.7 322.3 656.3 322.3 668 310.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"phone call\";}}i:70;a:7:{s:3:\"uid\";s:32:\"cbe3500d3a993ff6990b88c43e4af952\";s:3:\"css\";s:7:\"call-in\";s:4:\"code\";i:59462;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1587:\"M976.6 691.4C960.9 679.7 794.9 568.4 773.4 556.6 765.6 550.8 753.9 548.8 742.2 548.8 726.6 548.8 709 552.7 693.4 560.5 677.7 570.3 628.9 597.7 603.5 611.3 584 595.7 533.2 558.6 457 480.5 378.9 404.3 339.8 353.5 326.2 332 339.8 308.6 367.2 259.8 375 244.1 390.6 212.9 392.6 183.6 380.9 162.1 369.1 144.5 257.8-23.4 246.1-41 234.4-54.7 216.8-62.5 195.3-62.5 177.7-62.5 160.2-58.6 146.5-46.9 144.5-46.9-3.9 60.5-2 121.1 3.9 291 169.9 492.2 308.6 628.9 445.3 767.6 646.5 933.6 816.4 937.5L818.4 937.5C878.9 937.5 984.4 793 984.4 791 1011.7 752 1002 709 976.6 691.4ZM933.6 755.9C894.5 810.5 837.9 867.2 816.4 875 699.2 869.1 533.2 767.6 351.6 585.9 169.9 402.3 66.4 238.3 62.5 121.1 70.3 99.6 127 43 181.6 3.9 185.5 0 189.5 0 195.3 0 195.3 0 197.3 0 197.3 0 214.8 25.4 308.6 168 326.2 195.3 326.2 197.3 326.2 205.1 320.3 214.8 314.5 226.6 296.9 257.8 271.5 300.8L252 335.9 275.4 369.1C291 392.6 332 445.3 412.1 525.4 492.2 605.5 544.9 646.5 568.4 662.1L601.6 685.5 634.8 666C668 646.5 709 623 722.7 617.2 732.4 611.3 740.2 611.3 742.2 611.3 742.2 611.3 742.2 611.3 742.2 611.3 767.6 625 912.1 722.7 937.5 740.2 939.5 742.2 937.5 748 933.6 755.9ZM628.9 304.7C632.8 308.6 638.7 312.5 644.5 312.5L656.3 310.5C656.3 310.5 656.3 310.5 656.3 310.5L880.9 312.5C892.6 312.5 904.3 300.8 904.3 289.1L904.3 273.4C902.3 257.8 890.6 250 878.9 250L730.5 250 986.3-5.9C998-19.5 998-39.1 986.3-50.8 974.6-62.5 953.1-62.5 941.4-50.8L685.5 205.1 685.5 54.7C685.5 41 675.8 31.3 664.1 31.3L648.4 31.3C634.8 31.3 625 39.1 625 50.8L623 277.3C623 277.3 625 277.3 625 277.3L623 289.1C623 294.9 625 300.8 628.9 304.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"phone call\";}}i:71;a:7:{s:3:\"uid\";s:32:\"d11c42119bb921080d0d20dd5d6f1884\";s:3:\"css\";s:9:\"phone-alt\";s:4:\"code\";i:59463;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1163:\"M939.5 132.8C939.5 132.8 939.5 134.8 939.5 134.8 914.1 152.3 771.5 246.1 744.1 263.7 740.2 263.7 734.4 263.7 724.6 257.8 712.9 252 681.6 234.4 636.7 209L601.6 189.5 570.3 212.9C544.9 228.5 494.1 269.5 414.1 349.6 334 429.7 293 482.4 275.4 505.9L253.9 539.1 273.4 572.3C291 605.5 314.5 646.5 322.3 660.2 328.1 669.9 328.1 677.7 328.1 679.7 328.1 679.7 328.1 679.7 328.1 679.7 312.5 705.1 214.8 849.6 197.3 875 195.3 877 189.5 877 183.6 871.1 128.9 832 70.3 775.4 62.5 753.9 68.4 636.7 171.9 470.7 353.5 289.1 535.2 107.4 699.2 3.9 816.4 0 837.9 7.8 894.5 64.5 935.5 119.1 937.5 123 939.5 127 939.5 132.8M1000 132.8C1000 115.2 994.1 97.7 984.4 84 982.4 82 878.9-66.4 818.4-64.5 646.5-58.6 447.3 107.4 308.6 246.1 171.9 382.8 5.9 584 0 753.9L0 755.9C0 816.4 144.5 921.9 146.5 921.9 185.5 949.2 230.5 939.5 248 914.1 257.8 898.4 369.1 732.4 382.8 710.9 386.7 703.1 390.6 691.4 390.6 679.7 390.6 664.1 384.8 646.5 377 630.9 369.1 615.2 339.8 566.4 326.2 541 341.8 521.5 378.9 470.7 457 394.5 535.2 316.4 584 277.3 605.5 263.7 628.9 277.3 677.7 304.7 695.3 312.5 724.6 328.1 755.9 330.1 775.4 318.4 794.9 306.6 960.9 195.3 976.6 183.6 992.2 171.9 1000 154.3 1000 132.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"phone call\";}}i:72;a:7:{s:3:\"uid\";s:32:\"a408883b78763731ea0df2290638b952\";s:3:\"css\";s:6:\"calc-1\";s:4:\"code\";i:59464;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1492:\"M937.5-62.5L62.5-62.5C27.3-62.5 0-35.2 0 0L0 875C0 910.2 27.3 937.5 62.5 937.5L937.5 937.5C972.7 937.5 1000 910.2 1000 875L1000 0C1000-35.2 972.7-62.5 937.5-62.5ZM937.5 875L62.5 875 62.5 0 937.5 0ZM218.8 281.3L281.3 281.3 281.3 343.8C281.3 361.3 294.9 375 312.5 375 330.1 375 343.8 361.3 343.8 343.8L343.8 281.3 406.3 281.3C423.8 281.3 437.5 267.6 437.5 250 437.5 232.4 423.8 218.8 406.3 218.8L343.8 218.8 343.8 156.3C343.8 138.7 330.1 125 312.5 125 294.9 125 281.3 138.7 281.3 156.3L281.3 218.8 218.8 218.8C201.2 218.8 187.5 232.4 187.5 250 187.5 267.6 201.2 281.3 218.8 281.3ZM423.8 515.6C410.2 502 390.6 502 378.9 515.6L312.5 582 246.1 515.6C234.4 502 214.8 502 201.2 515.6 189.5 527.3 189.5 546.9 201.2 558.6L267.6 625 201.2 691.4C189.5 703.1 189.5 722.7 201.2 736.3 214.8 748 234.4 748 246.1 736.3L312.5 669.9 378.9 736.3C390.6 748 410.2 748 423.8 736.3 435.5 722.7 435.5 703.1 423.8 691.4L357.4 625 423.8 558.6C435.5 546.9 435.5 527.3 423.8 515.6ZM593.8 281.3L781.3 281.3C798.8 281.3 812.5 267.6 812.5 250 812.5 232.4 798.8 218.8 781.3 218.8L593.8 218.8C576.2 218.8 562.5 232.4 562.5 250 562.5 267.6 576.2 281.3 593.8 281.3ZM593.8 593.8L781.3 593.8C798.8 593.8 812.5 580.1 812.5 562.5 812.5 544.9 798.8 531.3 781.3 531.3L593.8 531.3C576.2 531.3 562.5 544.9 562.5 562.5 562.5 580.1 576.2 593.8 593.8 593.8ZM593.8 718.8L781.3 718.8C798.8 718.8 812.5 705.1 812.5 687.5 812.5 669.9 798.8 656.3 781.3 656.3L593.8 656.3C576.2 656.3 562.5 669.9 562.5 687.5 562.5 705.1 576.2 718.8 593.8 718.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"calculator\";}}i:73;a:7:{s:3:\"uid\";s:32:\"ed231cbefccecfdde1fbfcbb7a0e1573\";s:3:\"css\";s:6:\"chat-3\";s:4:\"code\";i:59465;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1465:\"M414.1 601.6C640.6 601.6 814.5 472.7 812.5 281.3 812.5 111.3 632.8-23.4 408.2-23.4 181.6-23.4 0 111.3 0 281.3 0 386.7 50.8 498 160.2 554.7 160.2 554.7 158.2 554.7 158.2 554.7 158.2 601.6 121.1 664.1 105.5 689.5L105.5 689.5C105.5 693.4 103.5 695.3 103.5 699.2 103.5 712.9 115.2 722.7 127 722.7 128.9 722.7 132.8 722.7 132.8 722.7 132.8 722.7 132.8 722.7 132.8 722.7 212.9 709 332 619.1 349.6 597.7 367.2 601.6 378.9 601.6 394.5 601.6 400.4 601.6 406.3 601.6 414.1 601.6ZM322.3 533.2L283.2 566.4C273.4 578.1 232.4 611.3 199.2 632.8 220.7 572.3 218.8 554.7 218.8 554.7L222.7 515.6 187.5 498C101.6 453.1 62.5 361.3 62.5 281.3 62.5 146.5 216.8 39.1 408.2 39.1 599.6 39.1 750 146.5 750 281.3 750 429.7 607.4 539.1 416 539.1 416 539.1 388.7 541 357.4 535.2ZM1000 533.2C1000 449.2 966.8 384.8 884.8 335.9 882.8 357.4 877 382.8 869.1 404.3 921.9 441.4 937.5 478.5 937.5 533.2 937.5 601.6 906.3 650.4 834 687.5L802.7 703.1C802.7 703.1 804.7 783.2 810.5 802.7 750 757.8 728.5 720.7 728.5 720.7L695.3 726.6C681.6 728.5 646.5 728.5 646.5 728.5 562.5 728.5 500 707 445.3 666 460.9 664.1 359.4 664.1 357.4 666 418 742.2 519.5 791 646.5 791 654.3 791 660.2 791 666 791 677.7 791 689.5 789.1 705.1 787.1 718.8 806.6 804.7 886.7 873 898.4 873 898.4 873 898.4 873 898.4 875 898.4 877 898.4 878.9 898.4 890.6 898.4 898.4 888.7 898.4 878.9 898.4 875 898.4 873 896.5 871.1L896.5 871.1C884.8 847.7 863.3 783.2 863.3 744.1 863.3 742.2 863.3 742.2 863.3 742.2 957 693.4 1000 625 1000 533.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"chat\";}}i:74;a:7:{s:3:\"uid\";s:32:\"3ee0b8081a1d294883603effebdf828e\";s:3:\"css\";s:11:\"briefcase-4\";s:4:\"code\";i:59466;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:779:\"M937.5 125L687.5 125 687.5 64.5C687.5 11.7 646.5-29.3 593.8-29.3L406.3-29.3C355.5-29.3 312.5 11.7 312.5 64.5L312.5 125 62.5 125C27.3 125 0 152.3 0 187.5L0 406.3 0 406.3 0 468.8 0 468.8 0 841.8C0 877 27.3 904.3 62.5 904.3L937.5 904.3C972.7 904.3 1000 877 1000 841.8L1000 187.5C1000 152.3 972.7 125 937.5 125ZM375 64.5C375 46.9 388.7 33.2 406.3 33.2L593.8 33.2C611.3 33.2 625 46.9 625 64.5L625 125 375 125ZM62.5 187.5L937.5 187.5 937.5 406.3 593.8 406.3 593.8 373C593.8 339.8 564.5 310.5 531.3 310.5L468.8 310.5C433.6 310.5 406.3 339.8 406.3 373L406.3 406.3 62.5 406.3ZM531.3 531.3L468.8 531.3 468.8 373 531.3 373ZM62.5 841.8L62.5 468.8 406.3 468.8 406.3 531.3C406.3 566.4 433.6 593.8 468.8 593.8L531.3 593.8C564.5 593.8 593.8 566.4 593.8 531.3L593.8 468.8 937.5 468.8 937.5 841.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"briefcase\";}}i:75;a:7:{s:3:\"uid\";s:32:\"a7bcff9dd0e7e65d155a76bd8a72d564\";s:3:\"css\";s:6:\"book-2\";s:4:\"code\";i:59467;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1769:\"M929.7-60.5L517.6 50.8C505.9 54.7 482.4 52.7 472.7 50.8L70.3-60.5C35.2-70.3 0-44.9 0-7.8L0 752C0 783.2 23.4 812.5 52.7 822.3L457 933.6C466.8 935.5 480.5 937.5 496.1 937.5 505.9 937.5 519.5 937.5 533.2 933.6L945.3 822.3C976.6 814.5 1000 783.2 1000 752L1000-7.8C1000-44.9 964.8-70.3 929.7-60.5ZM468.8 871.1L70.3 761.7C66.4 761.7 62.5 755.9 62.5 752L62.5 2 457 111.3C460.9 111.3 464.8 113.3 468.8 113.3ZM937.5 752C937.5 755.9 933.6 759.8 929.7 761.7L531.3 869.1 531.3 111.3C531.3 111.3 533.2 111.3 533.2 111.3L937.5 2 937.5 752ZM627 294.9C628.9 294.9 632.8 294.9 634.8 294.9L853.5 232.4C871.1 228.5 880.9 210.9 875 193.4 871.1 177.7 853.5 168 837.9 171.9L619.1 234.4C601.6 238.3 591.8 255.9 597.7 271.5 601.6 287.1 613.3 294.9 627 294.9ZM627 482.4C628.9 482.4 632.8 482.4 634.8 482.4L853.5 419.9C871.1 416 880.9 398.4 875 380.9 871.1 365.2 853.5 355.5 837.9 359.4L619.1 421.9C601.6 425.8 591.8 443.4 597.7 459 601.6 474.6 613.3 482.4 627 482.4ZM627 669.9C628.9 669.9 632.8 669.9 634.8 669.9L853.5 607.4C871.1 603.5 880.9 585.9 875 568.4 871.1 552.7 853.5 543 837.9 546.9L619.1 609.4C601.6 613.3 591.8 630.9 597.7 646.5 601.6 662.1 613.3 669.9 627 669.9ZM384.8 234.4L166 171.9C150.4 168 132.8 177.7 128.9 193.4 123 210.9 132.8 228.5 150.4 232.4L369.1 294.9C371.1 294.9 375 294.9 377 294.9 390.6 294.9 402.3 287.1 406.3 271.5 412.1 255.9 402.3 238.3 384.8 234.4ZM384.8 421.9L166 359.4C150.4 355.5 132.8 365.2 128.9 380.9 123 398.4 132.8 416 150.4 419.9L369.1 482.4C371.1 482.4 375 482.4 377 482.4 390.6 482.4 402.3 474.6 406.3 459 412.1 443.4 402.3 425.8 384.8 421.9ZM384.8 609.4L166 546.9C150.4 543 132.8 552.7 128.9 568.4 123 585.9 132.8 603.5 150.4 607.4L369.1 669.9C371.1 669.9 375 669.9 377 669.9 390.6 669.9 402.3 662.1 406.3 646.5 412.1 630.9 402.3 613.3 384.8 609.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"book\";}}i:76;a:7:{s:3:\"uid\";s:32:\"7d12b2531793ce07c03e3dae369ef06a\";s:3:\"css\";s:10:\"basket-alt\";s:4:\"code\";i:59468;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:797:\"M992.2 214.8C986.3 207 976.6 201.2 966.8 201.2L869.1 201.2 668 31.3C644.5 5.9 605.5 5.9 580.1 31.3L382.8 201.2 302.7 201.2 253.9 29.3C232.4-39.1 187.5-46.9 168-46.9L33.2-46.9C15.6-46.9 2-33.2 2-15.6 2 2 15.6 15.6 33.2 15.6L168 15.6C171.9 15.6 183.6 15.6 193.4 44.9L365.2 679.7C369.1 693.4 382.8 703.1 396.5 703.1L818.4 703.1C830.1 703.1 841.8 695.3 847.7 681.6L996.1 244.1C1000 234.4 998 222.7 992.2 214.8ZM625 74.2L773.4 201.2 476.6 201.2ZM796.9 640.6L419.9 640.6 320.3 263.7 921.9 263.7ZM734.4 765.6C691.4 765.6 656.3 800.8 656.3 843.8 656.3 886.7 691.4 921.9 734.4 921.9 777.3 921.9 812.5 886.7 812.5 843.8 812.5 800.8 777.3 765.6 734.4 765.6ZM453.1 765.6C410.2 765.6 375 800.8 375 843.8 375 886.7 410.2 921.9 453.1 921.9 496.1 921.9 531.3 886.7 531.3 843.8 531.3 800.8 496.1 765.6 453.1 765.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"basket shop\";}}i:77;a:7:{s:3:\"uid\";s:32:\"93fca6f5ee7848a5362552a837b6d294\";s:3:\"css\";s:8:\"basket-3\";s:4:\"code\";i:59469;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:699:\"M992.2 214.8C986.3 207 976.6 201.2 966.8 201.2L302.7 201.2 253.9 29.3C232.4-39.1 187.5-46.9 168-46.9L33.2-46.9C15.6-46.9 2-33.2 2-15.6 2 2 15.6 15.6 33.2 15.6L168 15.6C171.9 15.6 183.6 15.6 193.4 44.9L365.2 679.7C369.1 693.4 382.8 703.1 396.5 703.1L818.4 703.1C830.1 703.1 841.8 695.3 847.7 681.6L996.1 244.1C1000 234.4 998 222.7 992.2 214.8ZM796.9 640.6L419.9 640.6 320.3 263.7 921.9 263.7ZM734.4 765.6C691.4 765.6 656.3 800.8 656.3 843.8 656.3 886.7 691.4 921.9 734.4 921.9 777.3 921.9 812.5 886.7 812.5 843.8 812.5 800.8 777.3 765.6 734.4 765.6ZM453.1 765.6C410.2 765.6 375 800.8 375 843.8 375 886.7 410.2 921.9 453.1 921.9 496.1 921.9 531.3 886.7 531.3 843.8 531.3 800.8 496.1 765.6 453.1 765.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"basket shop\";}}i:78;a:7:{s:3:\"uid\";s:32:\"4a2e333803f73aa8c00b06f9ee900153\";s:3:\"css\";s:7:\"bag-alt\";s:4:\"code\";i:59470;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:646:\"M843.8 91.8L656.3 91.8 656.3 33.2C656.3-19.5 615.2-60.5 562.5-60.5L439.5-60.5C386.7-60.5 345.7-19.5 345.7 33.2L345.7 91.8 156.3 91.8C121.1 91.8 93.8 121.1 93.8 154.3L93.8 873C93.8 908.2 121.1 935.5 156.3 935.5L843.8 935.5C878.9 935.5 906.3 908.2 906.3 873L906.3 154.3C906.3 121.1 878.9 91.8 843.8 91.8ZM408.2 33.2C408.2 15.6 421.9 2 439.5 2L562.5 2C580.1 2 593.8 15.6 593.8 33.2L593.8 91.8 408.2 91.8ZM843.8 873L156.3 873 156.3 154.3 345.7 154.3 345.7 218.8C345.7 218.8 343.8 250 375 250 410.2 250 408.2 218.8 408.2 218.8L408.2 154.3 593.8 154.3 593.8 218.8C593.8 218.8 591.8 250 625 250 656.3 250 656.3 218.8 656.3 218.8L656.3 154.3 843.8 154.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"bag\";}}i:79;a:7:{s:3:\"uid\";s:32:\"00521d58bc3004669cebcac658d7926b\";s:3:\"css\";s:6:\"back-1\";s:4:\"code\";i:59471;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:759:\"M966.8 857.4C966.8 857.4 966.8 857.4 964.8 857.4 949.2 857.4 939.5 845.7 939.5 830.1 937.5 818.4 906.3 537.1 466.8 537.1L466.8 716.8C466.8 728.5 460.9 740.2 449.2 744.1 439.5 750 425.8 748 416 740.2L11.7 404.3C3.9 398.4 0 390.6 0 380.9 0 371.1 3.9 363.3 11.7 357.4L416 23.4C425.8 17.6 439.5 15.6 449.2 19.5 460.9 25.4 466.8 37.1 466.8 48.8L466.8 224.6C648.4 230.5 791 287.1 882.8 394.5 1031.3 568.4 998 820.3 996.1 832 994.1 845.7 982.4 857.4 966.8 857.4ZM435.5 474.6C435.5 474.6 437.5 474.6 437.5 474.6 750 474.6 869.1 580.1 937.5 673.8 927.7 599.6 898.4 507.8 834 435.5 750 337.9 615.2 285.2 435.5 285.2 419.9 285.2 404.3 271.5 404.3 253.9L404.3 113.3 80.1 380.9 404.3 650.4 404.3 505.9C404.3 498 408.2 490.2 414.1 484.4 419.9 478.5 427.7 474.6 435.5 474.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"back\";}}i:80;a:7:{s:3:\"uid\";s:32:\"7cad342efaf0ddcbdf1c2235c61ee7a3\";s:3:\"css\";s:9:\"forward-4\";s:4:\"code\";i:59472;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:754:\"M33.2 857.4C33.2 857.4 33.2 857.4 35.2 857.4 50.8 857.4 60.5 845.7 60.5 830.1 62.5 818.4 93.8 537.1 531.3 537.1L533.2 716.8C533.2 728.5 539.1 740.2 550.8 744.1 560.5 750 574.2 748 584 740.2L988.3 404.3C996.1 398.4 1000 390.6 1000 380.9 1000 371.1 996.1 363.3 988.3 357.4L584 23.4C574.2 17.6 560.5 15.6 550.8 19.5 539.1 25.4 533.2 37.1 533.2 48.8L531.3 224.6C349.6 230.5 209 287.1 117.2 394.5-31.3 568.4 2 820.3 3.9 832 5.9 845.7 17.6 857.4 33.2 857.4ZM564.5 474.6C564.5 474.6 562.5 474.6 562.5 474.6 250 474.6 130.9 580.1 62.5 673.8 72.3 599.6 101.6 507.8 166 435.5 250 337.9 384.8 285.2 564.5 285.2 580.1 285.2 595.7 271.5 595.7 253.9L595.7 113.3 919.9 380.9 595.7 650.4 595.7 505.9C595.7 498 591.8 490.2 585.9 484.4 580.1 478.5 572.3 474.6 564.5 474.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"forward\";}}i:81;a:7:{s:3:\"uid\";s:32:\"3ec3d445da43b9fa530eaba78189457d\";s:3:\"css\";s:8:\"settings\";s:4:\"code\";i:59473;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1028:\"M982.4 148.4C972.7 142.6 959 144.5 951.2 152.3L793 294.9 650.4 148.4 793-13.7C798.8-23.4 800.8-35.2 796.9-44.9 793-56.6 781.3-62.5 769.5-62.5L761.7-62.5C673.8-62.5 523.4-54.7 457 11.7L443.4 25.4C371.1 99.6 359.4 218.8 396.5 310.5L37.1 677.7C-11.7 726.6-11.7 806.6 37.1 855.5L80.1 900.4C105.5 925.8 136.7 937.5 168 937.5 201.2 937.5 232.4 925.8 255.9 900.4L623 531.3C656.3 550.8 705.1 562.5 744.1 562.5 808.6 562.5 869.1 537.1 914.1 490.2L927.7 476.6C1000 402.3 1000 246.1 1000 175.8 1000 164.1 994.1 152.3 982.4 148.4ZM884.8 435.5L873 447.3C837.9 484.4 793 500 744.1 500 720.7 500 689.5 496.1 666 486.3 646.5 478.5 628.9 466.8 613.3 453.1L212.9 855.5C201.2 869.1 185.5 875 168 875 152.3 875 136.7 869.1 125 855.5L80.1 812.5C56.6 787.1 56.6 748 80.1 722.7L472.7 322.3C459 304.7 449.2 283.2 445.3 261.7L445.3 261.7C429.7 201.2 437.5 117.2 486.3 68.4L498 54.7C539.1 13.7 644.5 2 703.1-2L587.9 130.9C578.1 142.6 578.1 160.2 589.8 171.9L771.5 357.4C781.3 369.1 798.8 369.1 810.5 357.4L939.5 244.1C935.5 304.7 923.8 394.5 884.8 435.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"settings\";}}i:82;a:7:{s:3:\"uid\";s:32:\"ec91ca9816beb42cdba5fc7736330428\";s:3:\"css\";s:10:\"umbrella-1\";s:4:\"code\";i:59474;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:546:\"M1000 435.5C1000 453.1 986.3 466.8 968.8 466.8L531.3 466.8 531.3 783.2C531.3 867.2 460.9 937.5 377 937.5 291 937.5 222.7 867.2 222.7 783.2 222.7 765.6 236.3 752 253.9 752 269.5 752 285.2 765.6 285.2 783.2 285.2 834 326.2 875 377 875 427.7 875 468.8 834 468.8 783.2L468.8 466.8 31.3 466.8C13.7 466.8 0 453.1 0 435.5 0 193.4 175.8 41 468.8 31.3L468.8-31.3C468.8-48.8 482.4-62.5 500-62.5 517.6-62.5 531.3-48.8 531.3-31.3L531.3 31.3C822.3 41 1000 193.4 1000 435.5ZM937.5 404.3C921.9 209 761.7 91.8 500 91.8 236.3 91.8 78.1 209 62.5 404.3L937.5 404.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"umbrella\";}}i:83;a:7:{s:3:\"uid\";s:32:\"50e99c3c2b1d6e3cecf88349e5d176c9\";s:3:\"css\";s:7:\"trash-4\";s:4:\"code\";i:59475;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:567:\"M875 93.8L656.3 93.8 656.3 7.8C656.3-31.3 623-62.5 584-62.5L416-62.5C377-62.5 343.8-31.3 343.8 7.8L343.8 93.8 125 93.8C107.4 93.8 93.8 107.4 93.8 125 93.8 140.6 107.4 156.3 125 156.3L168 156.3 240.2 877C242.2 912.1 271.5 937.5 304.7 937.5L695.3 937.5C728.5 937.5 757.8 912.1 759.8 878.9L832 156.3 875 156.3C892.6 156.3 906.3 140.6 906.3 125 906.3 107.4 892.6 93.8 875 93.8ZM406.3 7.8C406.3 2 410.2-2 416-2L584-2C589.8-2 593.8 2 593.8 7.8L593.8 93.8 406.3 93.8ZM697.3 873C697.3 873 695.3 875 695.3 875L304.7 875C304.7 875 302.7 873 302.7 871.1L230.5 156.3 769.5 156.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"trash\";}}i:84;a:7:{s:3:\"uid\";s:32:\"aa14bf5771b9b20d7a5c9635f65dd2e5\";s:3:\"css\";s:5:\"tag-3\";s:4:\"code\";i:59476;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:727:\"M1000 343.8L1000 13.7C1000-29.3 966.8-62.5 923.8-62.5L599.6-62.5 585.9-62.5C566.4-62.5 533.2-62.5 511.7-41L17.6 453.1C5.9 464.8 0 480.5 0 496.1 0 513.7 5.9 529.3 17.6 541L396.5 919.9C408.2 931.6 423.8 937.5 441.4 937.5 457 937.5 472.7 931.6 484.4 919.9L978.5 425.8C1000 404.3 1000 373 1000 343.8ZM935.5 380.9L439.5 875 62.5 496.1 556.6 3.9C560.5 0 578.1 0 585.9 0L599.6 0 923.8 0C931.6 0 937.5 5.9 937.5 13.7L937.5 343.8C937.5 355.5 937.5 377 935.5 380.9ZM750 62.5C681.6 62.5 625 119.1 625 187.5 625 255.9 681.6 312.5 750 312.5 818.4 312.5 875 255.9 875 187.5 875 119.1 818.4 62.5 750 62.5ZM750 250C714.8 250 687.5 222.7 687.5 187.5 687.5 152.3 714.8 125 750 125 785.2 125 812.5 152.3 812.5 187.5 812.5 222.7 785.2 250 750 250Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"tag price\";}}i:85;a:7:{s:3:\"uid\";s:32:\"04c39edef1881b7ce2c5e7adc65cafc0\";s:3:\"css\";s:10:\"lifebuoy-3\";s:4:\"code\";i:59477;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1212:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM625 17.6C765.6 60.5 877 171.9 918 312.5L716.8 312.5C693.4 275.4 662.1 244.1 625 220.7ZM687.5 437.5C687.5 541 603.5 625 500 625 396.5 625 312.5 541 312.5 437.5 312.5 334 396.5 250 500 250 603.5 250 687.5 334 687.5 437.5ZM437.5 3.9C457 2 478.5 0 500 0 521.5 0 543 2 562.5 3.9L562.5 195.3C543 191.4 521.5 187.5 500 187.5 478.5 187.5 457 191.4 437.5 195.3ZM375 17.6L375 220.7C337.9 244.1 306.6 275.4 283.2 312.5L82 312.5C123 171.9 234.4 60.5 375 17.6ZM62.5 437.5C62.5 416 64.5 394.5 68.4 375L257.8 375C253.9 394.5 250 416 250 437.5 250 459 253.9 480.5 257.8 500L68.4 500C64.5 480.5 62.5 459 62.5 437.5ZM375 857.4C234.4 814.5 123 703.1 82 562.5L283.2 562.5C306.6 599.6 337.9 630.9 375 654.3ZM562.5 871.1C543 873 521.5 875 500 875 478.5 875 457 873 437.5 871.1L437.5 679.7C457 683.6 478.5 687.5 500 687.5 521.5 687.5 543 683.6 562.5 679.7ZM625 857.4L625 654.3C662.1 630.9 693.4 599.6 716.8 562.5L918 562.5C877 703.1 765.6 814.5 625 857.4ZM742.2 500C746.1 480.5 750 459 750 437.5 750 416 746.1 394.5 742.2 375L931.6 375C935.5 394.5 937.5 416 937.5 437.5 937.5 459 935.5 480.5 931.6 500Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:16:\"lifebuoy support\";}}i:86;a:7:{s:3:\"uid\";s:32:\"20400b29120fe2cf0a9ac4abc0bf0922\";s:3:\"css\";s:13:\"resize-full-3\";s:4:\"code\";i:59478;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1719:\"M669.9 312.5L939.5 44.9 937.5 195.3C937.5 209 947.3 218.8 960.9 218.8L976.6 218.8C988.3 218.8 1000 210.9 1000 199.2L1000-27.3C1000-27.3 1000-27.3 1000-27.3L1000-39.1C1000-44.9 1000-50.8 994.1-54.7 990.2-58.6 986.3-60.5 978.5-60.5L966.8-60.5C966.8-60.5 966.8-60.5 966.8-60.5L742.2-62.5C730.5-62.5 720.7-50.8 718.8-39.1L718.8-21.5C720.7-7.8 732.4 2 746.1 0L892.6 2 625 267.6C613.3 279.3 613.3 298.8 625 312.5 638.7 324.2 658.2 324.2 669.9 312.5ZM332 562.5L62.5 830.1 62.5 679.7C64.5 666 52.7 656.3 41 656.3L23.4 656.3C11.7 656.3 0 664.1 0 675.8L0 902.3C0 902.3 0 902.3 0 902.3L0 914.1C0 919.9 0 925.8 3.9 929.7 9.8 933.6 13.7 935.5 21.5 935.5L33.2 935.5C33.2 935.5 33.2 935.5 33.2 935.5L257.8 937.5C271.5 935.5 281.3 925.8 281.3 914.1L281.3 896.5C279.3 882.8 267.6 873 255.9 875L107.4 873 375 607.4C386.7 595.7 386.7 576.2 375 562.5 363.3 550.8 343.8 550.8 332 562.5ZM1000 902.3L1000 675.8C1000 664.1 988.3 656.3 976.6 656.3L960.9 656.3C947.3 656.3 937.5 666 937.5 679.7L939.5 830.1 669.9 562.5C658.2 550.8 638.7 550.8 625 562.5 613.3 576.2 613.3 595.7 625 607.4L892.6 873 746.1 875C732.4 873 720.7 882.8 718.8 896.5L718.8 914.1C720.7 925.8 730.5 935.5 742.2 937.5L966.8 935.5C966.8 935.5 966.8 935.5 966.8 935.5L978.5 935.5C986.3 935.5 990.2 933.6 996.1 929.7 1000 925.8 1000 919.9 1000 914.1L1000 902.3C1000 902.3 1000 902.3 1000 902.3ZM107.4 2L255.9 0C267.6 2 279.3-7.8 281.3-21.5L281.3-39.1C281.3-50.8 271.5-62.5 257.8-62.5L33.2-60.5C33.2-60.5 33.2-60.5 33.2-60.5L21.5-60.5C13.7-60.5 9.8-58.6 3.9-54.7 0-50.8 0-44.9 0-39.1L0-27.3C0-27.3 0-27.3 0-27.3L0 199.2C0 210.9 11.7 218.8 23.4 218.8L41 218.8C52.7 218.8 62.5 209 62.5 195.3L62.5 44.9 332 312.5C343.8 324.2 363.3 324.2 375 312.5 386.7 298.8 386.7 279.3 375 267.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"resize full\";}}i:87;a:7:{s:3:\"uid\";s:32:\"eb7439a96945f2b7b45c34537d2c0932\";s:3:\"css\";s:14:\"resize-small-2\";s:4:\"code\";i:59479;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1775:\"M375 275.4L373 50.8C373 37.1 363.3 31.3 349.6 29.3L334 29.3C322.3 29.3 312.5 41 312.5 52.7L312.5 205.1 52.7-52.7C41-64.5 21.5-64.5 7.8-52.7-3.9-41-3.9-19.5 7.8-7.8L267.6 248 119.1 248C107.4 248 95.7 257.8 93.8 271.5L93.8 287.1C93.8 300.8 103.5 310.5 117.2 310.5L341.8 310.5C341.8 310.5 341.8 310.5 341.8 310.5L353.5 310.5C359.4 310.5 365.2 308.6 369.1 304.7 373 300.8 375 294.9 375 289.1L373 277.3C373 277.3 375 277.3 375 275.4ZM630.9 304.7C634.8 308.6 640.6 310.5 646.5 310.5L658.2 310.5C658.2 310.5 658.2 310.5 658.2 310.5L882.8 310.5C896.5 310.5 906.3 300.8 906.3 287.1L906.3 271.5C904.3 257.8 892.6 248 880.9 248L732.4 248 992.2-7.8C1003.9-19.5 1003.9-41 992.2-52.7 978.5-64.5 959-64.5 947.3-52.7L687.5 205.1 687.5 52.7C689.5 41 677.7 29.3 666 29.3L650.4 29.3C636.7 31.3 627 37.1 627 50.8L625 275.4C625 277.3 627 277.3 627 277.3L625 289.1C625 294.9 627 300.8 630.9 304.7ZM369.1 570.3C365.2 566.4 359.4 562.5 353.5 562.5L341.8 564.5C341.8 564.5 341.8 564.5 341.8 564.5L117.2 562.5C103.5 562.5 93.8 574.2 93.8 585.9L93.8 601.6C95.7 617.2 107.4 625 119.1 625L267.6 625 7.8 882.8C-3.9 894.5-3.9 916 7.8 927.7 21.5 939.5 41 939.5 52.7 927.7L312.5 669.9 312.5 822.3C310.5 834 322.3 845.7 334 845.7L349.6 845.7C363.3 843.8 373 837.9 373 824.2L375 599.6C375 597.7 373 597.7 373 597.7L375 585.9C375 580.1 373 574.2 369.1 570.3ZM732.4 625L880.9 625C892.6 625 904.3 617.2 906.3 601.6L906.3 585.9C906.3 574.2 896.5 562.5 882.8 562.5L658.2 562.5C658.2 562.5 658.2 562.5 658.2 562.5L644.5 562.5C638.7 562.5 632.8 566.4 628.9 570.3 625 574.2 623 580.1 623 585.9L625 597.7C625 597.7 623 597.7 623 599.6L625 824.2C625 837.9 634.8 843.8 648.4 845.7L664.1 845.7C677.7 845.7 687.5 834 687.5 822.3L685.5 669.9 947.3 927.7C959 939.5 978.5 939.5 992.2 927.7 1003.9 916 1003.9 894.5 992.2 882.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"resize small\";}}i:88;a:7:{s:3:\"uid\";s:32:\"bd56539a2c7d0489047809e3f415eb9a\";s:3:\"css\";s:9:\"shuffle-5\";s:4:\"code\";i:59480;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:920:\"M392.6 431.6L431.6 377 300.8 199.2 2 199.2 2 261.7 267.6 261.7ZM896.5 261.7L822.3 328.1C812.5 337.9 808.6 351.6 818.4 361.3L824.2 369.1C834 377 847.7 377 857.4 369.1L982.4 255.9C982.4 255.9 982.4 255.9 982.4 255.9L990.2 248C994.1 242.2 998 236.3 998 232.4 998 226.6 994.1 220.7 990.2 214.8L982.4 207C982.4 207 982.4 207 982.4 207L855.5 91.8C845.7 84 832 84 822.3 91.8L816.4 99.6C806.6 107.4 810.5 123 820.3 130.9L894.5 199.2 668 199.2 267.6 761.7 2 761.7 2 824.2 300.8 824.2 699.2 261.7ZM982.4 769.5C982.4 769.5 982.4 769.5 982.4 769.5L855.5 654.3C845.7 646.5 832 646.5 822.3 654.3L816.4 662.1C806.6 669.9 810.5 685.5 820.3 693.4L894.5 761.7 699.2 761.7 587.9 587.9 548.8 642.6 668 824.2 896.5 824.2 822.3 890.6C812.5 900.4 808.6 914.1 818.4 923.8L824.2 931.6C834 939.5 847.7 939.5 857.4 931.6L982.4 818.4C982.4 818.4 982.4 818.4 982.4 818.4L990.2 810.5C994.1 804.7 998 798.8 998 794.9 998 789.1 994.1 783.2 990.2 777.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"shuffle\";}}i:89;a:7:{s:3:\"uid\";s:32:\"f43c16822305249c00ea73f09374cb70\";s:3:\"css\";s:8:\"export-3\";s:4:\"code\";i:59481;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:602:\"M880.9 865.2L68.4 865.2 68.4 240.2 320.3 240.2 382.8 179.7 380.9 177.7 68.4 177.7C33.2 177.7 5.9 205.1 5.9 240.2L5.9 865.2C5.9 898.4 33.2 927.7 68.4 927.7L880.9 927.7C916 927.7 943.4 898.4 943.4 865.2L943.4 375 880.9 435.5ZM263.7 615.2L326.2 615.2C371.1 365.2 587.9 177.7 847.7 177.7 859.4 177.7 869.1 177.7 880.9 177.7L765.6 291C753.9 304.7 753.9 324.2 765.6 335.9 771.5 341.8 779.3 345.7 787.1 345.7 794.9 345.7 802.7 341.8 810.5 335.9L994.1 146.5 810.5-43C796.9-54.7 777.3-54.7 765.6-43 753.9-31.3 753.9-11.7 765.6 2L878.9 115.2C869.1 115.2 859.4 115.2 849.6 115.2 552.7 115.2 308.6 332 263.7 615.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"export\";}}i:90;a:7:{s:3:\"uid\";s:32:\"19737e9cf49f086e0333a4418cb0ef51\";s:3:\"css\";s:7:\"share-3\";s:4:\"code\";i:59482;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:988:\"M843.8 625C793 625 746.1 650.4 718.8 687.5L306.6 478.5C310.5 464.8 312.5 451.2 312.5 437.5 312.5 419.9 308.6 402.3 304.7 386.7L716.8 185.5C746.1 224.6 791 250 843.8 250 929.7 250 1000 179.7 1000 93.8 1000 7.8 929.7-62.5 843.8-62.5 757.8-62.5 687.5 7.8 687.5 93.8 687.5 105.5 689.5 117.2 691.4 128.9L271.5 332C244.1 300.8 203.1 281.3 156.3 281.3 70.3 281.3 0 351.6 0 437.5 0 523.4 70.3 593.8 156.3 593.8 205.1 593.8 250 570.3 279.3 535.2L691.4 744.1C689.5 755.9 687.5 769.5 687.5 781.3 687.5 867.2 757.8 937.5 843.8 937.5 929.7 937.5 1000 867.2 1000 781.3 1000 695.3 929.7 625 843.8 625ZM843.8 0C896.5 0 937.5 41 937.5 93.8 937.5 146.5 896.5 187.5 843.8 187.5 791 187.5 750 146.5 750 93.8 750 41 791 0 843.8 0ZM156.3 531.3C103.5 531.3 62.5 490.2 62.5 437.5 62.5 384.8 103.5 343.8 156.3 343.8 209 343.8 250 384.8 250 437.5 250 490.2 209 531.3 156.3 531.3ZM843.8 875C791 875 750 834 750 781.3 750 728.5 791 687.5 843.8 687.5 896.5 687.5 937.5 728.5 937.5 781.3 937.5 834 896.5 875 843.8 875Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"share\";}}i:91;a:7:{s:3:\"uid\";s:32:\"062a3666999ff9e4700889d78784f5ac\";s:3:\"css\";s:8:\"rocket-2\";s:4:\"code\";i:59483;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1796:\"M205.1 800.8C185.5 841.8 171.9 867.2 62.5 871.1 66.4 767.6 85.9 755.9 127 734.4 144.5 726.6 164.1 716.8 187.5 699.2L150.4 650.4C130.9 664.1 115.2 671.9 99.6 679.7 31.3 712.9 0 746.1 0 902.3L0 933.6 31.3 933.6C197.3 933.6 228.5 896.5 259.8 832 265.6 818.4 269.5 808.6 281.3 789.1L234.4 748C220.7 765.6 212.9 785.2 205.1 800.8ZM687.5 121.1C619.1 121.1 562.5 177.7 562.5 246.1 562.5 316.4 619.1 373 687.5 373 757.8 373 814.5 316.4 814.5 246.1 814.5 177.7 757.8 121.1 687.5 121.1ZM687.5 310.5C654.3 310.5 625 281.3 625 246.1 625 212.9 654.3 183.6 687.5 183.6 722.7 183.6 752 212.9 752 246.1 752 281.3 722.7 310.5 687.5 310.5ZM1000-33.2C998-48.8 986.3-62.5 970.7-62.5 970.7-62.5 796.9-76.2 627-13.7 566.4 9.8 515.6 46.9 468.8 101.6 429.7 146.5 390.6 230.5 355.5 298.8 341.8 326.2 330.1 351.6 318.4 371.1L144.5 371.1C134.8 371.1 127 375 121.1 380.9L5.9 505.9C0 513.7-3.9 525.4 0 535.2 3.9 546.9 11.7 554.7 23.4 556.6L209 599.6C222.7 615.2 244.1 638.7 277.3 675.8L347.7 753.9 386.7 916C388.7 925.8 396.5 933.6 406.3 937.5 410.2 939.5 414.1 939.5 416 939.5 423.8 939.5 431.6 937.5 437.5 931.6L552.7 816.4C558.6 810.5 564.5 802.7 564.5 793L564.5 630.9C578.1 621.1 607.4 607.4 632.8 591.8 703.1 552.7 808.6 503.9 853.5 464.8 914.1 410.2 937.5 369.1 959 310.5 1011.7 169.9 1000-25.4 1000-33.2ZM900.4 289.1C880.9 339.8 863.3 371.1 810.5 418 773.4 453.1 666 502 601.6 537.1 554.7 564.5 525.4 580.1 511.7 591.8 505.9 597.7 502 605.5 502 615.2L502 779.3 435.5 851.6 406.3 732.4C406.3 726.6 402.3 722.7 400.4 718.8 341.8 654.3 255.9 558.6 248 550.8 244.1 544.9 238.3 541 232.4 541L87.9 507.8 158.2 433.6 335.9 433.6C347.7 433.6 357.4 427.7 363.3 418 377 396.5 392.6 363.3 412.1 328.1 443.4 265.6 482.4 181.6 515.6 142.6 556.6 93.8 597.7 64.5 650.4 44.9 765.6 2 884.8-2 937.5-2 939.5 56.6 937.5 189.5 900.4 289.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"rocket\";}}i:92;a:7:{s:3:\"uid\";s:32:\"4a92839abd65eafc105832e870a9d642\";s:3:\"css\";s:6:\"help-2\";s:4:\"code\";i:59484;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:896:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877ZM453.1 718.8L533.2 718.8 533.2 640.6 453.1 640.6ZM500 156.3C453.1 156.3 416 168 386.7 193.4 355.5 216.8 341.8 267.6 341.8 308.6L343.8 310.5 416 310.5C416 285.2 423.8 250 439.5 238.3 457 224.6 476.6 218.8 500 218.8 525.4 218.8 546.9 226.6 560.5 240.2 574.2 255.9 582 275.4 582 302.7 582 326.2 576.2 345.7 566.4 361.3 554.7 377 537.1 400.4 511.7 429.7 486.3 453.1 470.7 472.7 464.8 486.3 459 500 455.1 525.4 455.1 562.5L529.3 562.5C529.3 539.1 531.3 523.4 535.2 511.7 537.1 500 544.9 488.3 558.6 474.6 589.8 445.3 613.3 418 630.9 390.6 648.4 363.3 658.2 334 658.2 300.8 658.2 255.9 644.5 218.8 615.2 193.4 587.9 168 548.8 156.3 500 156.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"help\";}}i:93;a:7:{s:3:\"uid\";s:32:\"9309e69a8e92f031a7e9fbe13c3705d4\";s:3:\"css\";s:11:\"chart-pie-3\";s:4:\"code\";i:59485;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:551:\"M562.5 29.3C544.9 29.3 531.3 43 531.3 60.5 531.3 78.1 544.9 91.8 562.5 91.8 783.2 91.8 937.5 252 937.5 474.6 937.5 695.3 757.8 875 537.1 875 314.5 875 154.3 714.8 154.3 494.1 154.3 476.6 140.6 462.9 123 462.9 105.5 462.9 91.8 476.6 91.8 494.1 91.8 750 281.3 937.5 537.1 937.5 793 937.5 1000 730.5 1000 474.6 1000 218.8 818.4 29.3 562.5 29.3ZM468.8 375L468.8-31.3C468.8-48.8 455.1-62.5 437.5-62.5 195.3-62.5 0 132.8 0 375 0 392.6 13.7 406.3 31.3 406.3L437.5 406.3C455.1 406.3 468.8 392.6 468.8 375ZM406.3 343.8L64.5 343.8C78.1 160.2 222.7 15.6 406.3 2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:13:\"chart diagram\";}}i:94;a:7:{s:3:\"uid\";s:32:\"bc33f67a158183ca15af3230d0ffd392\";s:3:\"css\";s:5:\"pen-1\";s:4:\"code\";i:59486;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1060:\"M941.4-13.7C908.2-46.9 869.1-62.5 830.1-62.5 767.6-62.5 720.7-23.4 709-9.8 691.4 7.8 89.8 607.4 89.8 607.4 85.9 611.3 84 617.2 82 623 68.4 671.9 2 894.5 0 896.5-3.9 908.2 0 919.9 7.8 929.7 13.7 935.5 21.5 937.5 31.3 937.5 33.2 937.5 37.1 937.5 41 937.5 43 935.5 271.5 861.3 310.5 849.6 314.5 849.6 318.4 845.7 322.3 841.8 347.7 818.4 906.3 265.6 943.4 226.6 982.4 187.5 1002 146.5 1002 103.5 1000 62.5 980.5 23.4 941.4-13.7ZM699.2 89.8C714.8 93.8 752 105.5 791 144.5 830.1 183.6 839.8 228.5 841.8 238.3 718.8 361.3 435.5 640.6 324.2 752 314.5 726.6 298.8 699.2 271.5 671.9 238.3 638.7 205.1 619.1 179.7 609.4 289.1 498 578.1 210.9 699.2 89.8ZM136.7 662.1C154.3 666 189.5 679.7 226.6 716.8 253.9 744.1 267.6 775.4 273.4 794.9 230.5 808.6 134.8 841.8 74.2 861.3 91.8 802.7 123 710.9 136.7 662.1ZM898.4 181.6C898.4 183.6 894.5 185.5 892.6 187.5 882.8 162.1 865.2 130.9 835.9 99.6 804.7 68.4 773.4 50.8 750 39.1 752 37.1 752 35.2 753.9 35.2 757.8 31.3 789.1 0 830.1 0 853.5 0 877 11.7 898.4 33.2 923.8 56.6 937.5 82 937.5 105.5 937.5 128.9 925.8 154.3 898.4 181.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"pen\";}}i:95;a:7:{s:3:\"uid\";s:32:\"b17ed19e453fa1dc23e6dae364cf85f6\";s:3:\"css\";s:6:\"edit-2\";s:4:\"code\";i:59487;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:932:\"M781.3 875L62.5 875 62.5 93.8 500 93.8 564.5 33.2 562.5 31.3 62.5 31.3C27.3 31.3 0 58.6 0 93.8L0 875C0 910.2 27.3 937.5 62.5 937.5L781.3 937.5C814.5 937.5 843.8 910.2 843.8 875L843.8 418 781.3 476.6ZM951.2-21.5C923.8-48.8 892.6-62.5 859.4-62.5 806.6-62.5 769.5-29.3 757.8-19.5 744.1-3.9 330.1 408.2 330.1 408.2 326.2 412.1 324.2 416 322.3 421.9 312.5 462.9 255.9 646.5 255.9 648.4 252 658.2 253.9 668 261.7 675.8 265.6 679.7 273.4 683.6 279.3 683.6 283.2 683.6 285.2 681.6 289.1 681.6 289.1 681.6 480.5 619.1 511.7 609.4 515.6 609.4 519.5 607.4 521.5 603.5 541 584 921.9 209 953.1 177.7 986.3 144.5 1002 111.3 1000 76.2 1000 41 984.4 7.8 951.2-21.5ZM908.2 134.8C890.6 152.3 755.9 287.1 503.9 533.2L484.4 552.7C455.1 562.5 386.7 584 334 601.6 351.6 544.9 371.1 478.5 380.9 447.3 433.6 392.6 789.1 39.1 802.7 25.4 804.7 23.4 830.1 0 859.4 0 875 0 892.6 7.8 908.2 23.4 927.7 41 937.5 60.5 937.5 76.2 937.5 93.8 927.7 113.3 908.2 134.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"edit\";}}i:96;a:7:{s:3:\"uid\";s:32:\"2fbaf106ea9767701037af7971690ac5\";s:3:\"css\";s:6:\"note-2\";s:4:\"code\";i:59488;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1005:\"M968.8 627C968.8 625 968.8 625 968.8 625L968.8-27.3C968.8-29.3 968.8-33.2 968.8-37.1 964.8-50.8 953.1-62.5 937.5-62.5 931.6-62.5 925.8-60.5 921.9-58.6L337.9 93.8C328.1 95.7 320.3 103.5 316.4 113.3 314.5 119.1 312.5 123 312.5 128.9L312.5 687.5C283.2 668 244.1 656.3 203.1 656.3 107.4 656.3 31.3 718.8 31.3 796.9 31.3 875 107.4 937.5 203.1 937.5 298.8 937.5 375 875 375 796.9 375 793 375 789.1 375 785.2 375 785.2 375 785.2 375 785.2L375 148.4 906.3 9.8 906.3 531.3C877 511.7 837.9 500 796.9 500 701.2 500 625 562.5 625 640.6 625 718.8 701.2 781.3 796.9 781.3 892.6 781.3 968.8 718.8 968.8 640.6 968.8 636.7 968.8 630.9 968.8 627ZM203.1 875C138.7 875 93.8 834 93.8 796.9 93.8 759.8 138.7 718.8 203.1 718.8 261.7 718.8 304.7 752 312.5 785.2L312.5 785.2C312.5 789.1 312.5 791 314.5 793 314.5 794.9 314.5 794.9 314.5 796.9 314.5 834 269.5 875 203.1 875ZM796.9 718.8C732.4 718.8 687.5 677.7 687.5 640.6 687.5 603.5 732.4 562.5 796.9 562.5 861.3 562.5 906.3 603.5 906.3 640.6 906.3 677.7 861.3 718.8 796.9 718.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"note\";}}i:97;a:7:{s:3:\"uid\";s:32:\"4050a4b5880efdfce624803b98ff98d9\";s:3:\"css\";s:8:\"note-alt\";s:4:\"code\";i:59489;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:518:\"M832 253.9L527.3-52.7C517.6-62.5 503.9-64.5 492.2-58.6 478.5-54.7 470.7-43 470.7-29.3L470.7 662.1C437.5 638.7 394.5 623 345.7 623 242.2 623 158.2 693.4 158.2 779.3 158.2 867.2 242.2 935.5 345.7 935.5 449.2 935.5 533.2 867.2 533.2 779.3 533.2 775.4 533.2 771.5 533.2 769.5L533.2 41 789.1 296.9C800.8 310.5 820.3 310.5 832 296.9 845.7 285.2 845.7 265.6 832 253.9ZM345.7 873C271.5 873 220.7 824.2 220.7 779.3 220.7 736.3 271.5 685.5 345.7 685.5 418 685.5 468.8 734.4 470.7 777.3L470.7 783.2C468.8 826.2 418 873 345.7 873Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"note music\";}}i:98;a:7:{s:3:\"uid\";s:32:\"150e0f4c257ebb44b3109cc1e6e65e39\";s:3:\"css\";s:5:\"mic-3\";s:4:\"code\";i:59490;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:905:\"M498 625L505.9 625C593.8 625 656.3 560.5 656.3 472.7L656.3 99.6C656.3 9.8 589.8-62.5 505.9-62.5L498-62.5C414.1-62.5 343.8 9.8 343.8 99.6L343.8 472.7C343.8 558.6 410.2 625 498 625ZM406.3 99.6C406.3 44.9 447.3 0 498 0L505.9 0C556.6 0 593.8 43 593.8 99.6L593.8 472.7C593.8 527.3 558.6 562.5 505.9 562.5L498 562.5C445.3 562.5 406.3 525.4 406.3 472.7ZM781.3 281.3C763.7 281.3 750 294.9 750 312.5L750 443.4C750 628.9 683.6 718.8 546.9 718.8L455.1 718.8C275.4 718.8 250 568.4 250 443.4L250 312.5C250 294.9 236.3 281.3 218.8 281.3 201.2 281.3 187.5 294.9 187.5 312.5L187.5 443.4C187.5 658.2 277.3 781.3 455.1 781.3L468.8 781.3 468.8 875 312.5 875C294.9 875 281.3 888.7 281.3 906.3 281.3 923.8 294.9 937.5 312.5 937.5L687.5 937.5C705.1 937.5 718.8 923.8 718.8 906.3 718.8 888.7 705.1 875 687.5 875L531.3 875 531.3 781.3 546.9 781.3C668 781.3 812.5 722.7 812.5 443.4L812.5 312.5C812.5 294.9 798.8 281.3 781.3 281.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"mic\";}}i:99;a:7:{s:3:\"uid\";s:32:\"fc76329ad08b3648225e8b4f7b1a1be8\";s:3:\"css\";s:6:\"repeat\";s:4:\"code\";i:59491;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:806:\"M937.5 37.1L62.5 37.1C27.3 37.1 0 64.5 0 99.6L0 662.1C0 697.3 27.3 724.6 62.5 724.6L218.8 724.6C238.3 724.6 250 699.2 250 693.4L250 693.4C250 687.5 240.2 662.1 218.8 662.1L101.6 662.1C80.1 662.1 62.5 644.5 62.5 623L62.5 138.7C62.5 117.2 80.1 101.6 101.6 101.6L900.4 99.6C919.9 99.6 937.5 117.2 937.5 136.7L937.5 623C937.5 644.5 919.9 662.1 900.4 662.1L505.9 662.1 580.1 593.8C589.8 585.9 591.8 572.3 584 562.5L578.1 554.7C568.4 546.9 554.7 546.9 544.9 554.7L418 669.9C418 669.9 418 669.9 418 669.9L410.2 677.7C404.3 683.6 402.3 689.5 402.3 695.3 402.3 701.2 404.3 705.1 410.2 710.9L418 718.8C418 718.8 418 718.8 418 718.8L543 832C552.7 839.8 566.4 839.8 576.2 832L582 824.2C589.8 814.5 587.9 800.8 578.1 793L502 724.6 937.5 724.6C972.7 724.6 1000 697.3 1000 662.1L1000 99.6C1000 64.5 972.7 37.1 937.5 37.1Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"repeat loop\";}}i:100;a:7:{s:3:\"uid\";s:32:\"573541c89bce1055205fb02ce41e049b\";s:3:\"css\";s:8:\"logout-3\";s:4:\"code\";i:59492;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:699:\"M113.3 468.8L656.3 468.8C671.9 468.8 687.5 455.1 687.5 437.5 687.5 419.9 671.9 406.3 656.3 406.3L115.2 406.3 228.5 293C242.2 281.3 242.2 261.7 228.5 248 216.8 236.3 197.3 236.3 185.5 248L0 437.5 185.5 627C191.4 632.8 199.2 636.7 207 636.7 214.8 636.7 222.7 632.8 228.5 627 242.2 615.2 242.2 595.7 228.5 584ZM937.5-62.5L406.3-62.5C371.1-62.5 343.8-35.2 343.8 0L343.8 281.3 406.3 281.3 406.3 39.1C406.3 17.6 423.8 0 443.4 0L898.4 0C918 0 935.5 17.6 935.5 39.1L937.5 837.9C937.5 857.4 919.9 875 898.4 875L443.4 875C423.8 875 406.3 857.4 406.3 837.9L406.3 591.8 343.8 593.8 343.8 875C343.8 910.2 371.1 937.5 406.3 937.5L937.5 937.5C972.7 937.5 1000 910.2 1000 875L1000 0C1000-35.2 972.7-62.5 937.5-62.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"logout exit\";}}i:101;a:7:{s:3:\"uid\";s:32:\"b86211212296f7b5deb64166fda56c02\";s:3:\"css\";s:7:\"login-4\";s:4:\"code\";i:59493;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:671:\"M519.5 584C507.8 595.7 507.8 615.2 519.5 627 525.4 632.8 533.2 636.7 543 636.7 550.8 636.7 558.6 632.8 564.5 627L748 437.5 564.5 248C552.7 236.3 533.2 236.3 519.5 248 507.8 261.7 507.8 281.3 519.5 293L632.8 406.3 31.3 406.3C13.7 406.3 0 419.9 0 437.5 0 455.1 13.7 468.8 31.3 468.8L634.8 468.8ZM937.5-62.5L375-62.5C339.8-62.5 312.5-35.2 312.5 0L312.5 281.3 375 281.3 375 39.1C375 17.6 392.6 0 414.1 0L898.4 0C919.9 0 935.5 17.6 935.5 39.1L937.5 837.9C937.5 857.4 919.9 875 900.4 875L414.1 875C392.6 875 375 857.4 375 837.9L375 591.8 312.5 593.8 312.5 875C312.5 910.2 339.8 937.5 375 937.5L937.5 937.5C972.7 937.5 1000 910.2 1000 875L1000 0C1000-35.2 972.7-62.5 937.5-62.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"login enter\";}}i:102;a:7:{s:3:\"uid\";s:32:\"3440801994d43f66bf7606077825c8ed\";s:3:\"css\";s:6:\"list-2\";s:4:\"code\";i:59494;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1002:\"M93.8 375L31.3 375C13.7 375 0 388.7 0 406.3L0 468.8C0 486.3 13.7 500 31.3 500L93.8 500C111.3 500 125 486.3 125 468.8L125 406.3C125 388.7 111.3 375 93.8 375ZM968.8 406.3L312.5 406.3C294.9 406.3 281.3 419.9 281.3 437.5 281.3 455.1 294.9 468.8 312.5 468.8L968.8 468.8C986.3 468.8 1000 455.1 1000 437.5 1000 419.9 986.3 406.3 968.8 406.3ZM93.8 625L31.3 625C13.7 625 0 638.7 0 656.3L0 718.8C0 736.3 13.7 750 31.3 750L93.8 750C111.3 750 125 736.3 125 718.8L125 656.3C125 638.7 111.3 625 93.8 625ZM968.8 656.3L312.5 656.3C294.9 656.3 281.3 669.9 281.3 687.5 281.3 705.1 294.9 718.8 312.5 718.8L968.8 718.8C986.3 718.8 1000 705.1 1000 687.5 1000 669.9 986.3 656.3 968.8 656.3ZM93.8 125L31.3 125C13.7 125 0 138.7 0 156.3L0 218.8C0 236.3 13.7 250 31.3 250L93.8 250C111.3 250 125 236.3 125 218.8L125 156.3C125 138.7 111.3 125 93.8 125ZM312.5 218.8L968.8 218.8C986.3 218.8 1000 205.1 1000 187.5 1000 169.9 986.3 156.3 968.8 156.3L312.5 156.3C294.9 156.3 281.3 169.9 281.3 187.5 281.3 205.1 294.9 218.8 312.5 218.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"list\";}}i:103;a:7:{s:3:\"uid\";s:32:\"4a3c7e72ffe1d925a1caa86be7fb93ab\";s:3:\"css\";s:11:\"thumbs-up-3\";s:4:\"code\";i:59495;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1429:\"M593.8 937.5C310.5 937.5 308.6 925.8 273.4 898.4 253.9 884.8 218.8 875 89.8 867.2 82 867.2 72.3 863.3 66.4 855.5 64.5 851.6 0 757.8 0 607.4 0 460.9 44.9 392.6 46.9 390.6 52.7 380.9 62.5 375 74.2 375 179.7 375 326.2 240.2 423.8 5.9 441.4-35.2 445.3-62.5 507.8-62.5 543-62.5 582-37.1 601.6-3.9 642.6 62.5 621.1 205.1 603.5 283.2 668 281.3 785.2 281.3 839.8 281.3 916 281.3 968.8 326.2 968.8 394.5 970.7 416 966.8 445.3 960.9 459 978.5 476.6 1000 502 1000 535.2 1002 578.1 974.6 609.4 957 628.9 960.9 640.6 968.8 658.2 966.8 677.7 964.8 724.6 927.7 755.9 906.3 771.5 908.2 785.2 908.2 810.5 904.3 830.1 888.7 906.3 775.4 937.5 593.8 937.5ZM107.4 802.7C218.8 812.5 279.3 826.2 310.5 849.6 334 867.2 332 875 593.8 875 673.8 875 832 871.1 843.8 816.4 847.7 794.9 824.2 773.4 824.2 773.4 818.4 755.9 826.2 738.3 841.8 732.4 841.8 732.4 904.3 709 904.3 673.8 906.3 652.3 890.6 638.7 890.6 638.7 880.9 623 884.8 605.5 898.4 595.7 898.4 595.7 939.5 570.3 937.5 537.1 937.5 509.8 902.3 492.2 900.4 490.2 892.6 486.3 888.7 478.5 886.7 470.7 884.8 460.9 886.7 451.2 892.6 445.3 892.6 445.3 908.2 419.9 906.3 396.5 906.3 345.7 851.6 343.8 839.8 343.8 761.7 343.8 558.6 343.8 558.6 343.8 546.9 343.8 537.1 339.8 531.3 330.1 525.4 322.3 525.4 310.5 529.3 300.8 560.5 212.9 576.2 74.2 548.8 27.3 541 13.7 539.1 0 507.8 0 502 0 492.2 3.9 482.4 29.3 377 279.3 220.7 423.8 93.8 437.5 82 460.9 62.5 513.7 62.5 607.4 62.5 705.1 91.8 779.3 107.4 802.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:14:\"thumbs up like\";}}i:104;a:7:{s:3:\"uid\";s:32:\"52a94e66ecf47170607a2597481a7f54\";s:3:\"css\";s:6:\"home-3\";s:4:\"code\";i:59496;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:749:\"M992.2 439.5L523.4-52.7C517.6-58.6 509.8-62.5 502-62.5 492.2-62.5 484.4-58.6 478.5-52.7L7.8 439.5C-3.9 451.2-3.9 470.7 7.8 482.4 21.5 494.1 41 494.1 52.7 482.4L93.8 437.5 93.8 906.3C93.8 923.8 107.4 937.5 125 937.5L343.8 937.5C361.3 937.5 375 923.8 375 906.3L377 593.8 625 593.8 625 906.3C625 923.8 638.7 937.5 656.3 937.5L875 937.5C892.6 937.5 906.3 923.8 906.3 906.3L906.3 437.5 947.3 482.4C953.1 488.3 962.9 492.2 970.7 492.2 978.5 492.2 986.3 488.3 992.2 482.4 1003.9 470.7 1003.9 451.2 992.2 439.5ZM843.8 380.9L843.8 875 687.5 875 687.5 562.5C687.5 544.9 673.8 531.3 656.3 531.3L345.7 531.3C328.1 531.3 314.5 544.9 314.5 562.5L312.5 875 156.3 875 156.3 380.9C156.3 378.9 156.3 377 156.3 375L502 13.7 843.8 373C843.8 377 843.8 378.9 843.8 380.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"home\";}}i:105;a:7:{s:3:\"uid\";s:32:\"5c49418e9b27466b3bbf024fbc45c725\";s:3:\"css\";s:10:\"th-large-3\";s:4:\"code\";i:59497;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:832:\"M937.5 937.5L625 937.5C589.8 937.5 562.5 910.2 562.5 875L562.5 562.5C562.5 527.3 589.8 500 625 500L937.5 500C972.7 500 1000 527.3 1000 562.5L1000 875C1000 910.2 972.7 937.5 937.5 937.5ZM937.5 562.5L625 562.5 625 875 937.5 875ZM937.5 375L625 375C589.8 375 562.5 347.7 562.5 312.5L562.5 0C562.5-35.2 589.8-62.5 625-62.5L937.5-62.5C972.7-62.5 1000-35.2 1000 0L1000 312.5C1000 347.7 972.7 375 937.5 375ZM937.5 0L625 0 625 312.5 937.5 312.5ZM375 937.5L62.5 937.5C27.3 937.5 0 910.2 0 875L0 562.5C0 527.3 27.3 500 62.5 500L375 500C410.2 500 437.5 527.3 437.5 562.5L437.5 875C437.5 910.2 410.2 937.5 375 937.5ZM375 562.5L62.5 562.5 62.5 875 375 875ZM375 375L62.5 375C27.3 375 0 347.7 0 312.5L0 0C0-35.2 27.3-62.5 62.5-62.5L375-62.5C410.2-62.5 437.5-35.2 437.5 0L437.5 312.5C437.5 347.7 410.2 375 375 375ZM375 0L62.5 0 62.5 312.5 375 312.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:22:\"thumbnails large image\";}}i:106;a:7:{s:3:\"uid\";s:32:\"8826931c06e58410a80ccab3220b0c91\";s:3:\"css\";s:7:\"chart-1\";s:4:\"code\";i:59498;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:772:\"M921.9 156.3C878.9 156.3 843.8 191.4 843.8 234.4 843.8 244.1 845.7 252 847.7 259.8L658.2 423.8C644.5 412.1 627 406.3 609.4 406.3 587.9 406.3 568.4 414.1 554.7 427.7L406.3 353.5C402.3 312.5 369.1 281.3 328.1 281.3 285.2 281.3 250 316.4 250 359.4 250 371.1 252 382.8 257.8 392.6L105.5 568.4C97.7 564.5 87.9 562.5 78.1 562.5 35.2 562.5 0 597.7 0 640.6 0 683.6 35.2 718.8 78.1 718.8 121.1 718.8 156.3 683.6 156.3 640.6 156.3 630.9 154.3 621.1 150.4 611.3L304.7 433.6C312.5 435.5 320.3 437.5 328.1 437.5 351.6 437.5 371.1 427.7 384.8 412.1L531.3 484.4C531.3 527.3 566.4 562.5 609.4 562.5 652.3 562.5 687.5 527.3 687.5 484.4 687.5 482.4 687.5 482.4 687.5 480.5L890.6 306.6C900.4 310.5 910.2 312.5 921.9 312.5 964.8 312.5 1000 277.3 1000 234.4 1000 191.4 964.8 156.3 921.9 156.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"chart\";}}i:107;a:7:{s:3:\"uid\";s:32:\"161124d5ac9719bb7e18d4b04356bd6c\";s:3:\"css\";s:8:\"params-1\";s:4:\"code\";i:59499;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1721:\"M156.3 316.4L156.3-31.3C156.3-48.8 142.6-62.5 125-62.5 107.4-62.5 93.8-48.8 93.8-31.3L93.8 316.4C39.1 330.1 0 378.9 0 437.5 0 496.1 39.1 544.9 93.8 558.6L93.8 906.3C93.8 923.8 107.4 937.5 125 937.5 142.6 937.5 156.3 923.8 156.3 906.3L156.3 558.6C210.9 544.9 250 496.1 250 437.5 250 378.9 210.9 330.1 156.3 316.4ZM125 500C125 500 125 500 125 500 125 500 125 500 125 500 89.8 500 62.5 472.7 62.5 437.5 62.5 402.3 89.8 375 125 375 125 375 125 375 125 375 125 375 125 375 125 375 160.2 375 187.5 402.3 187.5 437.5 187.5 472.7 160.2 500 125 500ZM531.3 503.9L531.3-31.3C531.3-48.8 517.6-62.5 500-62.5 482.4-62.5 468.8-48.8 468.8-31.3L468.8 503.9C414.1 517.6 375 566.4 375 625 375 683.6 414.1 732.4 468.8 746.1L468.8 906.3C468.8 923.8 482.4 937.5 500 937.5 517.6 937.5 531.3 923.8 531.3 906.3L531.3 746.1C585.9 732.4 625 683.6 625 625 625 566.4 585.9 517.6 531.3 503.9ZM500 687.5C500 687.5 500 687.5 500 687.5 500 687.5 500 687.5 500 687.5 464.8 687.5 437.5 660.2 437.5 625 437.5 589.8 464.8 562.5 500 562.5 500 562.5 500 562.5 500 562.5 500 562.5 500 562.5 500 562.5 535.2 562.5 562.5 589.8 562.5 625 562.5 660.2 535.2 687.5 500 687.5ZM906.3 128.9L906.3-31.3C906.3-48.8 892.6-62.5 875-62.5 857.4-62.5 843.8-48.8 843.8-31.3L843.8 128.9C789.1 142.6 750 191.4 750 250 750 308.6 789.1 357.4 843.8 371.1L843.8 906.3C843.8 923.8 857.4 937.5 875 937.5 892.6 937.5 906.3 923.8 906.3 906.3L906.3 371.1C960.9 357.4 1000 308.6 1000 250 1000 191.4 960.9 142.6 906.3 128.9ZM875 312.5C875 312.5 875 312.5 875 312.5 875 312.5 875 312.5 875 312.5 839.8 312.5 812.5 285.2 812.5 250 812.5 214.8 839.8 187.5 875 187.5 875 187.5 875 187.5 875 187.5 875 187.5 875 187.5 875 187.5 910.2 187.5 937.5 214.8 937.5 250 937.5 285.2 910.2 312.5 875 312.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:15:\"params settings\";}}i:108;a:7:{s:3:\"uid\";s:32:\"1c3daa46be04399a0abb9b2f089c4cf3\";s:3:\"css\";s:13:\"thumbs-down-3\";s:4:\"code\";i:59500;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1397:\"M406.3-62.5C689.5-62.5 691.4-50.8 726.6-23.4 746.1-9.8 781.3 0 910.2 7.8 918 7.8 927.7 11.7 933.6 19.5 935.5 23.4 1000 117.2 1000 267.6 1000 414.1 955.1 482.4 953.1 484.4 947.3 494.1 937.5 500 925.8 500 820.3 500 673.8 634.8 576.2 869.1 558.6 910.2 554.7 937.5 492.2 937.5 457 937.5 418 912.1 398.4 878.9 357.4 812.5 377 669.9 396.5 591.8 332 593.8 214.8 593.8 160.2 593.8 84 593.8 31.3 548.8 31.3 480.5 29.3 459 33.2 429.7 39.1 416 21.5 398.4 0 373 0 339.8-2 296.9 25.4 265.6 43 246.1 39.1 234.4 31.3 216.8 33.2 197.3 35.2 150.4 72.3 119.1 93.8 103.5 91.8 89.8 91.8 64.5 95.7 44.9 111.3-31.3 224.6-62.5 406.3-62.5ZM892.6 72.3C781.3 62.5 720.7 48.8 689.5 25.4 666 7.8 668 0 406.3 0 326.2 0 168 3.9 156.3 58.6 152.3 80.1 175.8 101.6 175.8 101.6 181.6 119.1 173.8 136.7 158.2 142.6 158.2 142.6 95.7 166 95.7 201.2 93.8 222.7 109.4 236.3 109.4 236.3 119.1 252 115.2 269.5 101.6 279.3 101.6 279.3 60.5 304.7 62.5 337.9 62.5 365.2 97.7 382.8 97.7 384.8 105.5 388.7 111.3 396.5 113.3 404.3 115.2 414.1 113.3 423.8 107.4 429.7 107.4 429.7 91.8 455.1 93.8 478.5 93.8 529.3 148.4 531.3 160.2 531.3 238.3 531.3 441.4 531.3 441.4 531.3 453.1 531.3 462.9 535.2 468.8 544.9 474.6 552.7 474.6 564.5 470.7 574.2 439.5 662.1 423.8 800.8 451.2 847.7 459 861.3 460.9 875 492.2 875 498 875 507.8 871.1 517.6 845.7 623 595.7 779.3 451.2 906.3 437.5 918 414.1 937.5 361.3 937.5 267.6 937.5 169.9 908.2 95.7 892.6 72.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:26:\"thumbs down unlike dislike\";}}i:109;a:7:{s:3:\"uid\";s:32:\"d3afe478a49c013f334e0b454807d577\";s:3:\"css\";s:11:\"direction-3\";s:4:\"code\";i:59501;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:281:\"M900.4 39.1L570.3 806.6 455.1 468.8 119.1 367.2 900.4 39.1M980.5-62.5C974.6-62.5 966.8-60.5 959-56.6L27.3 339.8C-5.9 353.5-7.8 380.9 21.5 400.4L408.2 521.5 535.2 914.1C543 929.7 554.7 937.5 564.5 937.5 576.2 937.5 587.9 927.7 595.7 910.2L994.1-21.5C1005.9-46.9 998-62.5 980.5-62.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:18:\"direction location\";}}i:110;a:7:{s:3:\"uid\";s:32:\"2116e026020768a7637db5598f6ac0f5\";s:3:\"css\";s:10:\"to-start-2\";s:4:\"code\";i:59502;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:496:\"M951.2 2C951.2-21.5 939.5-43 919.9-52.7 910.2-58.6 900.4-60.5 888.7-60.5 878.9-60.5 867.2-58.6 857.4-50.8L138.7 384.8C123 394.5 111.3 410.2 109.4 427.7L109.4-31.3C109.4-48.8 95.7-62.5 78.1-62.5 60.5-62.5 46.9-48.8 46.9-31.3L46.9 906.3C46.9 923.8 60.5 937.5 78.1 937.5 95.7 937.5 109.4 923.8 109.4 906.3L109.4 447.3C111.3 464.8 123 480.5 138.7 490.2L857.4 925.8C867.2 933.6 878.9 935.5 890.6 935.5 900.4 935.5 912.1 933.6 921.9 927.7 941.4 918 953.1 896.5 953.1 873ZM171.9 437.5L888.7 2 890.6 873Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"start player\";}}i:111;a:7:{s:3:\"uid\";s:32:\"a52aa6b35d8e55e5f926eb0d2bdff7a2\";s:3:\"css\";s:15:\"fast-backward-3\";s:4:\"code\";i:59503;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:635:\"M560.5 130.9L66.4 437.5 560.5 744.1 560.5 503.9 935.5 744.1 935.5 130.9 560.5 371.1 560.5 123M558.6 68.4C568.4 68.4 580.1 70.3 589.8 76.2 609.4 87.9 623 107.4 623 130.9L623 259.8 914.1 78.1C923.8 72.3 935.5 68.4 947.3 68.4 957 68.4 960.9 70.3 970.7 76.2 992.2 87.9 998 107.4 998 130.9L998 744.1C998 767.6 990.2 787.1 970.7 798.8 960.9 804.7 953.1 806.6 943.4 806.6 931.6 806.6 923.8 802.7 912.1 796.9L623 615.2 623 744.1C623 767.6 609.4 787.1 589.8 798.8 580.1 804.7 568.4 806.6 558.6 806.6 546.9 806.6 535.2 802.7 525.4 796.9L31.3 490.2C13.7 478.5 2 459 2 437.5 2 416 13.7 396.5 31.3 384.8L525.4 78.1C535.2 72.3 546.9 68.4 558.6 68.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:15:\"backward player\";}}i:112;a:7:{s:3:\"uid\";s:32:\"d9e0321dbbbb015ea7b9bf4c4ad015dc\";s:3:\"css\";s:6:\"play-3\";s:4:\"code\";i:59504;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:345:\"M140.6 2L859.4 437.5 140.6 873 140.6 2M140.6-60.5C130.9-60.5 121.1-58.6 111.3-52.7 91.8-43 78.1-21.5 78.1 2L78.1 873C78.1 896.5 89.8 918 109.4 927.7 119.1 933.6 128.9 935.5 140.6 935.5 152.3 935.5 164.1 933.6 173.8 925.8L892.6 490.2C910.2 478.5 921.9 459 921.9 437.5 921.9 416 910.2 396.5 892.6 384.8L173.8-50.8C164.1-58.6 152.3-60.5 140.6-60.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"play player\";}}i:113;a:7:{s:3:\"uid\";s:32:\"45ee20217f5ca231c45ea19d734fe827\";s:3:\"css\";s:7:\"pause-3\";s:4:\"code\";i:59505;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:458:\"M406.3-62.5L187.5-62.5C169.9-62.5 156.3-48.8 156.3-31.3L156.3 906.3C156.3 923.8 169.9 937.5 187.5 937.5L406.3 937.5C423.8 937.5 437.5 923.8 437.5 906.3L437.5-31.3C437.5-48.8 423.8-62.5 406.3-62.5ZM375 875L218.8 875 218.8 0 375 0ZM812.5-62.5L593.8-62.5C578.1-62.5 562.5-48.8 562.5-31.3L562.5 906.3C562.5 923.8 578.1 937.5 593.8 937.5L812.5 937.5C830.1 937.5 843.8 923.8 843.8 906.3L843.8-31.3C843.8-48.8 830.1-62.5 812.5-62.5ZM781.3 875L625 875 625 0 781.3 0Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"pause player\";}}i:114;a:7:{s:3:\"uid\";s:32:\"e86c4200a183571bb625408230f4964d\";s:3:\"css\";s:14:\"fast-forward-3\";s:4:\"code\";i:59506;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:618:\"M439.5 130.9L933.6 437.5 439.5 744.1 439.5 503.9 64.5 744.1 64.5 130.9 439.5 371.1 439.5 123M441.4 68.4C431.6 68.4 419.9 70.3 410.2 76.2 390.6 87.9 377 107.4 377 130.9L377 259.8 85.9 78.1C76.2 72.3 64.5 68.4 52.7 68.4 43 68.4 39.1 70.3 29.3 76.2 9.8 87.9 2 107.4 2 130.9L2 744.1C2 767.6 9.8 787.1 29.3 798.8 39.1 804.7 46.9 806.6 56.6 806.6 68.4 806.6 76.2 802.7 87.9 796.9L377 615.2 377 744.1C377 767.6 390.6 787.1 410.2 798.8 419.9 804.7 431.6 806.6 441.4 806.6 453.1 806.6 464.8 802.7 474.6 796.9L968.8 490.2C986.3 478.5 998 459 998 437.5 998 416 986.3 396.5 968.8 384.8L474.6 78.1C464.8 72.3 453.1 68.4 441.4 68.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:14:\"forward player\";}}i:115;a:7:{s:3:\"uid\";s:32:\"53aa179fcb564d27ee147212acc6c3e0\";s:3:\"css\";s:8:\"to-end-2\";s:4:\"code\";i:59507;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:505:\"M921.9-62.5C904.3-62.5 890.6-48.8 890.6-31.3L890.6 427.7C888.7 410.2 877 394.5 861.3 384.8L142.6-50.8C132.8-58.6 121.1-60.5 111.3-60.5 99.6-60.5 89.8-58.6 80.1-52.7 60.5-43 48.8-21.5 48.8 2L46.9 873C46.9 896.5 58.6 918 78.1 927.7 87.9 933.6 99.6 935.5 109.4 935.5 121.1 935.5 132.8 933.6 142.6 925.8L861.3 490.2C877 480.5 888.7 464.8 890.6 447.3L890.6 906.3C890.6 923.8 904.3 937.5 921.9 937.5 939.5 937.5 953.1 923.8 953.1 906.3L953.1-31.3C953.1-48.8 939.5-62.5 921.9-62.5ZM109.4 873L111.3 2 828.1 437.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"end player\";}}i:116;a:7:{s:3:\"uid\";s:32:\"24c4ae29fee3b0f6744634bc840299b4\";s:3:\"css\";s:10:\"calendar-3\";s:4:\"code\";i:59508;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1817:\"M937.5 31.3L687.5 31.3 687.5-31.3C687.5-48.8 673.8-62.5 656.3-62.5 638.7-62.5 625-48.8 625-31.3L625 31.3 375 31.3 375-31.3C375-48.8 361.3-62.5 343.8-62.5 326.2-62.5 312.5-48.8 312.5-31.3L312.5 31.3 62.5 31.3C27.3 31.3 0 58.6 0 93.8L0 875C0 910.2 27.3 937.5 62.5 937.5L937.5 937.5C972.7 937.5 1000 910.2 1000 875L1000 93.8C1000 58.6 972.7 31.3 937.5 31.3ZM937.5 875L62.5 875 62.5 93.8 312.5 93.8 312.5 125C312.5 142.6 326.2 156.3 343.8 156.3 361.3 156.3 375 142.6 375 125L375 93.8 625 93.8 625 125C625 142.6 638.7 156.3 656.3 156.3 673.8 156.3 687.5 142.6 687.5 125L687.5 93.8 937.5 93.8ZM718.8 437.5L781.3 437.5C798.8 437.5 812.5 423.8 812.5 406.3L812.5 343.8C812.5 326.2 798.8 312.5 781.3 312.5L718.8 312.5C701.2 312.5 687.5 326.2 687.5 343.8L687.5 406.3C687.5 423.8 701.2 437.5 718.8 437.5ZM718.8 687.5L781.3 687.5C798.8 687.5 812.5 673.8 812.5 656.3L812.5 593.8C812.5 576.2 798.8 562.5 781.3 562.5L718.8 562.5C701.2 562.5 687.5 576.2 687.5 593.8L687.5 656.3C687.5 673.8 701.2 687.5 718.8 687.5ZM531.3 562.5L468.8 562.5C451.2 562.5 437.5 576.2 437.5 593.8L437.5 656.3C437.5 673.8 451.2 687.5 468.8 687.5L531.3 687.5C548.8 687.5 562.5 673.8 562.5 656.3L562.5 593.8C562.5 576.2 548.8 562.5 531.3 562.5ZM531.3 312.5L468.8 312.5C451.2 312.5 437.5 326.2 437.5 343.8L437.5 406.3C437.5 423.8 451.2 437.5 468.8 437.5L531.3 437.5C548.8 437.5 562.5 423.8 562.5 406.3L562.5 343.8C562.5 326.2 548.8 312.5 531.3 312.5ZM281.3 312.5L218.8 312.5C201.2 312.5 187.5 326.2 187.5 343.8L187.5 406.3C187.5 423.8 201.2 437.5 218.8 437.5L281.3 437.5C298.8 437.5 312.5 423.8 312.5 406.3L312.5 343.8C312.5 326.2 298.8 312.5 281.3 312.5ZM281.3 562.5L218.8 562.5C201.2 562.5 187.5 576.2 187.5 593.8L187.5 656.3C187.5 673.8 201.2 687.5 218.8 687.5L281.3 687.5C298.8 687.5 312.5 673.8 312.5 656.3L312.5 593.8C312.5 576.2 298.8 562.5 281.3 562.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"calendar\";}}i:117;a:7:{s:3:\"uid\";s:32:\"4abe3137e7b7e88c47796267975fce96\";s:3:\"css\";s:11:\"lightbulb-4\";s:4:\"code\";i:59509;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:891:\"M500-62.5C306.6-62.5 154.3 95.7 154.3 289.1 154.3 433.6 226.6 503.9 283.2 554.7 320.3 585.9 343.8 605.5 343.8 630.9L343.8 683.6C343.8 685.5 343.8 685.5 343.8 687.5L343.8 687.5 343.8 777.3C343.8 873 406.3 937.5 502 937.5 593.8 937.5 656.3 873 656.3 777.3L656.3 687.5 656.3 687.5C656.3 685.5 656.3 685.5 656.3 683.6L656.3 630.9C656.3 593.8 683.6 572.3 724.6 535.2 781.3 486.3 845.7 425.8 845.7 289.1 845.7 95.7 693.4-62.5 500-62.5ZM498 875C439.5 875 406.3 837.9 406.3 777.3L406.3 736.3C427.7 744.1 459 750 500 750 541 750 570.3 744.1 593.8 736.3L593.8 777.3C593.8 839.8 558.6 875 498 875ZM683.6 488.3C640.6 525.4 593.8 562.5 593.8 630.9L593.8 669.9C578.1 677.7 550.8 687.5 500 687.5 445.3 687.5 419.9 677.7 406.3 671.9L406.3 630.9C406.3 576.2 365.2 543 324.2 507.8 271.5 459 216.8 406.3 216.8 289.1 216.8 128.9 341.8 0 500 0 658.2 0 783.2 128.9 783.2 289.1 783.2 396.5 734.4 443.4 683.6 488.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"light\";}}i:118;a:7:{s:3:\"uid\";s:32:\"d2bcc7ec20b90e03fc4cf4b171047359\";s:3:\"css\";s:7:\"diagram\";s:4:\"code\";i:59510;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:701:\"M265.6 250L46.9 250C29.3 250 15.6 263.7 15.6 281.3L15.6 906.3C15.6 923.8 29.3 937.5 46.9 937.5L265.6 937.5C283.2 937.5 296.9 923.8 296.9 906.3L296.9 281.3C296.9 263.7 283.2 250 265.6 250ZM234.4 875L78.1 875 78.1 312.5 234.4 312.5ZM609.4 435.5L390.6 435.5C373 435.5 359.4 449.2 359.4 466.8L359.4 906.3C359.4 923.8 373 937.5 390.6 937.5L609.4 937.5C627 937.5 640.6 923.8 640.6 906.3L640.6 466.8C640.6 449.2 627 435.5 609.4 435.5ZM578.1 875L421.9 875 421.9 498 578.1 498ZM953.1-62.5L734.4-62.5C716.8-62.5 703.1-48.8 703.1-31.3L703.1 906.3C703.1 923.8 716.8 937.5 734.4 937.5L953.1 937.5C970.7 937.5 984.4 923.8 984.4 906.3L984.4-31.3C984.4-48.8 970.7-62.5 953.1-62.5ZM921.9 875L765.6 875 765.6 0 921.9 0Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"diagram\";}}i:119;a:7:{s:3:\"uid\";s:32:\"b75ef25c56bc44d5be09cf98920d509b\";s:3:\"css\";s:8:\"arrow-up\";s:4:\"code\";i:59511;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:586:\"M1000 437.5C1000 162.1 775.4-62.5 500-62.5 224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5ZM62.5 437.5C62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 875 500 875 257.8 875 62.5 679.7 62.5 437.5ZM531.3 656.3L531.3 304.7 644.5 418C656.3 429.7 675.8 429.7 689.5 418 701.2 406.3 701.2 384.8 689.5 373L500 189.5 310.5 373C304.7 378.9 300.8 386.7 300.8 394.5 300.8 404.3 304.7 412.1 310.5 418 322.3 429.7 341.8 429.7 353.5 418L468.8 302.7 468.8 656.3C468.8 673.8 482.4 687.5 500 687.5 517.6 687.5 531.3 673.8 531.3 656.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"arrow up\";}}i:120;a:7:{s:3:\"uid\";s:32:\"f3ccf4b4abf526485d3b2c12aa15ab42\";s:3:\"css\";s:11:\"arrow-right\";s:4:\"code\";i:59512;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:573:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877ZM519.5 248C507.8 261.7 507.8 281.3 519.5 293L632.8 406.3 281.3 406.3C263.7 406.3 250 419.9 250 437.5 250 455.1 263.7 468.8 281.3 468.8L634.8 468.8 519.5 584C507.8 595.7 507.8 615.2 519.5 627 525.4 632.8 533.2 636.7 543 636.7 550.8 636.7 558.6 632.8 564.5 627L748 437.5 564.5 248C552.7 236.3 531.3 236.3 519.5 248Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"arrow right\";}}i:121;a:7:{s:3:\"uid\";s:32:\"03973983641c53e3552c94ef008555b1\";s:3:\"css\";s:10:\"arrow-left\";s:4:\"code\";i:59513;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:575:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877ZM718.8 406.3L367.2 406.3 480.5 293C492.2 281.3 492.2 261.7 480.5 248 468.8 236.3 447.3 236.3 435.5 248L252 437.5 435.5 627C441.4 632.8 449.2 636.7 457 636.7 466.8 636.7 474.6 632.8 480.5 627 492.2 615.2 492.2 595.7 480.5 584L365.2 468.8 718.8 468.8C736.3 468.8 750 455.1 750 437.5 750 419.9 736.3 406.3 718.8 406.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"arrow left\";}}i:122;a:7:{s:3:\"uid\";s:32:\"970c706c41b5599e0ffa6b95da8b8d0c\";s:3:\"css\";s:10:\"arrow-down\";s:4:\"code\";i:59514;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:584:\"M0 437.5C0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5 224.6-62.5 0 162.1 0 437.5ZM939.5 437.5C939.5 679.7 742.2 875 500 875 257.8 875 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 939.5 195.3 939.5 437.5ZM468.8 218.8L468.8 570.3 355.5 457C343.8 445.3 324.2 445.3 310.5 457 298.8 468.8 298.8 490.2 310.5 502L500 685.5 689.5 502C695.3 496.1 699.2 488.3 699.2 478.5 699.2 470.7 695.3 462.9 689.5 457 677.7 445.3 658.2 445.3 646.5 457L531.3 572.3 531.3 218.8C531.3 201.2 517.6 187.5 500 187.5 482.4 187.5 468.8 201.2 468.8 218.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"arrow down\";}}i:123;a:7:{s:3:\"uid\";s:32:\"8ffa6753bf49e1ebbd171c464fc01244\";s:3:\"css\";s:7:\"block-3\";s:4:\"code\";i:59515;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:363:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM62.5 437.5C62.5 328.1 103.5 228.5 169.9 150.4L787.1 767.6C710.9 835.9 609.4 877 500 877 257.8 877 62.5 679.7 62.5 437.5ZM832 722.7L214.8 107.4C291 41 390.6 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 546.9 896.5 646.5 832 722.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"block\";}}i:124;a:7:{s:3:\"uid\";s:32:\"bd1b1cd2404da5fa658150366f5c3280\";s:3:\"css\";s:9:\"comment-3\";s:4:\"code\";i:59516;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:720:\"M500 62.5C742.2 62.5 937.5 203.1 937.5 375 937.5 546.9 742.2 687.5 500 687.5L484.4 687.5 474.6 687.5C457 687.5 445.3 687.5 427.7 683.6L392.6 679.7 371.1 707C359.4 718.8 308.6 761.7 250 791 261.7 759.8 269.5 724.6 271.5 691.4L271.5 689.5 271.5 646.5 236.3 628.9C127 572.3 62.5 478.5 62.5 375 62.5 203.1 257.8 62.5 500 62.5M500 0C224.6 0 0 168 0 375 0 503.9 76.2 617.2 209 683.6 209 685.5 209 685.5 209 685.5 209 742.2 177.7 804.7 158.2 835.9L158.2 835.9C156.3 839.8 156.3 841.8 156.3 847.7 156.3 863.3 168 875 185.5 875 187.5 875 191.4 875 191.4 875 193.4 875 193.4 875 193.4 875 291 859.4 398.4 771.5 418 746.1 441.4 750 455.1 750 474.6 750 482.4 750 490.2 750 500 750 775.4 750 1000 582 1000 375 1000 168 775.4 0 500 0Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"comment\";}}i:125;a:7:{s:3:\"uid\";s:32:\"ecd80d34f0a716374c0e2fa3661c6529\";s:3:\"css\";s:8:\"camera-3\";s:4:\"code\";i:59517;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:829:\"M623 156.3C625 156.3 625 156.3 625 158.2L625 283.2C625 306.6 638.7 326.2 658.2 337.9 668 343.8 677.7 345.7 687.5 345.7 701.2 345.7 714.8 341.8 724.6 334L937.5 214.8 937.5 660.2 724.6 543C712.9 535.2 701.2 531.3 687.5 531.3 677.7 531.3 668 535.2 658.2 539.1 638.7 548.8 625 570.3 625 593.8L625 716.8C625 718.8 625 718.8 623 718.8L64.5 718.8C64.5 718.8 62.5 718.8 62.5 716.8L62.5 158.2C62.5 156.3 64.5 156.3 64.5 156.3L623 156.3M966.8 125C960.9 125 947.3 127 939.5 134.8L687.5 283.2 687.5 158.2C687.5 123 658.2 93.8 623 93.8L64.5 93.8C29.3 93.8 0 123 0 158.2L0 716.8C0 752 29.3 781.3 64.5 781.3L623 781.3C658.2 781.3 687.5 752 687.5 716.8L687.5 593.8 945.3 744.1C953.1 752 960.9 750 966.8 750 974.6 750 978.5 748 980.5 748 992.2 744.1 1000 732.4 1000 718.8L1000 156.3C1000 144.5 992.2 130.9 980.5 127 978.5 127 974.6 125 966.8 125Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"camera\";}}i:126;a:7:{s:3:\"uid\";s:32:\"5d01c1a42cd14d43340eea7ea502e611\";s:3:\"css\";s:12:\"camera-alt-1\";s:4:\"code\";i:59518;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:746:\"M906.3 156.3L761.7 156.3 687.5 31.3 312.5 31.3 238.3 156.3 93.8 156.3C62.5 156.3 0 187.5 0 250L0 750C0 802.7 46.9 843.8 87.9 843.8L908.2 843.8C949.2 843.8 1000 800.8 1000 752L1000 250C1000 218.8 968.8 156.3 906.3 156.3ZM937.5 752C937.5 763.7 918 781.3 908.2 781.3L87.9 781.3C80.1 781.3 62.5 765.6 62.5 750L62.5 250C62.5 228.5 89.8 218.8 93.8 218.8L273.4 218.8 291 187.5 347.7 93.8 654.3 93.8 710.9 187.5 726.6 218.8 906.3 218.8C927.7 218.8 937.5 248 937.5 250ZM500 250C378.9 250 281.3 347.7 281.3 468.8 281.3 589.8 378.9 687.5 500 687.5 621.1 687.5 718.8 589.8 718.8 468.8 718.8 347.7 621.1 250 500 250ZM500 625C414.1 625 343.8 554.7 343.8 468.8 343.8 382.8 414.1 312.5 500 312.5 585.9 312.5 656.3 382.8 656.3 468.8 656.3 554.7 585.9 625 500 625Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"camera\";}}i:127;a:7:{s:3:\"uid\";s:32:\"edb0dc3d04f3b2f7a6d253152dc79e98\";s:3:\"css\";s:4:\"ok-1\";s:4:\"code\";i:59519;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:531:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877ZM699.2 253.9L406.3 548.8 273.4 418C261.7 406.3 242.2 406.3 230.5 418 216.8 429.7 216.8 449.2 230.5 460.9L384.8 617.2C396.5 628.9 416 628.9 429.7 617.2 429.7 615.2 431.6 613.3 431.6 611.3L744.1 298.8C755.9 287.1 755.9 267.6 744.1 253.9 732.4 242.2 710.9 242.2 699.2 253.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"ok check\";}}i:128;a:7:{s:3:\"uid\";s:32:\"d7d8409cad1aaa4348b340d7b28cf2da\";s:3:\"css\";s:4:\"time\";s:4:\"code\";i:59520;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:512:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877ZM531.3 425.8L531.3 125C531.3 107.4 517.6 93.8 500 93.8 482.4 93.8 468.8 107.4 468.8 125L468.8 437.5C468.8 447.3 472.7 455.1 478.5 460.9 478.5 460.9 478.5 460.9 480.5 460.9L634.8 617.2C646.5 628.9 666 628.9 679.7 617.2 691.4 603.5 691.4 584 679.7 572.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"time\";}}i:129;a:7:{s:3:\"uid\";s:32:\"fce269eb25ae8dd119082d316a54c602\";s:3:\"css\";s:8:\"cancel-1\";s:4:\"code\";i:59521;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:629:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877ZM677.7 259.8C664.1 248 644.5 248 632.8 259.8L500 392.6 367.2 259.8C355.5 248 335.9 248 322.3 259.8 310.5 273.4 310.5 293 322.3 304.7L455.1 437.5 322.3 570.3C310.5 582 310.5 601.6 322.3 615.2 335.9 627 355.5 627 367.2 615.2L500 482.4 632.8 615.2C644.5 627 664.1 627 677.7 615.2 689.5 601.6 689.5 582 677.7 570.3L544.9 437.5 677.7 304.7C689.5 293 689.5 273.4 677.7 259.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"cancel\";}}i:130;a:7:{s:3:\"uid\";s:32:\"77b2c668c55a63e8c249fa3044d9e226\";s:3:\"css\";s:10:\"download-3\";s:4:\"code\";i:59522;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1112:\"M746.1 191.4C701.2 76.2 607.4 2 466.8 2 287.1 2 160.2 136.7 150.4 310.5 62.5 337.9 0 427.7 0 527.3 0 650.4 95.7 753.9 210.9 753.9L238.3 753.9C255.9 753.9 269.5 740.2 269.5 722.7 269.5 705.1 255.9 691.4 238.3 691.4L210.9 691.4C130.9 691.4 60.5 615.2 60.5 527.3 60.5 449.2 117.2 377 185.5 365.2L214.8 361.3 210.9 332 210.9 332C210.9 179.7 310.5 64.5 466.8 64.5 589.8 64.5 660.2 127 693.4 230.5L699.2 252 722.7 252C837.9 255.9 939.5 349.6 939.5 466.8 939.5 572.3 869.1 691.4 761.7 691.4L753.9 691.4C736.3 691.4 722.7 705.1 722.7 722.7 722.7 740.2 736.3 753.9 753.9 753.9L753.9 753.9C910.2 750 1000 599.6 1000 466.8 1000 322.3 886.7 207 746.1 191.4ZM630.9 695.3C623 685.5 607.4 685.5 599.6 695.3L531.3 771.5 531.3 455.1C531.3 439.5 517.6 423.8 500 423.8 482.4 423.8 468.8 439.5 468.8 455.1L468.8 771.5 402.3 697.3C392.6 687.5 378.9 685.5 371.1 695.3L363.3 699.2C353.5 709 353.5 722.7 363.3 732.4L474.6 857.4C474.6 857.4 474.6 857.4 474.6 857.4L484.4 865.2C488.3 871.1 494.1 873 500 873 505.9 873 511.7 871.1 515.6 865.2L523.4 857.4C523.4 857.4 523.4 857.4 523.4 857.4L638.7 730.5C648.4 720.7 648.4 710.9 638.7 701.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"download\";}}i:131;a:7:{s:3:\"uid\";s:32:\"266aadb84046e1079a9de5d22fb10e55\";s:3:\"css\";s:8:\"upload-3\";s:4:\"code\";i:59523;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1106:\"M746.1 191.4C701.2 76.2 607.4 2 466.8 2 287.1 2 160.2 136.7 150.4 310.5 62.5 337.9 0 427.7 0 527.3 0 650.4 95.7 753.9 210.9 753.9L300.8 753.9C318.4 753.9 332 740.2 332 722.7 332 705.1 318.4 691.4 300.8 691.4L210.9 691.4C130.9 691.4 60.5 615.2 60.5 527.3 60.5 449.2 117.2 377 185.5 365.2L214.8 361.3 210.9 332 210.9 332C210.9 179.7 310.5 64.5 466.8 64.5 589.8 64.5 660.2 127 693.4 230.5L699.2 252 720.7 252C837.9 255.9 939.5 349.6 939.5 466.8 939.5 572.3 869.1 691.4 761.7 691.4L691.4 691.4C673.8 691.4 660.2 705.1 660.2 722.7 660.2 740.2 673.8 753.9 691.4 753.9L761.7 753.9C918 750 1000 599.6 1000 466.8 1000 322.3 886.7 207 746.1 191.4ZM523.4 439.5C523.4 439.5 523.4 439.5 523.4 439.5L515.6 431.6C511.7 427.7 505.9 423.8 500 423.8 494.1 423.8 488.3 427.7 484.4 431.6L474.6 439.5C474.6 439.5 474.6 439.5 474.6 439.5L363.3 564.5C353.5 574.2 353.5 589.8 363.3 597.7L371.1 603.5C378.9 613.3 392.6 609.4 402.3 599.6L468.8 527.3 468.8 841.8C468.8 859.4 482.4 873 500 873 517.6 873 531.3 859.4 531.3 841.8L531.3 527.3 599.6 601.6C607.4 611.3 623 615.2 630.9 605.5L638.7 599.6C648.4 591.8 648.4 576.2 638.7 566.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"upload\";}}i:132;a:7:{s:3:\"uid\";s:32:\"303fa3f04504fb1f22dc01ca100b2165\";s:3:\"css\";s:5:\"doc-3\";s:4:\"code\";i:59524;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:263:\"M546.9-62.5L203.1-62.5C168-62.5 140.6-35.2 140.6 0L140.6 875C140.6 910.2 168 937.5 203.1 937.5L796.9 937.5C832 937.5 859.4 910.2 859.4 875L859.4 250ZM796.9 275.4L796.9 281.3 515.6 281.3 515.6 0 521.5 0ZM203.1 875L203.1 0 453.1 0 453.1 343.8 796.9 343.8 796.9 875Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"doc\";}}i:133;a:7:{s:3:\"uid\";s:32:\"3b1b1795fa8b21e4370bcc02ca7d3bde\";s:3:\"css\";s:6:\"mail-3\";s:4:\"code\";i:59525;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:654:\"M1000 164.1C1000 158.2 1000 152.3 996.1 146.5 988.3 111.3 964.8 93.8 921.9 93.8L109.4 93.8C72.3 93.8 31.3 107.4 11.7 134.8 9.8 134.8 9.8 136.7 7.8 138.7 2 146.5 0 156.3 0 164.1 0 166 0 169.9 0 171.9L0 671.9C0 724.6 56.6 781.3 109.4 781.3L921.9 781.3C974.6 781.3 1000 724.6 1000 671.9L1000 171.9C1000 169.9 1000 166 1000 164.1ZM109.4 156.3L921.9 156.3C921.9 156.3 921.9 156.3 921.9 156.3L500 492.2 80.1 158.2C89.8 156.3 101.6 156.3 109.4 156.3ZM921.9 718.8L109.4 718.8C91.8 718.8 62.5 689.5 62.5 671.9L62.5 224.6 480.5 558.6C486.3 562.5 492.2 564.5 500 564.5 507.8 564.5 513.7 562.5 519.5 558.6L937.5 224.6 937.5 671.9C937.5 689.5 939.5 718.8 921.9 718.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"mail\";}}i:134;a:7:{s:3:\"uid\";s:32:\"abe941c0c7d8208fbfe2c043f0dd5f5a\";s:3:\"css\";s:5:\"eye-3\";s:4:\"code\";i:59526;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1001:\"M503.9 252C400.4 252 316.4 335.9 316.4 439.5 316.4 543 400.4 627 503.9 627 607.4 627 691.4 543 691.4 439.5 691.4 335.9 607.4 252 503.9 252ZM503.9 564.5C433.6 564.5 377 505.9 377 437.5 377 369.1 433.6 312.5 502 312.5 570.3 312.5 627 369.1 627 437.5 627 505.9 572.3 564.5 503.9 564.5ZM1000 429.7C1000 427.7 1000 427.7 998 425.8 998 423.8 998 423.8 998 423.8 998 423.8 998 421.9 998 421.9 906.3 212.9 710.9 93.8 502 93.8 293 93.8 93.8 212.9 2 419.9 2 421.9 2 421.9 2 423.8 2 423.8 2 423.8 0 425.8 0 425.8 0 427.7 0 429.7 0 433.6 0 435.5 0 437.5 0 441.4 0 443.4 0 447.3 0 449.2 0 449.2 0 451.2 2 453.1 2 453.1 2 453.1 2 453.1 2 455.1 2 455.1 93.8 664.1 291 781.3 500 781.3 709 781.3 906.3 664.1 998 457 998 455.1 998 455.1 998 453.1 998 453.1 998 453.1 1000 451.2 1000 451.2 1000 449.2 1000 447.3 1000 443.4 1000 441.4 1000 439.5 1000 435.5 1000 433.6 1000 429.7ZM500 718.8C322.3 718.8 148.4 627 62.5 437.5 148.4 252 324.2 156.3 502 156.3 679.7 156.3 851.6 252 937.5 439.5 851.6 625 677.7 718.8 500 718.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"eye\";}}i:135;a:7:{s:3:\"uid\";s:32:\"bfa4dacf40fe82dfdb1f128bee49eba3\";s:3:\"css\";s:6:\"flag-4\";s:4:\"code\";i:59527;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:581:\"M664.1 31.3C507.8 31.3 466.8-62.5 267.6-62.5 140.6-62.5 62.5 33.2 62.5 33.2L62.5 906.3C62.5 923.8 76.2 937.5 93.8 937.5 111.3 937.5 125 923.8 125 906.3L125 507.8C158.2 488.3 203.1 468.8 259.8 468.8 459 468.8 515.6 562.5 671.9 562.5 828.1 562.5 937.5 468.8 937.5 468.8L937.5-62.5C937.5-62.5 820.3 31.3 664.1 31.3ZM875 435.5C839.8 459 765.6 500 671.9 500 611.3 500 568.4 482.4 515.6 460.9 451.2 435.5 377 406.3 259.8 406.3 207 406.3 162.1 419.9 125 437.5L125 58.6C148.4 37.1 199.2 0 267.6 0 359.4 0 412.1 21.5 466.8 44.9 521.5 68.4 578.1 93.8 664.1 93.8 748 93.8 820.3 70.3 875 44.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"flag\";}}i:136;a:7:{s:3:\"uid\";s:32:\"ed84b8a18c830ee0042dd08877dc3495\";s:3:\"css\";s:8:\"folder-3\";s:4:\"code\";i:59528;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:279:\"M345.7 109.4L423.8 185.5 443.4 203.1 937.5 203.1 937.5 765.6 62.5 765.6 62.5 109.4 343.8 109.4M375 46.9L62.5 46.9C27.3 46.9 0 74.2 0 109.4L0 765.6C0 800.8 27.3 828.1 62.5 828.1L937.5 828.1C972.7 828.1 1000 800.8 1000 765.6L1000 203.1C1000 168 972.7 140.6 937.5 140.6L468.8 140.6Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"folder\";}}i:137;a:7:{s:3:\"uid\";s:32:\"2fa63e42250ee29569659c6e12a85fa4\";s:3:\"css\";s:7:\"heart-3\";s:4:\"code\";i:59529;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:783:\"M281.3 48.8C312.5 48.8 367.2 64.5 457 152.3L502 195.3 544.9 152.3C607.4 87.9 673.8 48.8 718.8 48.8 779.3 48.8 826.2 68.4 873 115.2 916 158.2 939.5 216.8 939.5 277.3 939.5 337.9 916 396.5 871.1 439.5 867.2 443.4 679.7 648.4 521.5 818.4 513.7 826.2 505.9 826.2 500 826.2 496.1 826.2 488.3 826.2 480.5 818.4 441.4 775.4 162.1 464.8 130.9 431.6 85.9 388.7 62.5 332 62.5 269.5 62.5 209 85.9 150.4 130.9 107.4 171.9 66.4 222.7 48.8 281.3 48.8M281.3-13.7C207-13.7 140.6 9.8 85.9 64.5-29.3 177.7-29.3 363.3 85.9 476.6 119.1 509.8 435.5 861.3 435.5 861.3 453.1 878.9 476.6 888.7 500 888.7 523.4 888.7 548.8 878.9 566.4 861.3 566.4 861.3 912.1 488.3 916 484.4 1031.3 369.1 1031.3 185.5 916 70.3 859.4 13.7 796.9-13.7 718.8-13.7 644.5-13.7 562.5 44.9 500 107.4 437.5 44.9 357.4-13.7 281.3-13.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"heart\";}}i:138;a:7:{s:3:\"uid\";s:32:\"6c5c20513c23e2d93e12edd3b8c6d1e0\";s:3:\"css\";s:6:\"info-3\";s:4:\"code\";i:59530;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:814:\"M562.5 656.3L531.3 656.3 531.3 377C531.3 377 531.3 377 531.3 375 531.3 375 531.3 375 531.3 375 531.3 357.4 517.6 343.8 500 343.8L437.5 343.8C419.9 343.8 406.3 357.4 406.3 375 406.3 392.6 419.9 406.3 437.5 406.3L468.8 406.3 468.8 656.3 437.5 656.3C419.9 656.3 406.3 669.9 406.3 687.5 406.3 705.1 419.9 718.8 437.5 718.8L562.5 718.8C580.1 718.8 593.8 705.1 593.8 687.5 593.8 669.9 580.1 656.3 562.5 656.3ZM500 281.3C535.2 281.3 562.5 253.9 562.5 218.8 562.5 183.6 535.2 156.3 500 156.3 464.8 156.3 437.5 183.6 437.5 218.8 437.5 253.9 464.8 281.3 500 281.3ZM500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"info\";}}i:139;a:7:{s:3:\"uid\";s:32:\"5189df3fd5872a07143bbce0bf5ed553\";s:3:\"css\";s:5:\"key-3\";s:4:\"code\";i:59531;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:708:\"M640.6-62.5C484.4-62.5 359.4 64.5 359.4 218.8 359.4 289.1 384.8 353.5 425.8 402.3 418 400.4 408.2 404.3 402.3 410.2L87.9 728.5C76.2 740.2 76.2 759.8 87.9 771.5 87.9 771.5 87.9 771.5 87.9 771.5 87.9 771.5 87.9 773.4 87.9 773.4L242.2 929.7C253.9 941.4 273.4 941.4 285.2 929.7 298.8 916 298.8 896.5 285.2 884.8L154.3 750 234.4 668 367.2 804.7C378.9 816.4 398.4 816.4 410.2 804.7 423.8 791 423.8 771.5 410.2 759.8L277.3 625 447.3 455.1C453.1 449.2 455.1 439.5 455.1 431.6 505.9 474.6 570.3 500 640.6 500 794.9 500 921.9 375 921.9 218.8 921.9 64.5 794.9-62.5 640.6-62.5ZM640.6 437.5C519.5 437.5 421.9 339.8 421.9 218.8 421.9 97.7 519.5 0 640.6 0 759.8 0 859.4 97.7 859.4 218.8 859.4 339.8 759.8 437.5 640.6 437.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"key\";}}i:140;a:7:{s:3:\"uid\";s:32:\"0f9e2049c0bcd63e01285441782fea62\";s:3:\"css\";s:6:\"link-3\";s:4:\"code\";i:59532;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1174:\"M289.1 652.3C294.9 658.2 302.7 662.1 310.5 662.1 318.4 662.1 326.2 658.2 332 652.3L710.9 271.5C724.6 259.8 724.6 240.2 710.9 226.6 699.2 214.8 679.7 214.8 668 226.6L289.1 609.4C277.3 621.1 277.3 640.6 289.1 652.3ZM464.8 585.9C474.6 630.9 464.8 675.8 429.7 710.9L302.7 834C275.4 861.3 240.2 875 203.1 875 166 875 130.9 861.3 103.5 834 48.8 779.3 48.8 689.5 103.5 634.8L226.6 507.8C253.9 482.4 289.1 466.8 326.2 466.8 339.8 466.8 351.6 468.8 363.3 472.7L412.1 423.8C384.8 410.2 355.5 404.3 326.2 404.3 273.4 404.3 222.7 423.8 181.6 464.8L58.6 591.8C-19.5 669.9-19.5 798.8 58.6 878.9 99.6 918 150.4 937.5 203.1 937.5 255.9 937.5 306.6 918 347.7 878.9L472.7 755.9C533.2 695.3 546.9 611.3 513.7 537.1ZM941.4-3.9C900.4-43 849.6-62.5 796.9-62.5 744.1-62.5 693.4-43 652.3-3.9L527.3 119.1C464.8 181.6 451.2 275.4 488.3 351.6L537.1 302.7C523.4 255.9 533.2 201.2 570.3 164.1L697.3 41C724.6 13.7 759.8 0 796.9 0 834 0 869.1 13.7 896.5 41 951.2 95.7 951.2 185.5 896.5 240.2L769.5 365.2C744.1 392.6 709 406.3 671.9 406.3 662.1 406.3 652.3 408.2 644.5 406.3L593.8 455.1C619.1 466.8 644.5 468.8 671.9 468.8 722.7 468.8 775.4 449.2 814.5 410.2L941.4 283.2C1019.5 205.1 1019.5 76.2 941.4-3.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"link\";}}i:141;a:7:{s:3:\"uid\";s:32:\"611371a8803ebdb3d64e4a135bfd11a8\";s:3:\"css\";s:6:\"lock-3\";s:4:\"code\";i:59533;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:791:\"M781.3 312.5L750 312.5 750 193.4C750 50.8 646.5-62.5 498-62.5 351.6-62.5 250 52.7 250 193.4L250 312.5 218.8 312.5C150.4 312.5 93.8 369.1 93.8 437.5L93.8 812.5C93.8 880.9 150.4 937.5 218.8 937.5L781.3 937.5C849.6 937.5 906.3 880.9 906.3 812.5L906.3 437.5C906.3 369.1 849.6 312.5 781.3 312.5ZM312.5 193.4C312.5 85.9 384.8 0 498 0 611.3 0 687.5 84 687.5 193.4L687.5 312.5 312.5 312.5ZM843.8 812.5C843.8 847.7 816.4 875 781.3 875L218.8 875C183.6 875 156.3 847.7 156.3 812.5L156.3 437.5C156.3 402.3 183.6 375 218.8 375L781.3 375C816.4 375 843.8 402.3 843.8 437.5ZM500 500C464.8 500 437.5 527.3 437.5 562.5 437.5 585.9 449.2 605.5 468.8 617.2L468.8 718.8C468.8 736.3 482.4 750 500 750 517.6 750 531.3 736.3 531.3 718.8L531.3 617.2C550.8 605.5 562.5 585.9 562.5 562.5 562.5 527.3 535.2 500 500 500Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"lock\";}}i:142;a:7:{s:3:\"uid\";s:32:\"f355ee1f67a45aa8cb449f5370b9c7a3\";s:3:\"css\";s:6:\"unlock\";s:4:\"code\";i:59534;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:871:\"M781.3 314.5L335.9 314.5 318.4 240.2C291 138.7 339.8 35.2 449.2 5.9 556.6-23.4 652.3 39.1 681.6 144.5L693.4 197.3C699.2 212.9 716.8 222.7 732.4 218.8 750 214.8 759.8 197.3 753.9 179.7L742.2 127C705.1-9.8 574.2-91.8 433.6-54.7 289.1-15.6 222.7 121.1 257.8 257.8L271.5 314.5 218.8 314.5C150.4 314.5 93.8 369.1 93.8 439.5L93.8 814.5C93.8 882.8 150.4 939.5 218.8 939.5L781.3 939.5C849.6 939.5 906.3 882.8 906.3 814.5L906.3 439.5C906.3 369.1 849.6 314.5 781.3 314.5ZM843.8 814.5C843.8 847.7 816.4 877 781.3 877L218.8 877C183.6 877 156.3 847.7 156.3 814.5L156.3 439.5C156.3 404.3 183.6 377 218.8 377L781.3 377C816.4 377 843.8 404.3 843.8 439.5ZM500 502C464.8 502 437.5 529.3 437.5 564.5 437.5 585.9 449.2 607.4 468.8 617.2L468.8 720.7C468.8 736.3 482.4 752 500 752 517.6 752 531.3 736.3 531.3 720.7L531.3 617.2C550.8 607.4 562.5 585.9 562.5 564.5 562.5 529.3 535.2 502 500 502Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"unlock\";}}i:143;a:7:{s:3:\"uid\";s:32:\"a34c17e6261e3b8168321e40f2f66975\";s:3:\"css\";s:8:\"search-3\";s:4:\"code\";i:59535;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:416:\"M990.2 884.8L687.5 578.1C744.1 509.8 777.3 423.8 777.3 328.1 777.3 113.3 603.5-62.5 386.7-62.5 171.9-62.5-3.9 113.3-3.9 328.1-3.9 543 171.9 718.8 386.7 718.8 484.4 718.8 574.2 681.6 642.6 623L947.3 927.7C959 939.5 978.5 939.5 990.2 927.7 1003.9 916 1003.9 896.5 990.2 884.8ZM386.7 656.3C205.1 656.3 58.6 509.8 58.6 328.1 58.6 146.5 205.1 0 386.7 0 568.4 0 716.8 146.5 716.8 328.1 716.8 509.8 568.4 656.3 386.7 656.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"search\";}}i:144;a:7:{s:3:\"uid\";s:32:\"9a2c9249e0d620e8ff96e1ddaed89315\";s:3:\"css\";s:9:\"zoom-in-2\";s:4:\"code\";i:59536;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:795:\"M990.2 884.8L714.8 605.5C773.4 535.2 808.6 443.4 808.6 343.8 808.6 119.1 628.9-62.5 404.3-62.5 179.7-62.5-3.9 119.1-3.9 343.8-3.9 568.4 179.7 752 404.3 752 505.9 752 599.6 712.9 669.9 650.4L947.3 927.7C959 939.5 978.5 939.5 990.2 927.7 1003.9 916 1003.9 896.5 990.2 884.8ZM402.3 687.5C214.8 687.5 58.6 533.2 58.6 343.8 58.6 154.3 214.8 0 402.3 0 591.8 0 746.1 154.3 746.1 343.8 746.1 533.2 591.8 687.5 402.3 687.5ZM558.6 312.5L433.6 312.5 433.6 187.5C433.6 169.9 419.9 156.3 402.3 156.3 384.8 156.3 371.1 169.9 371.1 187.5L371.1 312.5 246.1 312.5C228.5 312.5 214.8 326.2 214.8 343.8 214.8 361.3 228.5 375 246.1 375L371.1 375 371.1 500C371.1 517.6 384.8 531.3 402.3 531.3 419.9 531.3 433.6 517.6 433.6 500L433.6 375 558.6 375C576.2 375 589.8 361.3 589.8 343.8 589.8 326.2 576.2 312.5 558.6 312.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"zoom scale\";}}i:145;a:7:{s:3:\"uid\";s:32:\"09857c67a8109dadec2e0e1d3a1b848c\";s:3:\"css\";s:10:\"zoom-out-2\";s:4:\"code\";i:59537;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:587:\"M990.2 884.8L714.8 605.5C773.4 535.2 808.6 443.4 808.6 343.8 808.6 119.1 628.9-62.5 404.3-62.5 179.7-62.5-3.9 119.1-3.9 343.8-3.9 568.4 179.7 752 404.3 752 505.9 752 599.6 712.9 669.9 650.4L947.3 927.7C959 939.5 978.5 939.5 990.2 927.7 1003.9 916 1003.9 896.5 990.2 884.8ZM402.3 687.5C214.8 687.5 58.6 533.2 58.6 343.8 58.6 154.3 214.8 0 402.3 0 591.8 0 746.1 154.3 746.1 343.8 746.1 533.2 591.8 687.5 402.3 687.5ZM558.6 312.5L246.1 312.5C228.5 312.5 214.8 326.2 214.8 343.8 214.8 361.3 228.5 375 246.1 375L558.6 375C576.2 375 589.8 361.3 589.8 343.8 589.8 326.2 576.2 312.5 558.6 312.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"zoom scale\";}}i:146;a:7:{s:3:\"uid\";s:32:\"10616b8fb049459d70e79282ab324feb\";s:3:\"css\";s:8:\"attach-7\";s:4:\"code\";i:59538;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:896:\"M168 921.9C127 921.9 85.9 904.3 52.7 871.1-19.5 798.8-19.5 681.6 52.7 609.4L613.3 13.7C701.2-74.2 835.9-64.5 933.6 33.2 976.6 76.2 1002 140.6 1000 207 1000 271.5 974.6 335.9 929.7 378.9L505.9 830.1C494.1 843.8 474.6 843.8 462.9 832 449.2 820.3 449.2 800.8 460.9 787.1L884.8 335.9C918 302.7 937.5 255.9 937.5 205.1 939.5 156.3 921.9 109.4 888.7 76.2 828.1 17.6 730.5-15.6 658.2 58.6L97.7 654.3C48.8 701.2 48.8 779.3 97.7 828.1 119.1 849.6 146.5 861.3 173.8 859.4 203.1 857.4 230.5 841.8 255.9 818.4L701.2 343.8C716.8 328.1 750 287.1 716.8 253.9 697.3 236.3 685.5 236.3 681.6 236.3 668 238.3 654.3 246.1 638.7 261.7L302.7 619.1C291 630.9 271.5 632.8 259.8 621.1 246.1 609.4 246.1 587.9 257.8 576.2L593.8 218.8C621.1 191.4 648.4 177.7 675.8 173.8 697.3 173.8 728.5 177.7 761.7 210.9 808.6 257.8 802.7 330.1 746.1 386.7L300.8 861.3C263.7 898.4 220.7 918 177.7 921.9 175.8 921.9 171.9 921.9 168 921.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"attach\";}}i:147;a:7:{s:3:\"uid\";s:32:\"b37b2f9f00173ec7550cdadbf02dc414\";s:3:\"css\";s:13:\"paper-plane-4\";s:4:\"code\";i:59539;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:400:\"M980.5-62.5C974.6-62.5 966.8-60.5 959-56.6L27.3 337.9C-7.8 353.5-9.8 380.9 21.5 398.4L285.2 562.5C316.4 582 357.4 625 377 654.3L535.2 914.1C543 927.7 554.7 935.5 564.5 935.5 576.2 935.5 587.9 927.7 595.7 910.2L994.1-21.5C1003.9-46.9 998-62.5 980.5-62.5ZM318.4 507.8L103.5 375 820.3 70.3 359.4 539.1C345.7 527.3 332 515.6 318.4 507.8ZM558.6 832L431.6 623C423.8 611.3 414.1 597.7 404.3 584L867.2 113.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"paper plane\";}}i:148;a:7:{s:3:\"uid\";s:32:\"ca582a763204a4b2c677e01537c3bedb\";s:3:\"css\";s:3:\"add\";s:4:\"code\";i:59540;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:641:\"M500-62.5C224.6-62.5 0 162.1 0 437.5 0 712.9 224.6 937.5 500 937.5 775.4 937.5 1000 712.9 1000 437.5 1000 162.1 775.4-62.5 500-62.5ZM500 877C257.8 877 62.5 679.7 62.5 437.5 62.5 195.3 257.8 0 500 0 742.2 0 937.5 195.3 937.5 437.5 937.5 679.7 742.2 877 500 877ZM718.8 406.3L531.3 406.3 531.3 218.8C531.3 201.2 517.6 187.5 500 187.5 482.4 187.5 468.8 201.2 468.8 218.8L468.8 406.3 281.3 406.3C263.7 406.3 250 419.9 250 437.5 250 455.1 263.7 468.8 281.3 468.8L468.8 468.8 468.8 656.3C468.8 673.8 482.4 687.5 500 687.5 517.6 687.5 531.3 673.8 531.3 656.3L531.3 468.8 718.8 468.8C736.3 468.8 750 455.1 750 437.5 750 419.9 736.3 406.3 718.8 406.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"add\";}}i:149;a:7:{s:3:\"uid\";s:32:\"795d39c0d63d2ba0bdd9fe69f6713c15\";s:3:\"css\";s:10:\"location-3\";s:4:\"code\";i:59541;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:712:\"M503.9-62.5C298.8-62.5 125 111.3 125 318.4 125 535.2 326.2 755.9 460.9 912.1 462.9 912.1 484.4 937.5 511.7 937.5L513.7 937.5C541 937.5 562.5 912.1 562.5 912.1 689.5 765.6 875 525.4 875 318.4 875 111.3 740.2-62.5 503.9-62.5ZM515.6 871.1C515.6 871.1 513.7 873 511.7 873 509.8 873 509.8 871.1 507.8 871.1L492.2 851.6C363.3 705.1 187.5 502 187.5 318.4 187.5 146.5 332 0 503.9 0 716.8 0 812.5 160.2 812.5 318.4 812.5 459 712.9 644.5 515.6 871.1ZM502 127C398.4 127 314.5 210.9 314.5 314.5 314.5 418 398.4 502 502 502 605.5 502 689.5 418 689.5 314.5 689.5 210.9 605.5 127 502 127ZM502 439.5C431.6 439.5 375 380.9 375 312.5 375 244.1 431.6 187.5 500 187.5 568.4 187.5 625 244.1 625 312.5 625 380.9 570.3 439.5 502 439.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"location map\";}}i:150;a:7:{s:3:\"uid\";s:32:\"ba3ebeb00624a1271dbc17821269034e\";s:3:\"css\";s:7:\"power-1\";s:4:\"code\";i:59542;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:700:\"M685.5 97.7C669.9 89.8 650.4 97.7 644.5 113.3 636.7 128.9 642.6 146.5 658.2 154.3 816.4 228.5 902.3 400.4 867.2 572.3 826.2 775.4 627 908.2 421.9 865.2 324.2 845.7 242.2 789.1 187.5 705.1 130.9 619.1 111.3 519.5 132.8 419.9 156.3 302.7 232.4 207 339.8 154.3 355.5 146.5 363.3 128.9 355.5 113.3 347.7 97.7 330.1 91.8 314.5 97.7 187.5 158.2 99.6 271.5 70.3 408.2 46.9 523.4 70.3 640.6 134.8 738.3 199.2 835.9 294.9 904.3 410.2 927.7 439.5 933.6 468.8 935.5 498 935.5 703.1 935.5 886.7 793 929.7 584 970.7 384.8 869.1 183.6 685.5 97.7ZM500 343.8C517.6 343.8 531.3 330.1 531.3 312.5L531.3-31.3C531.3-48.8 517.6-62.5 500-62.5 482.4-62.5 468.8-48.8 468.8-31.3L468.8 312.5C468.8 330.1 482.4 343.8 500 343.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"power\";}}i:151;a:7:{s:3:\"uid\";s:32:\"9a98e03f4be94590ab1960abbf85793d\";s:3:\"css\";s:11:\"refresh-alt\";s:4:\"code\";i:59543;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1437:\"M486.3 814.5C486.3 814.5 486.3 814.5 486.3 814.5L396.5 673.8C388.7 664.1 375 660.2 365.2 666L357.4 669.9C345.7 675.8 345.7 691.4 351.6 703.1L410.2 791C404.3 791 400.4 789.1 394.5 789.1 294.9 761.7 209 693.4 162.1 601.6 115.2 513.7 107.4 414.1 136.7 320.3 168 226.6 234.4 150.4 322.3 105.5 337.9 97.7 343.8 78.1 335.9 64.5 328.1 48.8 308.6 43 294.9 50.8 193.4 103.5 115.2 193.4 80.1 302.7 44.9 412.1 54.7 527.3 107.4 628.9 164.1 736.3 261.7 816.4 380.9 847.7 380.9 847.7 382.8 847.7 384.8 847.7L304.7 888.7C293 894.5 291 908.2 296.9 918L298.8 925.8C306.6 935.5 316.4 939.5 328.1 933.6L472.7 859.4C472.7 859.4 474.6 859.4 474.6 859.4L484.4 853.5C488.3 851.6 492.2 845.7 494.1 841.8 496.1 835.9 494.1 830.1 492.2 824.2ZM892.6 250C835.9 142.6 740.2 64.5 623 33.2 615.2 31.3 605.5 29.3 597.7 27.3L675.8-11.7C685.5-17.6 693.4-31.3 685.5-41L683.6-50.8C677.7-60.5 664.1-64.5 652.3-58.6L507.8 15.6C507.8 15.6 505.9 15.6 505.9 15.6L496.1 21.5C492.2 25.4 488.3 29.3 486.3 35.2 484.4 41 486.3 46.9 488.3 50.8L494.1 60.5C494.1 60.5 494.1 60.5 494.1 62.5L584 201.2C591.8 212.9 605.5 216.8 615.2 210.9L623 205.1C632.8 199.2 634.8 183.6 627 173.8L570.3 84C582 85.9 595.7 87.9 607.4 91.8 709 117.2 791 185.5 837.9 279.3 884.8 365.2 892.6 466.8 863.3 560.5 832 654.3 767.6 730.5 681.6 775.4 666 783.2 660.2 800.8 668 816.4 673.8 826.2 683.6 832 695.3 832 699.2 832 705.1 832 709 830.1 810.5 777.3 884.8 687.5 919.9 578.1 955.1 468.8 945.3 353.5 892.6 250Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"refresh\";}}i:152;a:7:{s:3:\"uid\";s:32:\"284a8bb466e9a3fa6b7f42fac0a40a25\";s:3:\"css\";s:7:\"refresh\";s:4:\"code\";i:59544;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:746:\"M500-62.5C250-62.5 46.9 140.6 46.9 390.6 46.9 625 226.6 822.3 459 841.8L371.1 886.7C359.4 892.6 351.6 906.3 359.4 918L361.3 925.8C369.1 937.5 382.8 941.4 394.5 935.5L543 857.4C544.9 857.4 544.9 857.4 544.9 857.4L554.7 851.6C560.5 849.6 564.5 843.8 564.5 837.9 566.4 834 566.4 826.2 562.5 822.3L556.6 812.5C556.6 812.5 556.6 810.5 556.6 810.5L464.8 666C457 656.3 443.4 652.3 431.6 658.2L423.8 664.1C414.1 669.9 412.1 685.5 419.9 695.3L474.6 781.3C474.6 781.3 472.7 779.3 472.7 779.3 269.5 767.6 109.4 595.7 109.4 390.6 109.4 175.8 283.2 0 500 0 714.8 0 890.6 175.8 890.6 390.6 890.6 513.7 834 628.9 734.4 703.1 720.7 712.9 718.8 732.4 728.5 746.1 738.3 759.8 757.8 763.7 771.5 753.9 886.7 666 953.1 535.2 953.1 390.6 953.1 140.6 750-62.5 500-62.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:19:\"refresh loop repeat\";}}i:153;a:7:{s:3:\"uid\";s:32:\"955d2b2704e505197b3f2ebc2ad5c1fb\";s:3:\"css\";s:12:\"settings-alt\";s:4:\"code\";i:59545;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:2658:\"M937.5 343.8L857.4 324.2C851.6 304.7 843.8 285.2 834 267.6L877 195.3C892.6 169.9 902.3 130.9 877 107.4L834 62.5C808.6 39.1 767.6 43 742.2 60.5L671.9 105.5C654.3 95.7 634.8 87.9 615.2 80.1L597.7 0C591.8-29.3 566.4-62.5 531.3-62.5L468.8-62.5C433.6-62.5 412.1-29.3 406.3 0L386.7 80.1C365.2 87.9 343.8 95.7 326.2 105.5L253.9 60.5C228.5 43 187.5 39.1 162.1 62.5L119.1 107.4C93.8 130.9 101.6 169.9 119.1 195.3L164.1 271.5C156.3 289.1 148.4 306.6 142.6 324.2L62.5 343.8C33.2 347.7 0 375 0 408.2L0 470.7C0 505.9 33.2 527.3 62.5 533.2L144.5 554.7C148.4 570.3 156.3 587.9 164.1 603.5L119.1 679.7C101.6 705.1 93.8 744.1 119.1 767.6L162.1 812.5C187.5 837.9 228.5 832 253.9 814.5L326.2 769.5C345.7 779.3 365.2 789.1 386.7 794.9L406.3 875C414.1 904.3 435.5 937.5 468.8 937.5L531.3 937.5C566.4 937.5 591.8 904.3 597.7 875L615.2 794.9C634.8 787.1 654.3 779.3 671.9 769.5L742.2 814.5C767.6 832 808.6 837.9 834 812.5L877 767.6C902.3 744.1 892.6 705.1 877 679.7L834 607.4C841.8 589.8 849.6 572.3 855.5 554.7L937.5 533.2C966.8 527.3 1000 505.9 1000 470.7L1000 408.2C1000 375 968.8 347.7 937.5 343.8ZM937.5 466.8C935.5 468.8 929.7 470.7 923.8 472.7L808.6 502 796.9 535.2C793 548.8 785.2 564.5 777.3 580.1L761.7 609.4 824.2 712.9C828.1 718.8 830.1 724.6 830.1 726.6L789.1 767.6C785.2 767.6 781.3 765.6 777.3 763.7L675.8 699.2 642.6 714.8C628.9 722.7 611.3 730.5 595.7 734.4L562.5 746.1 537.1 861.3C535.2 869.1 531.3 873 529.3 875L472.7 875C472.7 873 468.8 867.2 466.8 861.3L439.5 746.1 406.3 736.3C388.7 730.5 371.1 722.7 355.5 714.8L322.3 697.3 218.8 761.7C214.8 765.6 210.9 767.6 207 767.6L166 726.6C166 724.6 168 718.8 171.9 712.9L236.3 607.4 220.7 576.2C212.9 562.5 207 548.8 203.1 535.2L193.4 502 78.1 472.7C70.3 470.7 64.5 468.8 62.5 466.8L62.5 408.2C62.5 408.2 62.5 408.2 62.5 408.2 64.5 408.2 68.4 404.3 72.3 404.3L191.4 378.9 201.2 343.8C207 330.1 212.9 314.5 220.7 298.8L236.3 267.6 171.9 162.1C168 156.3 166 150.4 166 148.4L207 107.4C210.9 107.4 214.8 109.4 216.8 111.3L322.3 177.7 355.5 160.2C371.1 152.3 388.7 144.5 404.3 140.6L437.5 128.9 466.8 15.6C468.8 7.8 470.7 2 472.7 0L531.3 0C531.3 0 535.2 5.9 535.2 9.8L562.5 128.9 595.7 140.6C611.3 144.5 628.9 152.3 642.6 160.2L675.8 175.8 775.4 113.3C781.3 109.4 785.2 107.4 789.1 107.4L830.1 148.4C830.1 150.4 828.1 156.3 824.2 162.1L761.7 265.6 777.3 296.9C787.1 312.5 793 328.1 798.8 343.8L808.6 378.9 923.8 404.3C931.6 404.3 937.5 410.2 937.5 412.1ZM500 250C396.5 250 312.5 334 312.5 437.5 312.5 541 396.5 625 500 625 603.5 625 689.5 541 689.5 437.5 689.5 334 603.5 250 500 250ZM500 562.5C431.6 562.5 375 505.9 375 437.5 375 369.1 431.6 312.5 500 312.5 568.4 312.5 625 369.1 625 437.5 625 505.9 568.4 562.5 500 562.5Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:16:\"settings options\";}}i:154;a:7:{s:3:\"uid\";s:32:\"321685f192f465684e78b82b54d82a28\";s:3:\"css\";s:6:\"star-3\";s:4:\"code\";i:59546;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:745:\"M500 13.7L613.3 250 634.8 291 679.7 298.8 939.5 337.9 750 525.4 718.8 556.6 726.6 601.6 769.5 865.2 541 742.2 500 720.7 459 742.2 230.5 865.2 273.4 601.6 281.3 556.6 250 525.4 60.5 337.9 320.3 298.8 365.2 291 386.7 250 500 13.7M500-46.9C472.7-46.9 447.3-31.3 435.5-5.9L322.3 228.5 60.5 267.6C35.2 271.5 11.7 289.1 3.9 314.5-5.9 339.8 2 367.2 19.5 384.8L210.9 576.2 166 839.8C162.1 867.2 173.8 894.5 197.3 910.2 209 918 222.7 921.9 238.3 921.9 250 921.9 261.7 919.9 273.4 914.1L500 791 726.6 914.1C738.3 919.9 750 921.9 761.7 921.9 777.3 921.9 791 918 802.7 910.2 826.2 894.5 837.9 867.2 834 839.8L789.1 576.2 980.5 384.8C998 367.2 1005.9 339.8 996.1 314.5 988.3 289.1 964.8 271.5 939.5 267.6L677.7 228.5 564.5-5.9C552.7-31.3 527.3-46.9 500-46.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"star\";}}i:155;a:7:{s:3:\"uid\";s:32:\"2fed9d2bbb80c579a862ae8b70bfd50e\";s:3:\"css\";s:8:\"female-3\";s:4:\"code\";i:59547;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:586:\"M609.4-62.5C392.6-62.5 218.8 111.3 218.8 328.1 218.8 423.8 253.9 511.7 310.5 580.1L187.5 705.1 54.7 572.3C43 560.5 23.4 560.5 9.8 572.3-2 584-2 603.5 9.8 615.2L142.6 750 9.8 882.8C-2 896.5-2 916 9.8 927.7 21.5 939.5 41 939.5 52.7 927.7L187.5 794.9 320.3 927.7C332 941.4 351.6 941.4 363.3 927.7 377 916 377 896.5 363.3 884.8L230.5 750 355.5 625C423.8 683.6 511.7 718.8 609.4 718.8 824.2 718.8 1000 543 1000 328.1 1000 111.3 824.2-62.5 609.4-62.5ZM609.4 656.3C427.7 656.3 281.3 509.8 281.3 328.1 281.3 146.5 427.7 0 609.4 0 791 0 937.5 146.5 937.5 328.1 937.5 509.8 791 656.3 609.4 656.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"female\";}}i:156;a:7:{s:3:\"uid\";s:32:\"120ec1a558c96dd1b33dcc27985f3eee\";s:3:\"css\";s:6:\"male-3\";s:4:\"code\";i:59548;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:654:\"M1000-41C1000-46.9 998-52.7 994.1-56.6 990.2-60.5 984.4-62.5 978.5-62.5L966.8-62.5C966.8-62.5 966.8-62.5 964.8-62.5L679.7-62.5C666-62.5 656.3-52.7 656.3-41L656.3-23.4C658.2-9.8 669.9 0 681.6 0L892.6 0 642.6 248C574.2 191.4 486.3 156.3 390.6 156.3 175.8 156.3 0 332 0 546.9 0 763.7 175.8 937.5 390.6 937.5 607.4 937.5 781.3 763.7 781.3 546.9 781.3 449.2 746.1 361.3 687.5 293L937.5 43 935.5 257.8C935.5 269.5 945.3 281.3 959 279.3L974.6 279.3C988.3 279.3 998 271.5 998 259.8L998-29.3C998-29.3 998-29.3 998-29.3ZM720.7 546.9C720.7 728.5 572.3 877 390.6 877 209 877 62.5 728.5 62.5 546.9 62.5 367.2 209 218.8 390.6 218.8 572.3 218.8 720.7 367.2 720.7 546.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"male\";}}i:157;a:7:{s:3:\"uid\";s:32:\"0b433b17d8d7639e5723e31c0e90f375\";s:3:\"css\";s:8:\"target-3\";s:4:\"code\";i:59549;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:767:\"M968.8 406.3L873 406.3C859.4 224.6 712.9 78.1 531.3 64.5L531.3-31.3C531.3-48.8 517.6-62.5 500-62.5 482.4-62.5 468.8-48.8 468.8-31.3L468.8 64.5C287.1 78.1 140.6 224.6 127 406.3L31.3 406.3C13.7 406.3 0 419.9 0 437.5 0 455.1 13.7 468.8 31.3 468.8L127 468.8C140.6 650.4 287.1 796.9 468.8 810.5L468.8 906.3C468.8 923.8 482.4 937.5 500 937.5 517.6 937.5 531.3 923.8 531.3 906.3L531.3 810.5C712.9 796.9 859.4 650.4 873 468.8L968.8 468.8C986.3 468.8 1000 455.1 1000 437.5 1000 419.9 986.3 406.3 968.8 406.3ZM468.8 127L468.8 406.3 189.5 406.3C203.1 257.8 320.3 140.6 468.8 127ZM189.5 468.8L468.8 468.8 468.8 748C320.3 734.4 203.1 617.2 189.5 468.8ZM531.3 748L531.3 468.8 810.5 468.8C796.9 617.2 679.7 734.4 531.3 748ZM531.3 406.3L531.3 127C679.7 140.6 796.9 257.8 810.5 406.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"target\";}}i:158;a:7:{s:3:\"uid\";s:32:\"4e4bb54f40f5a203da35d8b65ac92d41\";s:3:\"css\";s:13:\"volume-down-1\";s:4:\"code\";i:59550;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:826:\"M638.7 2C628.9-3.9 617.2-3.9 607.4 3.9L293 250 189.5 250C136.7 250 93.8 287.1 93.8 334L93.8 541C93.8 585.9 138.7 625 191.4 625L294.9 625 607.4 871.1C613.3 875 619.1 877 625 877 628.9 877 634.8 875 638.7 873 650.4 867.2 656.3 857.4 656.3 845.7L656.3 29.3C656.3 17.6 650.4 7.8 638.7 2ZM593.8 787.1L322.3 568.4C316.4 564.5 310.5 562.5 304.7 562.5L191.4 562.5C171.9 562.5 156.3 550.8 156.3 541L156.3 334C156.3 324.2 169.9 312.5 189.5 312.5L302.7 312.5C308.6 312.5 316.4 310.5 320.3 306.6L593.8 87.9ZM771.5 277.3C753.9 273.4 738.3 285.2 734.4 302.7 732.4 320.3 744.1 335.9 761.7 337.9 810.5 347.7 843.8 390.6 843.8 443.4 843.8 494.1 808.6 537.1 759.8 546.9 742.2 550.8 732.4 566.4 736.3 584 738.3 599.6 752 609.4 765.6 609.4 767.6 609.4 769.5 609.4 771.5 607.4 849.6 593.8 906.3 523.4 906.3 443.4 906.3 359.4 849.6 291 771.5 277.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"volume down\";}}i:159;a:7:{s:3:\"uid\";s:32:\"377cb7fe4b0cb160f04c943b5a87972d\";s:3:\"css\";s:11:\"volume-up-1\";s:4:\"code\";i:59551;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1145:\"M560.5 2C550.8-3.9 539.1-3.9 529.3 3.9L214.8 250 111.3 250C58.6 250 13.7 287.1 13.7 334L15.6 541C15.6 585.9 60.5 625 113.3 625L216.8 625 529.3 871.1C533.2 875 541 877 546.9 877 550.8 877 556.6 875 560.5 873 570.3 867.2 578.1 857.4 578.1 845.7L578.1 29.3C578.1 17.6 570.3 7.8 560.5 2ZM515.6 787.1L244.1 568.4C238.3 564.5 232.4 562.5 226.6 562.5L113.3 562.5C93.8 562.5 78.1 550.8 78.1 541L78.1 334C78.1 324.2 91.8 312.5 111.3 312.5L224.6 312.5C230.5 312.5 236.3 310.5 242.2 306.6L515.6 87.9ZM828.1 443.4C828.1 359.4 771.5 291 693.4 277.3 675.8 273.4 660.2 285.2 656.3 302.7 654.3 320.3 666 335.9 681.6 337.9 732.4 347.7 765.6 390.6 765.6 443.4 765.6 494.1 730.5 537.1 681.6 546.9 664.1 550.8 654.3 566.4 656.3 584 660.2 599.6 673.8 609.4 687.5 609.4 689.5 609.4 691.4 609.4 693.4 607.4 771.5 593.8 828.1 523.4 828.1 443.4ZM787.1 156.3C771.5 150.4 752 158.2 746.1 173.8 740.2 191.4 750 209 765.6 214.8 859.4 250 923.8 341.8 923.8 443.4 923.8 544.9 859.4 636.7 765.6 671.9 750 677.7 740.2 695.3 746.1 710.9 752 724.6 763.7 732.4 775.4 732.4 779.3 732.4 783.2 730.5 787.1 730.5 906.3 685.5 986.3 570.3 986.3 443.4 986.3 316.4 906.3 201.2 787.1 156.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"volume up\";}}i:160;a:7:{s:3:\"uid\";s:32:\"d61b5e92752cf00ff06327fc891d36d3\";s:3:\"css\";s:6:\"mute-2\";s:4:\"code\";i:59552;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:848:\"M562.5 2C552.7-3.9 539.1-3.9 529.3 3.9L216.8 250 111.3 250C58.6 250 15.6 287.1 15.6 334L17.6 541C17.6 585.9 60.5 625 113.3 625L218.8 625 529.3 871.1C535.2 875 541 877 546.9 877 552.7 877 556.6 875 562.5 873 572.3 867.2 578.1 857.4 578.1 845.7L578.1 29.3C578.1 17.6 572.3 7.8 562.5 2ZM515.6 787.1L244.1 568.4C240.2 564.5 234.4 562.5 228.5 562.5L113.3 562.5C93.8 562.5 80.1 550.8 80.1 541L78.1 334C78.1 324.2 91.8 312.5 111.3 312.5L226.6 312.5C232.4 312.5 238.3 310.5 244.1 306.6L515.6 87.9ZM873 437.5L974.6 334C988.3 322.3 988.3 302.7 974.6 291 962.9 277.3 943.4 277.3 931.6 291L830.1 392.6 726.6 291C714.8 277.3 695.3 277.3 683.6 291 669.9 302.7 669.9 322.3 683.6 334L785.2 437.5 683.6 541C671.9 552.7 671.9 572.3 683.6 584 695.3 597.7 716.8 597.7 728.5 584L830.1 482.4 929.7 584C941.4 597.7 962.9 597.7 974.6 584 986.3 572.3 986.3 552.7 974.6 541Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"mute\";}}i:161;a:7:{s:3:\"uid\";s:32:\"9e30a93deb07202d108af00f0f83dd91\";s:3:\"css\";s:10:\"user-group\";s:4:\"code\";i:59553;s:3:\"src\";s:15:\"simplelineicons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1415:\"M728.5 753.9L531.3 644.5C605.5 585.9 625 472.7 625 410.2L625 277.3C625 191.4 507.8 93.8 392.6 93.8 275.4 93.8 156.3 191.4 156.3 277.3L156.3 410.2C156.3 468.8 181.6 584 253.9 644.5L52.7 753.9C52.7 753.9 0 777.3 0 806.6L0 884.8C0 914.1 23.4 937.5 52.7 937.5L728.5 937.5C757.8 937.5 781.3 914.1 781.3 884.8L781.3 806.6C781.3 775.4 728.5 753.9 728.5 753.9ZM718.8 875L62.5 875 62.5 820.3C66.4 816.4 74.2 812.5 78.1 810.5 80.1 810.5 82 808.6 82 808.6L285.2 699.2C302.7 689.5 314.5 669.9 316.4 648.4 318.4 628.9 310.5 607.4 293 595.7 242.2 552.7 218.8 459 218.8 410.2L218.8 277.3C218.8 232.4 302.7 156.3 392.6 156.3 482.4 156.3 562.5 232.4 562.5 277.3L562.5 410.2C562.5 459 546.9 552.7 492.2 595.7 476.6 607.4 466.8 628.9 468.8 650.4 470.7 669.9 484.4 689.5 502 699.2L699.2 808.6C701.2 808.6 703.1 810.5 705.1 810.5 709 812.5 714.8 816.4 718.8 818.4ZM947.3 597.7L748 488.3C820.3 431.6 843.8 318.4 843.8 253.9L843.8 123C843.8 35.2 724.6-62.5 607.4-62.5 531.3-62.5 455.1-21.5 410.2 31.3 435.5 33.2 462.9 33.2 488.3 41 521.5 15.6 562.5 0 607.4 0 697.3 0 781.3 76.2 781.3 123L781.3 253.9C781.3 302.7 763.7 396.5 709 439.5 693.4 453.1 683.6 472.7 685.5 494.1 687.5 515.6 699.2 533.2 716.8 543L918 652.3C919.9 654.3 921.9 654.3 923.8 654.3 927.7 656.3 933.6 660.2 937.5 664.1L937.5 718.8 810.5 718.8C830.1 732.4 835.9 753.9 843.8 781.3L947.3 781.3C976.6 781.3 1000 757.8 1000 728.5L1000 650.4C1000 619.1 947.3 597.7 947.3 597.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"user group\";}}i:162;a:4:{s:3:\"uid\";s:32:\"cfaa8fbbdcc7bb8d636cb974aad1f9b9\";s:3:\"css\";s:5:\"glass\";s:4:\"code\";i:59554;s:3:\"src\";s:11:\"fontawesome\";}i:163;a:4:{s:3:\"uid\";s:32:\"9ea0a737ccc45d6c510dcbae56058849\";s:3:\"css\";s:5:\"music\";s:4:\"code\";i:59555;s:3:\"src\";s:11:\"fontawesome\";}i:164;a:4:{s:3:\"uid\";s:32:\"9dd9e835aebe1060ba7190ad2b2ed951\";s:3:\"css\";s:6:\"search\";s:4:\"code\";i:59556;s:3:\"src\";s:11:\"fontawesome\";}i:165;a:4:{s:3:\"uid\";s:32:\"bf882b30900da12fca090d9796bc3030\";s:3:\"css\";s:4:\"mail\";s:4:\"code\";i:59557;s:3:\"src\";s:11:\"fontawesome\";}i:166;a:4:{s:3:\"uid\";s:32:\"ccc2329632396dc096bb638d4b46fb98\";s:3:\"css\";s:8:\"mail-alt\";s:4:\"code\";i:59558;s:3:\"src\";s:11:\"fontawesome\";}i:167;a:4:{s:3:\"uid\";s:32:\"17c21cd98db80e521e573eba247bd69b\";s:3:\"css\";s:12:\"mail-squared\";s:4:\"code\";i:59559;s:3:\"src\";s:11:\"fontawesome\";}i:168;a:4:{s:3:\"uid\";s:32:\"d73eceadda1f594cec0536087539afbf\";s:3:\"css\";s:5:\"heart\";s:4:\"code\";i:59560;s:3:\"src\";s:11:\"fontawesome\";}i:169;a:4:{s:3:\"uid\";s:32:\"f3dc2d6d8fe9cf9ebff84dc260888cdf\";s:3:\"css\";s:11:\"heart-empty\";s:4:\"code\";i:59561;s:3:\"src\";s:11:\"fontawesome\";}i:170;a:4:{s:3:\"uid\";s:32:\"474656633f79ea2f1dad59ff63f6bf07\";s:3:\"css\";s:4:\"star\";s:4:\"code\";i:59562;s:3:\"src\";s:11:\"fontawesome\";}i:171;a:4:{s:3:\"uid\";s:32:\"d17030afaecc1e1c22349b99f3c4992a\";s:3:\"css\";s:10:\"star-empty\";s:4:\"code\";i:59563;s:3:\"src\";s:11:\"fontawesome\";}i:172;a:4:{s:3:\"uid\";s:32:\"8f8278fbe5a2a0ea836be3c408b005d2\";s:3:\"css\";s:9:\"star-half\";s:4:\"code\";i:59564;s:3:\"src\";s:11:\"fontawesome\";}i:173;a:4:{s:3:\"uid\";s:32:\"84cf1fcc3fec556e7eaeb19679ca2dc9\";s:3:\"css\";s:13:\"star-half-alt\";s:4:\"code\";i:59565;s:3:\"src\";s:11:\"fontawesome\";}i:174;a:4:{s:3:\"uid\";s:32:\"8b80d36d4ef43889db10bc1f0dc9a862\";s:3:\"css\";s:4:\"user\";s:4:\"code\";i:59566;s:3:\"src\";s:11:\"fontawesome\";}i:175;a:4:{s:3:\"uid\";s:32:\"1bafeeb1808a5fe24484c7890096901a\";s:3:\"css\";s:9:\"user-plus\";s:4:\"code\";i:59567;s:3:\"src\";s:11:\"fontawesome\";}i:176;a:4:{s:3:\"uid\";s:32:\"fb1c59faa93eb6e2248c2456625b08a2\";s:3:\"css\";s:10:\"user-times\";s:4:\"code\";i:59568;s:3:\"src\";s:11:\"fontawesome\";}i:177;a:4:{s:3:\"uid\";s:32:\"31972e4e9d080eaa796290349ae6c1fd\";s:3:\"css\";s:5:\"users\";s:4:\"code\";i:59569;s:3:\"src\";s:11:\"fontawesome\";}i:178;a:4:{s:3:\"uid\";s:32:\"ca2d64f8a3ea7cbf6af45898b2dcf35e\";s:3:\"css\";s:4:\"male\";s:4:\"code\";i:59570;s:3:\"src\";s:11:\"fontawesome\";}i:179;a:4:{s:3:\"uid\";s:32:\"9bf7e14698cccdca37a6f1a02cf7d79e\";s:3:\"css\";s:6:\"female\";s:4:\"code\";i:59571;s:3:\"src\";s:11:\"fontawesome\";}i:180;a:4:{s:3:\"uid\";s:32:\"c2314ed1d2314b89f9285c53bcbf2548\";s:3:\"css\";s:5:\"child\";s:4:\"code\";i:59572;s:3:\"src\";s:11:\"fontawesome\";}i:181;a:4:{s:3:\"uid\";s:32:\"f9c8ea86275ca16128235c6452b67b8e\";s:3:\"css\";s:11:\"user-secret\";s:4:\"code\";i:59573;s:3:\"src\";s:11:\"fontawesome\";}i:182;a:4:{s:3:\"uid\";s:32:\"872d9516df93eb6b776cc4d94bd97dac\";s:3:\"css\";s:5:\"video\";s:4:\"code\";i:59574;s:3:\"src\";s:11:\"fontawesome\";}i:183;a:4:{s:3:\"uid\";s:32:\"0f99ab40ab0b4d64a74f2d0deeb03e42\";s:3:\"css\";s:8:\"videocam\";s:4:\"code\";i:59575;s:3:\"src\";s:11:\"fontawesome\";}i:184;a:4:{s:3:\"uid\";s:32:\"381da2c2f7fd51f8de877c044d7f439d\";s:3:\"css\";s:7:\"picture\";s:4:\"code\";i:59576;s:3:\"src\";s:11:\"fontawesome\";}i:185;a:4:{s:3:\"uid\";s:32:\"dc3f1d5b1d006f7f7b3b6295eccab9da\";s:3:\"css\";s:6:\"camera\";s:4:\"code\";i:59577;s:3:\"src\";s:11:\"fontawesome\";}i:186;a:4:{s:3:\"uid\";s:32:\"9d3d9d6ce1ec63eaa26281e6162853c9\";s:3:\"css\";s:10:\"camera-alt\";s:4:\"code\";i:59578;s:3:\"src\";s:11:\"fontawesome\";}i:187;a:4:{s:3:\"uid\";s:32:\"dd492243d64e21dfe16a92452f7861cb\";s:3:\"css\";s:8:\"th-large\";s:4:\"code\";i:59579;s:3:\"src\";s:11:\"fontawesome\";}i:188;a:4:{s:3:\"uid\";s:32:\"b1887b423d2fd15c345e090320c91ca0\";s:3:\"css\";s:2:\"th\";s:4:\"code\";i:59580;s:3:\"src\";s:11:\"fontawesome\";}i:189;a:4:{s:3:\"uid\";s:32:\"f805bb95d40c7ef2bc51b3d50d4f2e5c\";s:3:\"css\";s:7:\"th-list\";s:4:\"code\";i:59581;s:3:\"src\";s:11:\"fontawesome\";}i:190;a:4:{s:3:\"uid\";s:32:\"12f4ece88e46abd864e40b35e05b11cd\";s:3:\"css\";s:2:\"ok\";s:4:\"code\";i:59582;s:3:\"src\";s:11:\"fontawesome\";}i:191;a:4:{s:3:\"uid\";s:32:\"43ab845088317bd348dee1d975700c48\";s:3:\"css\";s:10:\"ok-circled\";s:4:\"code\";i:59583;s:3:\"src\";s:11:\"fontawesome\";}i:192;a:4:{s:3:\"uid\";s:32:\"ad33e708f4d2e25c5056c931da1528d6\";s:3:\"css\";s:11:\"ok-circled2\";s:4:\"code\";i:59584;s:3:\"src\";s:11:\"fontawesome\";}i:193;a:4:{s:3:\"uid\";s:32:\"1400d5103edd2fa6d2d61688fee79a5a\";s:3:\"css\";s:10:\"ok-squared\";s:4:\"code\";i:59585;s:3:\"src\";s:11:\"fontawesome\";}i:194;a:4:{s:3:\"uid\";s:32:\"5211af474d3a9848f67f945e2ccaf143\";s:3:\"css\";s:6:\"cancel\";s:4:\"code\";i:59586;s:3:\"src\";s:11:\"fontawesome\";}i:195;a:4:{s:3:\"uid\";s:32:\"0f4cae16f34ae243a6144c18a003f2d8\";s:3:\"css\";s:14:\"cancel-circled\";s:4:\"code\";i:59587;s:3:\"src\";s:11:\"fontawesome\";}i:196;a:4:{s:3:\"uid\";s:32:\"2e2dba0307a502a8507c1729084c7ab5\";s:3:\"css\";s:15:\"cancel-circled2\";s:4:\"code\";i:59588;s:3:\"src\";s:11:\"fontawesome\";}i:197;a:4:{s:3:\"uid\";s:32:\"44e04715aecbca7f266a17d5a7863c68\";s:3:\"css\";s:4:\"plus\";s:4:\"code\";i:59589;s:3:\"src\";s:11:\"fontawesome\";}i:198;a:4:{s:3:\"uid\";s:32:\"4ba33d2607902cf690dd45df09774cb0\";s:3:\"css\";s:12:\"plus-circled\";s:4:\"code\";i:59590;s:3:\"src\";s:11:\"fontawesome\";}i:199;a:4:{s:3:\"uid\";s:32:\"1a5cfa186647e8c929c2b17b9fc4dac1\";s:3:\"css\";s:12:\"plus-squared\";s:4:\"code\";i:59591;s:3:\"src\";s:11:\"fontawesome\";}i:200;a:4:{s:3:\"uid\";s:32:\"2d3be3e856fc1e4ac067590d2ded1b07\";s:3:\"css\";s:16:\"plus-squared-alt\";s:4:\"code\";i:59592;s:3:\"src\";s:11:\"fontawesome\";}i:201;a:4:{s:3:\"uid\";s:32:\"861ab06e455e2de3232ebef67d60d708\";s:3:\"css\";s:5:\"minus\";s:4:\"code\";i:59593;s:3:\"src\";s:11:\"fontawesome\";}i:202;a:4:{s:3:\"uid\";s:32:\"eeadb020bb75d089b25d8424aabe19e0\";s:3:\"css\";s:13:\"minus-circled\";s:4:\"code\";i:59594;s:3:\"src\";s:11:\"fontawesome\";}i:203;a:4:{s:3:\"uid\";s:32:\"f755a58fb985eeb70bd47d9b31892a34\";s:3:\"css\";s:13:\"minus-squared\";s:4:\"code\";i:59595;s:3:\"src\";s:11:\"fontawesome\";}i:204;a:4:{s:3:\"uid\";s:32:\"18ef25350258541e8e54148ed79845c0\";s:3:\"css\";s:17:\"minus-squared-alt\";s:4:\"code\";i:59596;s:3:\"src\";s:11:\"fontawesome\";}i:205;a:4:{s:3:\"uid\";s:32:\"ce3cf091d6ebd004dd0b52d24074e6e3\";s:3:\"css\";s:4:\"help\";s:4:\"code\";i:59597;s:3:\"src\";s:11:\"fontawesome\";}i:206;a:4:{s:3:\"uid\";s:32:\"17ebadd1e3f274ff0205601eef7b9cc4\";s:3:\"css\";s:12:\"help-circled\";s:4:\"code\";i:59598;s:3:\"src\";s:11:\"fontawesome\";}i:207;a:4:{s:3:\"uid\";s:32:\"e82cedfa1d5f15b00c5a81c9bd731ea2\";s:3:\"css\";s:12:\"info-circled\";s:4:\"code\";i:59599;s:3:\"src\";s:11:\"fontawesome\";}i:208;a:4:{s:3:\"uid\";s:32:\"3d4ea8a78dc34efe891f3a0f3d961274\";s:3:\"css\";s:4:\"info\";s:4:\"code\";i:59600;s:3:\"src\";s:11:\"fontawesome\";}i:209;a:4:{s:3:\"uid\";s:32:\"d7271d490b71df4311e32cdacae8b331\";s:3:\"css\";s:4:\"home\";s:4:\"code\";i:59601;s:3:\"src\";s:11:\"fontawesome\";}i:210;a:4:{s:3:\"uid\";s:32:\"0ddd3e8201ccc7d41f7b7c9d27eca6c1\";s:3:\"css\";s:4:\"link\";s:4:\"code\";i:59602;s:3:\"src\";s:11:\"fontawesome\";}i:211;a:4:{s:3:\"uid\";s:32:\"1dcd2b2148b7f086a4eb47f6a746bdee\";s:3:\"css\";s:6:\"unlink\";s:4:\"code\";i:59603;s:3:\"src\";s:11:\"fontawesome\";}i:212;a:4:{s:3:\"uid\";s:32:\"e15f0d620a7897e2035c18c80142f6d9\";s:3:\"css\";s:8:\"link-ext\";s:4:\"code\";i:59604;s:3:\"src\";s:11:\"fontawesome\";}i:213;a:4:{s:3:\"uid\";s:32:\"e35de5ea31cd56970498e33efbcb8e36\";s:3:\"css\";s:12:\"link-ext-alt\";s:4:\"code\";i:59605;s:3:\"src\";s:11:\"fontawesome\";}i:214;a:4:{s:3:\"uid\";s:32:\"0d6ab6194c0eddda2b8c9cedf2ab248e\";s:3:\"css\";s:6:\"attach\";s:4:\"code\";i:59606;s:3:\"src\";s:11:\"fontawesome\";}i:215;a:4:{s:3:\"uid\";s:32:\"c1f1975c885aa9f3dad7810c53b82074\";s:3:\"css\";s:4:\"lock\";s:4:\"code\";i:59607;s:3:\"src\";s:11:\"fontawesome\";}i:216;a:4:{s:3:\"uid\";s:32:\"657ab647f6248a6b57a5b893beaf35a9\";s:3:\"css\";s:9:\"lock-open\";s:4:\"code\";i:59608;s:3:\"src\";s:11:\"fontawesome\";}i:217;a:4:{s:3:\"uid\";s:32:\"05376be04a27d5a46e855a233d6e8508\";s:3:\"css\";s:13:\"lock-open-alt\";s:4:\"code\";i:59609;s:3:\"src\";s:11:\"fontawesome\";}i:218;a:4:{s:3:\"uid\";s:32:\"5b0772e9484a1a11646793a82edd622a\";s:3:\"css\";s:3:\"pin\";s:4:\"code\";i:59610;s:3:\"src\";s:11:\"fontawesome\";}i:219;a:4:{s:3:\"uid\";s:32:\"c5fd349cbd3d23e4ade333789c29c729\";s:3:\"css\";s:3:\"eye\";s:4:\"code\";i:59611;s:3:\"src\";s:11:\"fontawesome\";}i:220;a:4:{s:3:\"uid\";s:32:\"7fd683b2c518ceb9e5fa6757f2276faa\";s:3:\"css\";s:7:\"eye-off\";s:4:\"code\";i:59612;s:3:\"src\";s:11:\"fontawesome\";}i:221;a:4:{s:3:\"uid\";s:32:\"3db5347bd219f3bce6025780f5d9ef45\";s:3:\"css\";s:3:\"tag\";s:4:\"code\";i:59613;s:3:\"src\";s:11:\"fontawesome\";}i:222;a:4:{s:3:\"uid\";s:32:\"a3f89e106175a5c5c4e9738870b12e55\";s:3:\"css\";s:4:\"tags\";s:4:\"code\";i:59614;s:3:\"src\";s:11:\"fontawesome\";}i:223;a:4:{s:3:\"uid\";s:32:\"f04a5d24e9e659145b966739c4fde82a\";s:3:\"css\";s:8:\"bookmark\";s:4:\"code\";i:59615;s:3:\"src\";s:11:\"fontawesome\";}i:224;a:4:{s:3:\"uid\";s:32:\"2f5ef6f6b7aaebc56458ab4e865beff5\";s:3:\"css\";s:14:\"bookmark-empty\";s:4:\"code\";i:59616;s:3:\"src\";s:11:\"fontawesome\";}i:225;a:4:{s:3:\"uid\";s:32:\"57a0ac800df728aad61a7cf9e12f5fef\";s:3:\"css\";s:4:\"flag\";s:4:\"code\";i:59617;s:3:\"src\";s:11:\"fontawesome\";}i:226;a:4:{s:3:\"uid\";s:32:\"6c83092421441296f5c4e8074b0cf32c\";s:3:\"css\";s:10:\"flag-empty\";s:4:\"code\";i:59618;s:3:\"src\";s:11:\"fontawesome\";}i:227;a:4:{s:3:\"uid\";s:32:\"d7a614bd701f6712e8e3b2be124899e1\";s:3:\"css\";s:14:\"flag-checkered\";s:4:\"code\";i:59619;s:3:\"src\";s:11:\"fontawesome\";}i:228;a:4:{s:3:\"uid\";s:32:\"acf41aa4018e58d49525665469e35665\";s:3:\"css\";s:9:\"thumbs-up\";s:4:\"code\";i:59620;s:3:\"src\";s:11:\"fontawesome\";}i:229;a:4:{s:3:\"uid\";s:32:\"7533e68038fc6d520ede7a7ffa0a2f64\";s:3:\"css\";s:11:\"thumbs-down\";s:4:\"code\";i:59621;s:3:\"src\";s:11:\"fontawesome\";}i:230;a:4:{s:3:\"uid\";s:32:\"5e2ab018e3044337bcef5f7e94098ea1\";s:3:\"css\";s:13:\"thumbs-up-alt\";s:4:\"code\";i:59622;s:3:\"src\";s:11:\"fontawesome\";}i:231;a:4:{s:3:\"uid\";s:32:\"ddcd918b502642705838815d40aea9e3\";s:3:\"css\";s:15:\"thumbs-down-alt\";s:4:\"code\";i:59623;s:3:\"src\";s:11:\"fontawesome\";}i:232;a:4:{s:3:\"uid\";s:32:\"9a76bc135eac17d2c8b8ad4a5774fc87\";s:3:\"css\";s:8:\"download\";s:4:\"code\";i:59624;s:3:\"src\";s:11:\"fontawesome\";}i:233;a:4:{s:3:\"uid\";s:32:\"eeec3208c90b7b48e804919d0d2d4a41\";s:3:\"css\";s:6:\"upload\";s:4:\"code\";i:59625;s:3:\"src\";s:11:\"fontawesome\";}i:234;a:4:{s:3:\"uid\";s:32:\"f5999a012fc3752386635ec02a858447\";s:3:\"css\";s:14:\"download-cloud\";s:4:\"code\";i:59626;s:3:\"src\";s:11:\"fontawesome\";}i:235;a:4:{s:3:\"uid\";s:32:\"de2fc7a5c986ab8c622f63455d7cf814\";s:3:\"css\";s:12:\"upload-cloud\";s:4:\"code\";i:59627;s:3:\"src\";s:11:\"fontawesome\";}i:236;a:4:{s:3:\"uid\";s:32:\"c6be5a58ee4e63a5ec399c2b0d15cf2c\";s:3:\"css\";s:5:\"reply\";s:4:\"code\";i:59628;s:3:\"src\";s:11:\"fontawesome\";}i:237;a:4:{s:3:\"uid\";s:32:\"1b5597a3bacaeca6600e88ae36d02e0a\";s:3:\"css\";s:9:\"reply-all\";s:4:\"code\";i:59629;s:3:\"src\";s:11:\"fontawesome\";}i:238;a:4:{s:3:\"uid\";s:32:\"3d39c828009c04ddb6764c0b04cd2439\";s:3:\"css\";s:7:\"forward\";s:4:\"code\";i:59630;s:3:\"src\";s:11:\"fontawesome\";}i:239;a:4:{s:3:\"uid\";s:32:\"ab95e1351ebaec5850101097cbf7097f\";s:3:\"css\";s:10:\"quote-left\";s:4:\"code\";i:59631;s:3:\"src\";s:11:\"fontawesome\";}i:240;a:4:{s:3:\"uid\";s:32:\"d745d7c05b94e609decabade2cae12cb\";s:3:\"css\";s:11:\"quote-right\";s:4:\"code\";i:59632;s:3:\"src\";s:11:\"fontawesome\";}i:241;a:4:{s:3:\"uid\";s:32:\"7034e4d22866af82bef811f52fb1ba46\";s:3:\"css\";s:4:\"code\";s:4:\"code\";i:59633;s:3:\"src\";s:11:\"fontawesome\";}i:242;a:4:{s:3:\"uid\";s:32:\"895405dfac8a3b7b2f23b183c6608ee6\";s:3:\"css\";s:6:\"export\";s:4:\"code\";i:59634;s:3:\"src\";s:11:\"fontawesome\";}i:243;a:4:{s:3:\"uid\";s:32:\"13b9eebfea581ad8e756ee7a18a7cba8\";s:3:\"css\";s:10:\"export-alt\";s:4:\"code\";i:59635;s:3:\"src\";s:11:\"fontawesome\";}i:244;a:4:{s:3:\"uid\";s:32:\"4aad6bb50b02c18508aae9cbe14e784e\";s:3:\"css\";s:5:\"share\";s:4:\"code\";i:59636;s:3:\"src\";s:11:\"fontawesome\";}i:245;a:4:{s:3:\"uid\";s:32:\"4c1f3c0b331d5f72c6a38d7bb7632675\";s:3:\"css\";s:13:\"share-squared\";s:4:\"code\";i:59637;s:3:\"src\";s:11:\"fontawesome\";}i:246;a:4:{s:3:\"uid\";s:32:\"d35a1d35efeb784d1dc9ac18b9b6c2b6\";s:3:\"css\";s:6:\"pencil\";s:4:\"code\";i:59638;s:3:\"src\";s:11:\"fontawesome\";}i:247;a:4:{s:3:\"uid\";s:32:\"44fae3bfdd54754dc68ec50d37efea37\";s:3:\"css\";s:14:\"pencil-squared\";s:4:\"code\";i:59639;s:3:\"src\";s:11:\"fontawesome\";}i:248;a:4:{s:3:\"uid\";s:32:\"41087bc74d4b20b55059c60a33bf4008\";s:3:\"css\";s:4:\"edit\";s:4:\"code\";i:59640;s:3:\"src\";s:11:\"fontawesome\";}i:249;a:4:{s:3:\"uid\";s:32:\"7277ded7695b2a307a5f9d50097bb64c\";s:3:\"css\";s:5:\"print\";s:4:\"code\";i:59641;s:3:\"src\";s:11:\"fontawesome\";}i:250;a:4:{s:3:\"uid\";s:32:\"09feb4465d9bd1364f4e301c9ddbaa92\";s:3:\"css\";s:7:\"retweet\";s:4:\"code\";i:59642;s:3:\"src\";s:11:\"fontawesome\";}i:251;a:4:{s:3:\"uid\";s:32:\"ecb97add13804c190456025e43ec003b\";s:3:\"css\";s:8:\"keyboard\";s:4:\"code\";i:59643;s:3:\"src\";s:11:\"fontawesome\";}i:252;a:4:{s:3:\"uid\";s:32:\"0133387f2069a1b3168942b84d81dd3a\";s:3:\"css\";s:7:\"gamepad\";s:4:\"code\";i:59644;s:3:\"src\";s:11:\"fontawesome\";}i:253;a:4:{s:3:\"uid\";s:32:\"85528017f1e6053b2253785c31047f44\";s:3:\"css\";s:7:\"comment\";s:4:\"code\";i:59645;s:3:\"src\";s:11:\"fontawesome\";}i:254;a:4:{s:3:\"uid\";s:32:\"dcedf50ab1ede3283d7a6c70e2fe32f3\";s:3:\"css\";s:4:\"chat\";s:4:\"code\";i:59646;s:3:\"src\";s:11:\"fontawesome\";}i:255;a:4:{s:3:\"uid\";s:32:\"9c1376672bb4f1ed616fdd78a23667e9\";s:3:\"css\";s:13:\"comment-empty\";s:4:\"code\";i:59647;s:3:\"src\";s:11:\"fontawesome\";}i:256;a:4:{s:3:\"uid\";s:32:\"31951fbb9820ed0690f675b3d495c8da\";s:3:\"css\";s:10:\"chat-empty\";s:4:\"code\";i:59648;s:3:\"src\";s:11:\"fontawesome\";}i:257;a:4:{s:3:\"uid\";s:32:\"cd21cbfb28ad4d903cede582157f65dc\";s:3:\"css\";s:4:\"bell\";s:4:\"code\";i:59649;s:3:\"src\";s:11:\"fontawesome\";}i:258;a:4:{s:3:\"uid\";s:32:\"671f29fa10dda08074a4c6a341bb4f39\";s:3:\"css\";s:8:\"bell-alt\";s:4:\"code\";i:59650;s:3:\"src\";s:11:\"fontawesome\";}i:259;a:4:{s:3:\"uid\";s:32:\"563683020e0bf9f22f3f055a69b5c57a\";s:3:\"css\";s:8:\"bell-off\";s:4:\"code\";i:59651;s:3:\"src\";s:11:\"fontawesome\";}i:260;a:4:{s:3:\"uid\";s:32:\"8a074400a056c59d389f2d0517281bd5\";s:3:\"css\";s:14:\"bell-off-empty\";s:4:\"code\";i:59652;s:3:\"src\";s:11:\"fontawesome\";}i:261;a:4:{s:3:\"uid\";s:32:\"00391fac5d419345ffcccd95b6f76263\";s:3:\"css\";s:13:\"attention-alt\";s:4:\"code\";i:59653;s:3:\"src\";s:11:\"fontawesome\";}i:262;a:4:{s:3:\"uid\";s:32:\"c76b7947c957c9b78b11741173c8349b\";s:3:\"css\";s:9:\"attention\";s:4:\"code\";i:59654;s:3:\"src\";s:11:\"fontawesome\";}i:263;a:4:{s:3:\"uid\";s:32:\"b035c28eba2b35c6ffe92aee8b0df507\";s:3:\"css\";s:17:\"attention-circled\";s:4:\"code\";i:59655;s:3:\"src\";s:11:\"fontawesome\";}i:264;a:4:{s:3:\"uid\";s:32:\"0d08dbb1dd648a43bdea81b7e6c9e036\";s:3:\"css\";s:8:\"location\";s:4:\"code\";i:59656;s:3:\"src\";s:11:\"fontawesome\";}i:265;a:4:{s:3:\"uid\";s:32:\"921e3974e54ff9e8b7cd906a3dc74636\";s:3:\"css\";s:9:\"direction\";s:4:\"code\";i:59657;s:3:\"src\";s:11:\"fontawesome\";}i:266;a:4:{s:3:\"uid\";s:32:\"e5d624264734620fa9f98d59e6dc941f\";s:3:\"css\";s:7:\"compass\";s:4:\"code\";i:59658;s:3:\"src\";s:11:\"fontawesome\";}i:267;a:4:{s:3:\"uid\";s:32:\"bbfb51903f40597f0b70fd75bc7b5cac\";s:3:\"css\";s:5:\"trash\";s:4:\"code\";i:59659;s:3:\"src\";s:11:\"fontawesome\";}i:268;a:4:{s:3:\"uid\";s:32:\"f48ae54adfb27d8ada53d0fd9e34ee10\";s:3:\"css\";s:11:\"trash-empty\";s:4:\"code\";i:59660;s:3:\"src\";s:11:\"fontawesome\";}i:269;a:4:{s:3:\"uid\";s:32:\"1b5a5d7b7e3c71437f5a26befdd045ed\";s:3:\"css\";s:3:\"doc\";s:4:\"code\";i:59661;s:3:\"src\";s:11:\"fontawesome\";}i:270;a:4:{s:3:\"uid\";s:32:\"c8585e1e5b0467f28b70bce765d5840c\";s:3:\"css\";s:4:\"docs\";s:4:\"code\";i:59662;s:3:\"src\";s:11:\"fontawesome\";}i:271;a:4:{s:3:\"uid\";s:32:\"5408be43f7c42bccee419c6be53fdef5\";s:3:\"css\";s:8:\"doc-text\";s:4:\"code\";i:59663;s:3:\"src\";s:11:\"fontawesome\";}i:272;a:4:{s:3:\"uid\";s:32:\"178053298e3e5b03551d754d4b9acd8b\";s:3:\"css\";s:7:\"doc-inv\";s:4:\"code\";i:59664;s:3:\"src\";s:11:\"fontawesome\";}i:273;a:4:{s:3:\"uid\";s:32:\"c08a1cde48d96cba21d8c05fa7d7feb1\";s:3:\"css\";s:12:\"doc-text-inv\";s:4:\"code\";i:59665;s:3:\"src\";s:11:\"fontawesome\";}i:274;a:4:{s:3:\"uid\";s:32:\"9daa1fdf0838118518a7e22715e83abc\";s:3:\"css\";s:8:\"file-pdf\";s:4:\"code\";i:59666;s:3:\"src\";s:11:\"fontawesome\";}i:275;a:4:{s:3:\"uid\";s:32:\"310ffd629da85142bc8669f010556f2d\";s:3:\"css\";s:9:\"file-word\";s:4:\"code\";i:59667;s:3:\"src\";s:11:\"fontawesome\";}i:276;a:4:{s:3:\"uid\";s:32:\"f761c3bbe16ba2d332914ecb28e7a042\";s:3:\"css\";s:10:\"file-excel\";s:4:\"code\";i:59668;s:3:\"src\";s:11:\"fontawesome\";}i:277;a:4:{s:3:\"uid\";s:32:\"edcd4022de8d8df266ef7c42d2658ca5\";s:3:\"css\";s:15:\"file-powerpoint\";s:4:\"code\";i:59669;s:3:\"src\";s:11:\"fontawesome\";}i:278;a:4:{s:3:\"uid\";s:32:\"3c961c1a8d874815856fc6637dc5a13c\";s:3:\"css\";s:10:\"file-image\";s:4:\"code\";i:59670;s:3:\"src\";s:11:\"fontawesome\";}i:279;a:4:{s:3:\"uid\";s:32:\"e80ae555c1413a4ec18b33fb348b4049\";s:3:\"css\";s:12:\"file-archive\";s:4:\"code\";i:59671;s:3:\"src\";s:11:\"fontawesome\";}i:280;a:4:{s:3:\"uid\";s:32:\"81db033e704eb7c586a365559d7c0f36\";s:3:\"css\";s:10:\"file-audio\";s:4:\"code\";i:59672;s:3:\"src\";s:11:\"fontawesome\";}i:281;a:4:{s:3:\"uid\";s:32:\"dd69d9aa589ea7bc0a82a3fe67039f4b\";s:3:\"css\";s:10:\"file-video\";s:4:\"code\";i:59673;s:3:\"src\";s:11:\"fontawesome\";}i:282;a:4:{s:3:\"uid\";s:32:\"26613a2e6bc41593c54bead46f8c8ee3\";s:3:\"css\";s:9:\"file-code\";s:4:\"code\";i:59674;s:3:\"src\";s:11:\"fontawesome\";}i:283;a:4:{s:3:\"uid\";s:32:\"f8aa663c489bcbd6e68ec8147dca841e\";s:3:\"css\";s:6:\"folder\";s:4:\"code\";i:59675;s:3:\"src\";s:11:\"fontawesome\";}i:284;a:4:{s:3:\"uid\";s:32:\"c95735c17a10af81448c7fed98a04546\";s:3:\"css\";s:11:\"folder-open\";s:4:\"code\";i:59676;s:3:\"src\";s:11:\"fontawesome\";}i:285;a:4:{s:3:\"uid\";s:32:\"b091a8bd0fdade174951f17d936f51e4\";s:3:\"css\";s:12:\"folder-empty\";s:4:\"code\";i:59677;s:3:\"src\";s:11:\"fontawesome\";}i:286;a:4:{s:3:\"uid\";s:32:\"6533bdc16ab201eb3f3b27ce989cab33\";s:3:\"css\";s:17:\"folder-open-empty\";s:4:\"code\";i:59678;s:3:\"src\";s:11:\"fontawesome\";}i:287;a:4:{s:3:\"uid\";s:32:\"04ff8d6592fe548b332b27ed87ce397a\";s:3:\"css\";s:3:\"box\";s:4:\"code\";i:59679;s:3:\"src\";s:11:\"fontawesome\";}i:288;a:4:{s:3:\"uid\";s:32:\"72b1277834cba5b7944b0a6cac7ddb0d\";s:3:\"css\";s:3:\"rss\";s:4:\"code\";i:59680;s:3:\"src\";s:11:\"fontawesome\";}i:289;a:4:{s:3:\"uid\";s:32:\"de5f0a564ccf8816325330e292e11533\";s:3:\"css\";s:11:\"rss-squared\";s:4:\"code\";i:59681;s:3:\"src\";s:11:\"fontawesome\";}i:290;a:4:{s:3:\"uid\";s:32:\"9f7e588c66cfd6891f6f507cf6f6596b\";s:3:\"css\";s:5:\"phone\";s:4:\"code\";i:59682;s:3:\"src\";s:11:\"fontawesome\";}i:291;a:4:{s:3:\"uid\";s:32:\"ec488dfd1f548948c09671ca5a60ec92\";s:3:\"css\";s:13:\"phone-squared\";s:4:\"code\";i:59683;s:3:\"src\";s:11:\"fontawesome\";}i:292;a:4:{s:3:\"uid\";s:32:\"5cbe092278ff71fc27c920298b0f3ca3\";s:3:\"css\";s:3:\"fax\";s:4:\"code\";i:59684;s:3:\"src\";s:11:\"fontawesome\";}i:293;a:4:{s:3:\"uid\";s:32:\"559647a6f430b3aeadbecd67194451dd\";s:3:\"css\";s:4:\"menu\";s:4:\"code\";i:59685;s:3:\"src\";s:11:\"fontawesome\";}i:294;a:4:{s:3:\"uid\";s:32:\"e99461abfef3923546da8d745372c995\";s:3:\"css\";s:3:\"cog\";s:4:\"code\";i:59686;s:3:\"src\";s:11:\"fontawesome\";}i:295;a:4:{s:3:\"uid\";s:32:\"98687378abd1faf8f6af97c254eb6cd6\";s:3:\"css\";s:7:\"cog-alt\";s:4:\"code\";i:59687;s:3:\"src\";s:11:\"fontawesome\";}i:296;a:4:{s:3:\"uid\";s:32:\"5bb103cd29de77e0e06a52638527b575\";s:3:\"css\";s:6:\"wrench\";s:4:\"code\";i:59688;s:3:\"src\";s:11:\"fontawesome\";}i:297;a:4:{s:3:\"uid\";s:32:\"21b42d3c3e6be44c3cc3d73042faa216\";s:3:\"css\";s:7:\"sliders\";s:4:\"code\";i:59689;s:3:\"src\";s:11:\"fontawesome\";}i:298;a:4:{s:3:\"uid\";s:32:\"9affc98d652b86628d650ee58dbf0357\";s:3:\"css\";s:6:\"basket\";s:4:\"code\";i:59690;s:3:\"src\";s:11:\"fontawesome\";}i:299;a:4:{s:3:\"uid\";s:32:\"cddbeffea9d90c5db93d5d3e77b8893e\";s:3:\"css\";s:9:\"cart-plus\";s:4:\"code\";i:59691;s:3:\"src\";s:11:\"fontawesome\";}i:300;a:4:{s:3:\"uid\";s:32:\"93c35534e6b079466c4676cdedcdb7c1\";s:3:\"css\";s:15:\"cart-arrow-down\";s:4:\"code\";i:59692;s:3:\"src\";s:11:\"fontawesome\";}i:301;a:4:{s:3:\"uid\";s:32:\"531bc468eecbb8867d822f1c11f1e039\";s:3:\"css\";s:8:\"calendar\";s:4:\"code\";i:59693;s:3:\"src\";s:11:\"fontawesome\";}i:302;a:4:{s:3:\"uid\";s:32:\"ead4c82d04d7758db0f076584893a8c1\";s:3:\"css\";s:14:\"calendar-empty\";s:4:\"code\";i:59694;s:3:\"src\";s:11:\"fontawesome\";}i:303;a:4:{s:3:\"uid\";s:32:\"3a00327e61b997b58518bd43ed83c3df\";s:3:\"css\";s:5:\"login\";s:4:\"code\";i:59695;s:3:\"src\";s:11:\"fontawesome\";}i:304;a:4:{s:3:\"uid\";s:32:\"0d20938846444af8deb1920dc85a29fb\";s:3:\"css\";s:6:\"logout\";s:4:\"code\";i:59696;s:3:\"src\";s:11:\"fontawesome\";}i:305;a:4:{s:3:\"uid\";s:32:\"19c50c52858a81de58f9db488aba77bc\";s:3:\"css\";s:3:\"mic\";s:4:\"code\";i:59697;s:3:\"src\";s:11:\"fontawesome\";}i:306;a:4:{s:3:\"uid\";s:32:\"43c629249e2cca7e73cd4ef410c9551f\";s:3:\"css\";s:4:\"mute\";s:4:\"code\";i:59698;s:3:\"src\";s:11:\"fontawesome\";}i:307;a:4:{s:3:\"uid\";s:32:\"e44601720c64e6bb6a2d5cba6b0c588c\";s:3:\"css\";s:10:\"volume-off\";s:4:\"code\";i:59699;s:3:\"src\";s:11:\"fontawesome\";}i:308;a:4:{s:3:\"uid\";s:32:\"fee6e00f36e8ca8ef3e4a62caa213bf6\";s:3:\"css\";s:11:\"volume-down\";s:4:\"code\";i:59700;s:3:\"src\";s:11:\"fontawesome\";}i:309;a:4:{s:3:\"uid\";s:32:\"76857a03fbaa6857fe063b6c25aa98ed\";s:3:\"css\";s:9:\"volume-up\";s:4:\"code\";i:59701;s:3:\"src\";s:11:\"fontawesome\";}i:310;a:4:{s:3:\"uid\";s:32:\"f27bba41a700af51a4dd23cf4edea61d\";s:3:\"css\";s:10:\"headphones\";s:4:\"code\";i:59702;s:3:\"src\";s:11:\"fontawesome\";}i:311;a:4:{s:3:\"uid\";s:32:\"598a5f2bcf3521d1615de8e1881ccd17\";s:3:\"css\";s:5:\"clock\";s:4:\"code\";i:59703;s:3:\"src\";s:11:\"fontawesome\";}i:312;a:4:{s:3:\"uid\";s:32:\"5278ef7773e948d56c4d442c8c8c98cf\";s:3:\"css\";s:9:\"lightbulb\";s:4:\"code\";i:59704;s:3:\"src\";s:11:\"fontawesome\";}i:313;a:4:{s:3:\"uid\";s:32:\"98d9c83c1ee7c2c25af784b518c522c5\";s:3:\"css\";s:5:\"block\";s:4:\"code\";i:59705;s:3:\"src\";s:11:\"fontawesome\";}i:314;a:4:{s:3:\"uid\";s:32:\"e594fc6e5870b4ab7e49f52571d52577\";s:3:\"css\";s:11:\"resize-full\";s:4:\"code\";i:59706;s:3:\"src\";s:11:\"fontawesome\";}i:315;a:4:{s:3:\"uid\";s:32:\"b013f6403e5ab0326614e68d1850fd6b\";s:3:\"css\";s:15:\"resize-full-alt\";s:4:\"code\";i:59707;s:3:\"src\";s:11:\"fontawesome\";}i:316;a:4:{s:3:\"uid\";s:32:\"3c24ee33c9487bbf18796ca6dffa1905\";s:3:\"css\";s:12:\"resize-small\";s:4:\"code\";i:59708;s:3:\"src\";s:11:\"fontawesome\";}i:317;a:4:{s:3:\"uid\";s:32:\"d3b3f17bc3eb7cd809a07bbd4d178bee\";s:3:\"css\";s:15:\"resize-vertical\";s:4:\"code\";i:59709;s:3:\"src\";s:11:\"fontawesome\";}i:318;a:4:{s:3:\"uid\";s:32:\"3c73d058e4589b65a8d959c0fc8f153d\";s:3:\"css\";s:17:\"resize-horizontal\";s:4:\"code\";i:59710;s:3:\"src\";s:11:\"fontawesome\";}i:319;a:4:{s:3:\"uid\";s:32:\"6605ee6441bf499ffa3c63d3c7409471\";s:3:\"css\";s:4:\"move\";s:4:\"code\";i:59711;s:3:\"src\";s:11:\"fontawesome\";}i:320;a:4:{s:3:\"uid\";s:32:\"0b2b66e526028a6972d51a6f10281b4b\";s:3:\"css\";s:7:\"zoom-in\";s:4:\"code\";i:59712;s:3:\"src\";s:11:\"fontawesome\";}i:321;a:4:{s:3:\"uid\";s:32:\"d25d10efa900f529ad1d275657cfd30e\";s:3:\"css\";s:8:\"zoom-out\";s:4:\"code\";i:59713;s:3:\"src\";s:11:\"fontawesome\";}i:322;a:4:{s:3:\"uid\";s:32:\"c53068fe21c8410b0a098b4c52c3d37e\";s:3:\"css\";s:13:\"down-circled2\";s:4:\"code\";i:59714;s:3:\"src\";s:11:\"fontawesome\";}i:323;a:4:{s:3:\"uid\";s:32:\"128d63150a41800e0beff55235269542\";s:3:\"css\";s:11:\"up-circled2\";s:4:\"code\";i:59715;s:3:\"src\";s:11:\"fontawesome\";}i:324;a:4:{s:3:\"uid\";s:32:\"a65ca48f3fe7d6e5c60edbd943f4fdb6\";s:3:\"css\";s:13:\"left-circled2\";s:4:\"code\";i:59716;s:3:\"src\";s:11:\"fontawesome\";}i:325;a:4:{s:3:\"uid\";s:32:\"d0673ef38e1c458a6de52aad2a2f800d\";s:3:\"css\";s:14:\"right-circled2\";s:4:\"code\";i:59717;s:3:\"src\";s:11:\"fontawesome\";}i:326;a:4:{s:3:\"uid\";s:32:\"2d6150442079cbda7df64522dc24f482\";s:3:\"css\";s:8:\"down-dir\";s:4:\"code\";i:59718;s:3:\"src\";s:11:\"fontawesome\";}i:327;a:4:{s:3:\"uid\";s:32:\"80cd1022bd9ea151d554bec1fa05f2de\";s:3:\"css\";s:6:\"up-dir\";s:4:\"code\";i:59719;s:3:\"src\";s:11:\"fontawesome\";}i:328;a:4:{s:3:\"uid\";s:32:\"9dc654095085167524602c9acc0c5570\";s:3:\"css\";s:8:\"left-dir\";s:4:\"code\";i:59720;s:3:\"src\";s:11:\"fontawesome\";}i:329;a:4:{s:3:\"uid\";s:32:\"fb1c799ffe5bf8fb7f8bcb647c8fe9e6\";s:3:\"css\";s:9:\"right-dir\";s:4:\"code\";i:59721;s:3:\"src\";s:11:\"fontawesome\";}i:330;a:4:{s:3:\"uid\";s:32:\"ccddff8e8670dcd130e3cb55fdfc2fd0\";s:3:\"css\";s:9:\"down-open\";s:4:\"code\";i:59722;s:3:\"src\";s:11:\"fontawesome\";}i:331;a:4:{s:3:\"uid\";s:32:\"d870630ff8f81e6de3958ecaeac532f2\";s:3:\"css\";s:9:\"left-open\";s:4:\"code\";i:59723;s:3:\"src\";s:11:\"fontawesome\";}i:332;a:4:{s:3:\"uid\";s:32:\"399ef63b1e23ab1b761dfbb5591fa4da\";s:3:\"css\";s:10:\"right-open\";s:4:\"code\";i:59724;s:3:\"src\";s:11:\"fontawesome\";}i:333;a:4:{s:3:\"uid\";s:32:\"fe6697b391355dec12f3d86d6d490397\";s:3:\"css\";s:7:\"up-open\";s:4:\"code\";i:59725;s:3:\"src\";s:11:\"fontawesome\";}i:334;a:4:{s:3:\"uid\";s:32:\"f3f90c8c89795da30f7444634476ea4f\";s:3:\"css\";s:10:\"angle-left\";s:4:\"code\";i:59726;s:3:\"src\";s:11:\"fontawesome\";}i:335;a:4:{s:3:\"uid\";s:32:\"7bf14281af5633a597f85b061ef1cfb9\";s:3:\"css\";s:11:\"angle-right\";s:4:\"code\";i:59727;s:3:\"src\";s:11:\"fontawesome\";}i:336;a:4:{s:3:\"uid\";s:32:\"5de9370846a26947e03f63142a3f1c07\";s:3:\"css\";s:8:\"angle-up\";s:4:\"code\";i:59728;s:3:\"src\";s:11:\"fontawesome\";}i:337;a:4:{s:3:\"uid\";s:32:\"e4dde1992f787163e2e2b534b8c8067d\";s:3:\"css\";s:10:\"angle-down\";s:4:\"code\";i:59729;s:3:\"src\";s:11:\"fontawesome\";}i:338;a:4:{s:3:\"uid\";s:32:\"8933c2579166c2ee56ae40dc6a0b4dc6\";s:3:\"css\";s:18:\"angle-circled-left\";s:4:\"code\";i:59730;s:3:\"src\";s:11:\"fontawesome\";}i:339;a:4:{s:3:\"uid\";s:32:\"94089b37297572e936b0943bcfa041d3\";s:3:\"css\";s:19:\"angle-circled-right\";s:4:\"code\";i:59731;s:3:\"src\";s:11:\"fontawesome\";}i:340;a:4:{s:3:\"uid\";s:32:\"8cbd5bcfb00043b8094fd7ac21ae5e06\";s:3:\"css\";s:16:\"angle-circled-up\";s:4:\"code\";i:59732;s:3:\"src\";s:11:\"fontawesome\";}i:341;a:4:{s:3:\"uid\";s:32:\"c35e0796f6f806945a44b1655ce7bbe7\";s:3:\"css\";s:18:\"angle-circled-down\";s:4:\"code\";i:59733;s:3:\"src\";s:11:\"fontawesome\";}i:342;a:4:{s:3:\"uid\";s:32:\"745f12abe1472d14f8f658de7e5aba66\";s:3:\"css\";s:17:\"angle-double-left\";s:4:\"code\";i:59734;s:3:\"src\";s:11:\"fontawesome\";}i:343;a:4:{s:3:\"uid\";s:32:\"fdfbd1fcbd4cb229716a810801a5f207\";s:3:\"css\";s:18:\"angle-double-right\";s:4:\"code\";i:59735;s:3:\"src\";s:11:\"fontawesome\";}i:344;a:4:{s:3:\"uid\";s:32:\"63b3012c8cbe3654ba5bea598235aa3a\";s:3:\"css\";s:15:\"angle-double-up\";s:4:\"code\";i:59736;s:3:\"src\";s:11:\"fontawesome\";}i:345;a:4:{s:3:\"uid\";s:32:\"dfec4ffa849d8594c2e4b86f6320b8a6\";s:3:\"css\";s:17:\"angle-double-down\";s:4:\"code\";i:59737;s:3:\"src\";s:11:\"fontawesome\";}i:346;a:4:{s:3:\"uid\";s:32:\"f06941dfcb90dc24b987d810898c4310\";s:3:\"css\";s:4:\"down\";s:4:\"code\";i:59738;s:3:\"src\";s:11:\"fontawesome\";}i:347;a:4:{s:3:\"uid\";s:32:\"f6d72aa5ef8e8f0e553012af9a29a87e\";s:3:\"css\";s:4:\"left\";s:4:\"code\";i:59739;s:3:\"src\";s:11:\"fontawesome\";}i:348;a:4:{s:3:\"uid\";s:32:\"fb94e23ae1e7660aa63cc5f351ec7560\";s:3:\"css\";s:5:\"right\";s:4:\"code\";i:59740;s:3:\"src\";s:11:\"fontawesome\";}i:349;a:4:{s:3:\"uid\";s:32:\"720f98e7580b7987c8dc542513d1d440\";s:3:\"css\";s:2:\"up\";s:4:\"code\";i:59741;s:3:\"src\";s:11:\"fontawesome\";}i:350;a:4:{s:3:\"uid\";s:32:\"1c4068ed75209e21af36017df8871802\";s:3:\"css\";s:8:\"down-big\";s:4:\"code\";i:59742;s:3:\"src\";s:11:\"fontawesome\";}i:351;a:4:{s:3:\"uid\";s:32:\"555ef8c86832e686fef85f7af2eb7cde\";s:3:\"css\";s:8:\"left-big\";s:4:\"code\";i:59743;s:3:\"src\";s:11:\"fontawesome\";}i:352;a:4:{s:3:\"uid\";s:32:\"ad6b3fbb5324abe71a9c0b6609cbb9f1\";s:3:\"css\";s:9:\"right-big\";s:4:\"code\";i:59744;s:3:\"src\";s:11:\"fontawesome\";}i:353;a:4:{s:3:\"uid\";s:32:\"95376bf082bfec6ce06ea1cda7bd7ead\";s:3:\"css\";s:6:\"up-big\";s:4:\"code\";i:59745;s:3:\"src\";s:11:\"fontawesome\";}i:354;a:4:{s:3:\"uid\";s:32:\"aa0d9175a3919a260a4012d560e9f01e\";s:3:\"css\";s:10:\"right-hand\";s:4:\"code\";i:59746;s:3:\"src\";s:11:\"fontawesome\";}i:355;a:4:{s:3:\"uid\";s:32:\"3d99d345645f43e31e9e0fd48be37e9c\";s:3:\"css\";s:9:\"left-hand\";s:4:\"code\";i:59747;s:3:\"src\";s:11:\"fontawesome\";}i:356;a:4:{s:3:\"uid\";s:32:\"034e645aa3bad56ce68389a816547c87\";s:3:\"css\";s:7:\"up-hand\";s:4:\"code\";i:59748;s:3:\"src\";s:11:\"fontawesome\";}i:357;a:4:{s:3:\"uid\";s:32:\"beb43b8df442eac4b8d35f528d5ed5af\";s:3:\"css\";s:9:\"down-hand\";s:4:\"code\";i:59749;s:3:\"src\";s:11:\"fontawesome\";}i:358;a:4:{s:3:\"uid\";s:32:\"6855131631509e8795730ce062045ea1\";s:3:\"css\";s:12:\"left-circled\";s:4:\"code\";i:59750;s:3:\"src\";s:11:\"fontawesome\";}i:359;a:4:{s:3:\"uid\";s:32:\"19b04848ae7332d2c0ea2a9e19064037\";s:3:\"css\";s:13:\"right-circled\";s:4:\"code\";i:59751;s:3:\"src\";s:11:\"fontawesome\";}i:360;a:4:{s:3:\"uid\";s:32:\"2b8e9b027181aafd210bf29c5486d4a0\";s:3:\"css\";s:10:\"up-circled\";s:4:\"code\";i:59752;s:3:\"src\";s:11:\"fontawesome\";}i:361;a:4:{s:3:\"uid\";s:32:\"55ae6ea25cd707fe34af5b52b2001cdc\";s:3:\"css\";s:12:\"down-circled\";s:4:\"code\";i:59753;s:3:\"src\";s:11:\"fontawesome\";}i:362;a:4:{s:3:\"uid\";s:32:\"bc71f4c6e53394d5ba46b063040014f1\";s:3:\"css\";s:2:\"cw\";s:4:\"code\";i:59754;s:3:\"src\";s:11:\"fontawesome\";}i:363;a:4:{s:3:\"uid\";s:32:\"f9c3205df26e7778abac86183aefdc99\";s:3:\"css\";s:3:\"ccw\";s:4:\"code\";i:59755;s:3:\"src\";s:11:\"fontawesome\";}i:364;a:4:{s:3:\"uid\";s:32:\"a73c5deb486c8d66249811642e5d719a\";s:3:\"css\";s:9:\"arrows-cw\";s:4:\"code\";i:59756;s:3:\"src\";s:11:\"fontawesome\";}i:365;a:4:{s:3:\"uid\";s:32:\"dea706a9bd3144316ce37406ec10f469\";s:3:\"css\";s:8:\"level-up\";s:4:\"code\";i:59757;s:3:\"src\";s:11:\"fontawesome\";}i:366;a:4:{s:3:\"uid\";s:32:\"4684e690bad65fb618329dfe52017475\";s:3:\"css\";s:10:\"level-down\";s:4:\"code\";i:59758;s:3:\"src\";s:11:\"fontawesome\";}i:367;a:4:{s:3:\"uid\";s:32:\"37c5ab63f10d7ad0b84d0978dcd0c7a8\";s:3:\"css\";s:7:\"shuffle\";s:4:\"code\";i:59759;s:3:\"src\";s:11:\"fontawesome\";}i:368;a:4:{s:3:\"uid\";s:32:\"6020aff067fc3c119cdd75daa5249220\";s:3:\"css\";s:8:\"exchange\";s:4:\"code\";i:59760;s:3:\"src\";s:11:\"fontawesome\";}i:369;a:4:{s:3:\"uid\";s:32:\"d4816c0845aa43767213d45574b3b145\";s:3:\"css\";s:7:\"history\";s:4:\"code\";i:59761;s:3:\"src\";s:11:\"fontawesome\";}i:370;a:4:{s:3:\"uid\";s:32:\"84bb9695b8662fa4783242f84c9e4682\";s:3:\"css\";s:6:\"expand\";s:4:\"code\";i:59762;s:3:\"src\";s:11:\"fontawesome\";}i:371;a:4:{s:3:\"uid\";s:32:\"7960517a504e42aea0641f15bc55fbed\";s:3:\"css\";s:8:\"collapse\";s:4:\"code\";i:59763;s:3:\"src\";s:11:\"fontawesome\";}i:372;a:4:{s:3:\"uid\";s:32:\"ed5a38704f0329e610ee1c92bec3ad3d\";s:3:\"css\";s:12:\"expand-right\";s:4:\"code\";i:59764;s:3:\"src\";s:11:\"fontawesome\";}i:373;a:4:{s:3:\"uid\";s:32:\"ea2ec99fbce03864e593bbf4f302a79d\";s:3:\"css\";s:13:\"collapse-left\";s:4:\"code\";i:59765;s:3:\"src\";s:11:\"fontawesome\";}i:374;a:4:{s:3:\"uid\";s:32:\"ce06b5805120d0c2f8d60cd3f1a4fdb5\";s:3:\"css\";s:4:\"play\";s:4:\"code\";i:59766;s:3:\"src\";s:11:\"fontawesome\";}i:375;a:4:{s:3:\"uid\";s:32:\"5717236f6134afe2d2a278a5c9b3927a\";s:3:\"css\";s:12:\"play-circled\";s:4:\"code\";i:59767;s:3:\"src\";s:11:\"fontawesome\";}i:376;a:4:{s:3:\"uid\";s:32:\"e835d9d0f2ee39ae01b01cc6a6fa24ab\";s:3:\"css\";s:13:\"play-circled2\";s:4:\"code\";i:59768;s:3:\"src\";s:11:\"fontawesome\";}i:377;a:4:{s:3:\"uid\";s:32:\"b624a1e512819d410ddbee84e6918b9d\";s:3:\"css\";s:4:\"stop\";s:4:\"code\";i:59769;s:3:\"src\";s:11:\"fontawesome\";}i:378;a:4:{s:3:\"uid\";s:32:\"0b28050bac9d3facf2f0226db643ece0\";s:3:\"css\";s:5:\"pause\";s:4:\"code\";i:59770;s:3:\"src\";s:11:\"fontawesome\";}i:379;a:4:{s:3:\"uid\";s:32:\"c47efa0e3e74f6ba4c2562c1258fff1f\";s:3:\"css\";s:6:\"to-end\";s:4:\"code\";i:59771;s:3:\"src\";s:11:\"fontawesome\";}i:380;a:4:{s:3:\"uid\";s:32:\"7ea35a8fc7e676c78e99cab2d4bc8653\";s:3:\"css\";s:10:\"to-end-alt\";s:4:\"code\";i:59772;s:3:\"src\";s:11:\"fontawesome\";}i:381;a:4:{s:3:\"uid\";s:32:\"12052b30d23a1a70d6b32962d5464cae\";s:3:\"css\";s:8:\"to-start\";s:4:\"code\";i:59773;s:3:\"src\";s:11:\"fontawesome\";}i:382;a:4:{s:3:\"uid\";s:32:\"6b5450145d620234f07ffcbfbb671074\";s:3:\"css\";s:12:\"to-start-alt\";s:4:\"code\";i:59774;s:3:\"src\";s:11:\"fontawesome\";}i:383;a:4:{s:3:\"uid\";s:32:\"4e511190b60f329d08301eb6869c5130\";s:3:\"css\";s:7:\"fast-fw\";s:4:\"code\";i:59775;s:3:\"src\";s:11:\"fontawesome\";}i:384;a:4:{s:3:\"uid\";s:32:\"b3d902fcead809e3a64c7ddcda497a6c\";s:3:\"css\";s:7:\"fast-bw\";s:4:\"code\";i:59776;s:3:\"src\";s:11:\"fontawesome\";}i:385;a:4:{s:3:\"uid\";s:32:\"91b141af48402743aa3503d0a7007132\";s:3:\"css\";s:5:\"eject\";s:4:\"code\";i:59777;s:3:\"src\";s:11:\"fontawesome\";}i:386;a:4:{s:3:\"uid\";s:32:\"e75c54c282c0bf22186c5c7ec4b03eac\";s:3:\"css\";s:6:\"target\";s:4:\"code\";i:59778;s:3:\"src\";s:11:\"fontawesome\";}i:387;a:4:{s:3:\"uid\";s:32:\"d407a4707f719b042ed2ad28d2619d7e\";s:3:\"css\";s:6:\"signal\";s:4:\"code\";i:59779;s:3:\"src\";s:11:\"fontawesome\";}i:388;a:4:{s:3:\"uid\";s:32:\"cd4bfdae4dc89b175ff49330ce29611a\";s:3:\"css\";s:4:\"wifi\";s:4:\"code\";i:59780;s:3:\"src\";s:11:\"fontawesome\";}i:389;a:4:{s:3:\"uid\";s:32:\"ab656e280958018a7859eba9a1eabbc7\";s:3:\"css\";s:5:\"award\";s:4:\"code\";i:59781;s:3:\"src\";s:11:\"fontawesome\";}i:390;a:4:{s:3:\"uid\";s:32:\"757afacc32d82967975cbb3b45cfb41b\";s:3:\"css\";s:7:\"desktop\";s:4:\"code\";i:59782;s:3:\"src\";s:11:\"fontawesome\";}i:391;a:4:{s:3:\"uid\";s:32:\"500fc1f109021e4b1de4deda2f7ed399\";s:3:\"css\";s:6:\"laptop\";s:4:\"code\";i:59783;s:3:\"src\";s:11:\"fontawesome\";}i:392;a:4:{s:3:\"uid\";s:32:\"f001fc3d4daa7da078e8c971e4f36977\";s:3:\"css\";s:6:\"tablet\";s:4:\"code\";i:59784;s:3:\"src\";s:11:\"fontawesome\";}i:393;a:4:{s:3:\"uid\";s:32:\"0357f7abbc0babf43509669f332e41e6\";s:3:\"css\";s:6:\"mobile\";s:4:\"code\";i:59785;s:3:\"src\";s:11:\"fontawesome\";}i:394;a:4:{s:3:\"uid\";s:32:\"c7a75a25880928fe76981a53eca4f926\";s:3:\"css\";s:5:\"inbox\";s:4:\"code\";i:59786;s:3:\"src\";s:11:\"fontawesome\";}i:395;a:4:{s:3:\"uid\";s:32:\"197375a3cea8cb90b02d06e4ddf1433d\";s:3:\"css\";s:5:\"globe\";s:4:\"code\";i:59787;s:3:\"src\";s:11:\"fontawesome\";}i:396;a:4:{s:3:\"uid\";s:32:\"aa035df0908c4665c269b7b09a5596f3\";s:3:\"css\";s:3:\"sun\";s:4:\"code\";i:59788;s:3:\"src\";s:11:\"fontawesome\";}i:397;a:4:{s:3:\"uid\";s:32:\"2c413e78faf1d6631fd7b094d14c2253\";s:3:\"css\";s:5:\"cloud\";s:4:\"code\";i:59789;s:3:\"src\";s:11:\"fontawesome\";}i:398;a:4:{s:3:\"uid\";s:32:\"3212f42c65d41ed91cb435d0490e29ed\";s:3:\"css\";s:5:\"flash\";s:4:\"code\";i:59790;s:3:\"src\";s:11:\"fontawesome\";}i:399;a:4:{s:3:\"uid\";s:32:\"567e3e257f2cc8fba2c12bf691c9f2d8\";s:3:\"css\";s:4:\"moon\";s:4:\"code\";i:59791;s:3:\"src\";s:11:\"fontawesome\";}i:400;a:4:{s:3:\"uid\";s:32:\"24ca41ab002c09de6e89b28f9d599508\";s:3:\"css\";s:8:\"umbrella\";s:4:\"code\";i:59792;s:3:\"src\";s:11:\"fontawesome\";}i:401;a:4:{s:3:\"uid\";s:32:\"297fe6c2ef08198b03d706ba52f51b7f\";s:3:\"css\";s:6:\"flight\";s:4:\"code\";i:59793;s:3:\"src\";s:11:\"fontawesome\";}i:402;a:4:{s:3:\"uid\";s:32:\"cb36cbe4e2dac9545e32c3d80a7c6e03\";s:3:\"css\";s:11:\"fighter-jet\";s:4:\"code\";i:59794;s:3:\"src\";s:11:\"fontawesome\";}i:403;a:4:{s:3:\"uid\";s:32:\"38575a803c4da31ce20d77e1e1236bcb\";s:3:\"css\";s:11:\"paper-plane\";s:4:\"code\";i:59795;s:3:\"src\";s:11:\"fontawesome\";}i:404;a:4:{s:3:\"uid\";s:32:\"4b2321afcbe0505a70b80abd5c25e09b\";s:3:\"css\";s:17:\"paper-plane-empty\";s:4:\"code\";i:59796;s:3:\"src\";s:11:\"fontawesome\";}i:405;a:4:{s:3:\"uid\";s:32:\"d650df2fd7c4e27d9185d90a1c12a881\";s:3:\"css\";s:13:\"space-shuttle\";s:4:\"code\";i:59797;s:3:\"src\";s:11:\"fontawesome\";}i:406;a:4:{s:3:\"uid\";s:32:\"19e7b342a5e6bd0cd86de6d6208486a4\";s:3:\"css\";s:4:\"leaf\";s:4:\"code\";i:59798;s:3:\"src\";s:11:\"fontawesome\";}i:407;a:4:{s:3:\"uid\";s:32:\"f9cbf7508cd04145ade2800169959eef\";s:3:\"css\";s:4:\"font\";s:4:\"code\";i:59799;s:3:\"src\";s:11:\"fontawesome\";}i:408;a:4:{s:3:\"uid\";s:32:\"02cca871bb69da75e8ee286b7055832c\";s:3:\"css\";s:4:\"bold\";s:4:\"code\";i:59800;s:3:\"src\";s:11:\"fontawesome\";}i:409;a:4:{s:3:\"uid\";s:32:\"bf09b1c6561dc0ced707476e2cd83d29\";s:3:\"css\";s:6:\"medium\";s:4:\"code\";i:59801;s:3:\"src\";s:11:\"fontawesome\";}i:410;a:4:{s:3:\"uid\";s:32:\"a8cb1c217f02b073db3670c061cc54d2\";s:3:\"css\";s:6:\"italic\";s:4:\"code\";i:59802;s:3:\"src\";s:11:\"fontawesome\";}i:411;a:4:{s:3:\"uid\";s:32:\"0c708edd8fae2376b3370aa56d40cf9e\";s:3:\"css\";s:6:\"header\";s:4:\"code\";i:59803;s:3:\"src\";s:11:\"fontawesome\";}i:412;a:4:{s:3:\"uid\";s:32:\"c5845105a87df2ee1999826d90622f6a\";s:3:\"css\";s:9:\"paragraph\";s:4:\"code\";i:59804;s:3:\"src\";s:11:\"fontawesome\";}i:413;a:4:{s:3:\"uid\";s:32:\"c009d417f87d6a27bb5a1cefd30b6cbd\";s:3:\"css\";s:11:\"text-height\";s:4:\"code\";i:59805;s:3:\"src\";s:11:\"fontawesome\";}i:414;a:4:{s:3:\"uid\";s:32:\"13a971bcccd2dda26d4d4eccd8593f8a\";s:3:\"css\";s:10:\"text-width\";s:4:\"code\";i:59806;s:3:\"src\";s:11:\"fontawesome\";}i:415;a:4:{s:3:\"uid\";s:32:\"f4f0e849b805be1f6d76b65581cb3b8b\";s:3:\"css\";s:10:\"align-left\";s:4:\"code\";i:59807;s:3:\"src\";s:11:\"fontawesome\";}i:416;a:4:{s:3:\"uid\";s:32:\"ae6336c46d73af999fe7460c089abb4d\";s:3:\"css\";s:12:\"align-center\";s:4:\"code\";i:59808;s:3:\"src\";s:11:\"fontawesome\";}i:417;a:4:{s:3:\"uid\";s:32:\"e1e7306b47c3c5e6faecce9d32571381\";s:3:\"css\";s:11:\"align-right\";s:4:\"code\";i:59809;s:3:\"src\";s:11:\"fontawesome\";}i:418;a:4:{s:3:\"uid\";s:32:\"25a81737628d1e654a30ad412d7d6dd7\";s:3:\"css\";s:13:\"align-justify\";s:4:\"code\";i:59810;s:3:\"src\";s:11:\"fontawesome\";}i:419;a:4:{s:3:\"uid\";s:32:\"48b87105bd38c20315f1b705b8c7b38c\";s:3:\"css\";s:4:\"list\";s:4:\"code\";i:59811;s:3:\"src\";s:11:\"fontawesome\";}i:420;a:4:{s:3:\"uid\";s:32:\"594e9271c08ff732c04b3bf3117b9040\";s:3:\"css\";s:11:\"indent-left\";s:4:\"code\";i:59812;s:3:\"src\";s:11:\"fontawesome\";}i:421;a:4:{s:3:\"uid\";s:32:\"4d2dfc45d8176b1f26aed973fa84a91e\";s:3:\"css\";s:12:\"indent-right\";s:4:\"code\";i:59813;s:3:\"src\";s:11:\"fontawesome\";}i:422;a:4:{s:3:\"uid\";s:32:\"a2a74f5e7b7d9ba054897d8c795a326a\";s:3:\"css\";s:11:\"list-bullet\";s:4:\"code\";i:59814;s:3:\"src\";s:11:\"fontawesome\";}i:423;a:4:{s:3:\"uid\";s:32:\"f6766a8b042c2453a4e153af03294383\";s:3:\"css\";s:13:\"list-numbered\";s:4:\"code\";i:59815;s:3:\"src\";s:11:\"fontawesome\";}i:424;a:4:{s:3:\"uid\";s:32:\"61c242c9e2134d5864d7fdd57b3c9289\";s:3:\"css\";s:6:\"strike\";s:4:\"code\";i:59816;s:3:\"src\";s:11:\"fontawesome\";}i:425;a:4:{s:3:\"uid\";s:32:\"d4a4a38a40b728f46dad1de4ac950231\";s:3:\"css\";s:9:\"underline\";s:4:\"code\";i:59817;s:3:\"src\";s:11:\"fontawesome\";}i:426;a:4:{s:3:\"uid\";s:32:\"4e88371fb8857dacc1f66afe6314e426\";s:3:\"css\";s:11:\"superscript\";s:4:\"code\";i:59818;s:3:\"src\";s:11:\"fontawesome\";}i:427;a:4:{s:3:\"uid\";s:32:\"3d1c929dbc966992185ce749548c1b2c\";s:3:\"css\";s:9:\"subscript\";s:4:\"code\";i:59819;s:3:\"src\";s:11:\"fontawesome\";}i:428;a:4:{s:3:\"uid\";s:32:\"8fb55fd696d9a0f58f3b27c1d8633750\";s:3:\"css\";s:5:\"table\";s:4:\"code\";i:59820;s:3:\"src\";s:11:\"fontawesome\";}i:429;a:4:{s:3:\"uid\";s:32:\"53dd31a6cc6438192b2d7b09b1c1dd45\";s:3:\"css\";s:7:\"columns\";s:4:\"code\";i:59821;s:3:\"src\";s:11:\"fontawesome\";}i:430;a:4:{s:3:\"uid\";s:32:\"09bdae120f85e79f2db16145a9e1f6d8\";s:3:\"css\";s:4:\"crop\";s:4:\"code\";i:59822;s:3:\"src\";s:11:\"fontawesome\";}i:431;a:4:{s:3:\"uid\";s:32:\"8772331a9fec983cdb5d72902a6f9e0e\";s:3:\"css\";s:8:\"scissors\";s:4:\"code\";i:59823;s:3:\"src\";s:11:\"fontawesome\";}i:432;a:4:{s:3:\"uid\";s:32:\"b429436ec5a518c78479d44ef18dbd60\";s:3:\"css\";s:5:\"paste\";s:4:\"code\";i:59824;s:3:\"src\";s:11:\"fontawesome\";}i:433;a:4:{s:3:\"uid\";s:32:\"053b757d97042e1c94276200c7b64b91\";s:3:\"css\";s:9:\"briefcase\";s:4:\"code\";i:59825;s:3:\"src\";s:11:\"fontawesome\";}i:434;a:4:{s:3:\"uid\";s:32:\"5ccf1ed249fd9d723ec1ce8629a9f507\";s:3:\"css\";s:8:\"suitcase\";s:4:\"code\";i:59826;s:3:\"src\";s:11:\"fontawesome\";}i:435;a:4:{s:3:\"uid\";s:32:\"107ce08c7231097c7447d8f4d059b55f\";s:3:\"css\";s:8:\"ellipsis\";s:4:\"code\";i:59827;s:3:\"src\";s:11:\"fontawesome\";}i:436;a:4:{s:3:\"uid\";s:32:\"750058837a91edae64b03d60fc7e81a7\";s:3:\"css\";s:13:\"ellipsis-vert\";s:4:\"code\";i:59828;s:3:\"src\";s:11:\"fontawesome\";}i:437;a:4:{s:3:\"uid\";s:32:\"8b9e6a8dd8f67f7c003ed8e7e5ee0857\";s:3:\"css\";s:3:\"off\";s:4:\"code\";i:59829;s:3:\"src\";s:11:\"fontawesome\";}i:438;a:4:{s:3:\"uid\";s:32:\"ecede48deb16179e5ef9a3f8ffae62f4\";s:3:\"css\";s:4:\"road\";s:4:\"code\";i:59830;s:3:\"src\";s:11:\"fontawesome\";}i:439;a:4:{s:3:\"uid\";s:32:\"c819c6225685bae2eed1b8da13e629fa\";s:3:\"css\";s:8:\"list-alt\";s:4:\"code\";i:59831;s:3:\"src\";s:11:\"fontawesome\";}i:440;a:4:{s:3:\"uid\";s:32:\"fd45bb961d08f9f2092f0df3fba29fe9\";s:3:\"css\";s:6:\"qrcode\";s:4:\"code\";i:59832;s:3:\"src\";s:11:\"fontawesome\";}i:441;a:4:{s:3:\"uid\";s:32:\"aa991e8e66ac54b33f0a4b0555597b08\";s:3:\"css\";s:7:\"barcode\";s:4:\"code\";i:59833;s:3:\"src\";s:11:\"fontawesome\";}i:442;a:4:{s:3:\"uid\";s:32:\"9755f76110ae4d12ac5f9466c9152031\";s:3:\"css\";s:4:\"book\";s:4:\"code\";i:59834;s:3:\"src\";s:11:\"fontawesome\";}i:443;a:4:{s:3:\"uid\";s:32:\"ca90da02d2c6a3183f2458e4dc416285\";s:3:\"css\";s:5:\"ajust\";s:4:\"code\";i:59835;s:3:\"src\";s:11:\"fontawesome\";}i:444;a:4:{s:3:\"uid\";s:32:\"83458acd9f38d03ec0226ce82a83c0f4\";s:3:\"css\";s:4:\"tint\";s:4:\"code\";i:59836;s:3:\"src\";s:11:\"fontawesome\";}i:445;a:4:{s:3:\"uid\";s:32:\"2a4e6c99b732a57da40e32fa2a7800a4\";s:3:\"css\";s:10:\"toggle-off\";s:4:\"code\";i:59837;s:3:\"src\";s:11:\"fontawesome\";}i:446;a:4:{s:3:\"uid\";s:32:\"3256ef03b16e7ab51235bc7378b53bb5\";s:3:\"css\";s:9:\"toggle-on\";s:4:\"code\";i:59838;s:3:\"src\";s:11:\"fontawesome\";}i:447;a:4:{s:3:\"uid\";s:32:\"dd6c6b221a1088ff8a9b9cd32d0b3dd5\";s:3:\"css\";s:5:\"check\";s:4:\"code\";i:59839;s:3:\"src\";s:11:\"fontawesome\";}i:448;a:4:{s:3:\"uid\";s:32:\"4b900d04e8ab8c82f080c1cfbac5772c\";s:3:\"css\";s:11:\"check-empty\";s:4:\"code\";i:59840;s:3:\"src\";s:11:\"fontawesome\";}i:449;a:4:{s:3:\"uid\";s:32:\"130380e481a7defc690dfb24123a1f0c\";s:3:\"css\";s:6:\"circle\";s:4:\"code\";i:59841;s:3:\"src\";s:11:\"fontawesome\";}i:450;a:4:{s:3:\"uid\";s:32:\"422e07e5afb80258a9c4ed1706498f8a\";s:3:\"css\";s:12:\"circle-empty\";s:4:\"code\";i:59842;s:3:\"src\";s:11:\"fontawesome\";}i:451;a:4:{s:3:\"uid\";s:32:\"5774d0a0e50f6eefc8be01bd761e5dd3\";s:3:\"css\";s:11:\"circle-thin\";s:4:\"code\";i:59843;s:3:\"src\";s:11:\"fontawesome\";}i:452;a:4:{s:3:\"uid\";s:32:\"4ffd8122933b9ee0183b925e1554969f\";s:3:\"css\";s:12:\"circle-notch\";s:4:\"code\";i:59844;s:3:\"src\";s:11:\"fontawesome\";}i:453;a:4:{s:3:\"uid\";s:32:\"81bb68665e8e595505272a746db07c7a\";s:3:\"css\";s:11:\"dot-circled\";s:4:\"code\";i:59845;s:3:\"src\";s:11:\"fontawesome\";}i:454;a:4:{s:3:\"uid\";s:32:\"823a9e02e643318116fea40a00190e4e\";s:3:\"css\";s:8:\"asterisk\";s:4:\"code\";i:59846;s:3:\"src\";s:11:\"fontawesome\";}i:455;a:4:{s:3:\"uid\";s:32:\"28f308aa0a07a67433f54c089c400d82\";s:3:\"css\";s:4:\"gift\";s:4:\"code\";i:59847;s:3:\"src\";s:11:\"fontawesome\";}i:456;a:4:{s:3:\"uid\";s:32:\"254077e7c0a9e6d303b32f9c35b96a40\";s:3:\"css\";s:4:\"fire\";s:4:\"code\";i:59848;s:3:\"src\";s:11:\"fontawesome\";}i:457;a:4:{s:3:\"uid\";s:32:\"d20912c814d0ff9a7fd27ed1f54813cc\";s:3:\"css\";s:8:\"magnet-1\";s:4:\"code\";i:59849;s:3:\"src\";s:11:\"fontawesome\";}i:458;a:4:{s:3:\"uid\";s:32:\"266d5d9adf15a61800477a5acf9a4462\";s:3:\"css\";s:9:\"chart-bar\";s:4:\"code\";i:59850;s:3:\"src\";s:11:\"fontawesome\";}i:459;a:4:{s:3:\"uid\";s:32:\"7d1ca956f4181a023de4b9efbed92524\";s:3:\"css\";s:10:\"chart-area\";s:4:\"code\";i:59851;s:3:\"src\";s:11:\"fontawesome\";}i:460;a:4:{s:3:\"uid\";s:32:\"554ee96588a6c9ee632624cd051fe6fc\";s:3:\"css\";s:9:\"chart-pie\";s:4:\"code\";i:59852;s:3:\"src\";s:11:\"fontawesome\";}i:461;a:4:{s:3:\"uid\";s:32:\"ea2d9a8c51ca42b38ef0d2a07f16d9a7\";s:3:\"css\";s:10:\"chart-line\";s:4:\"code\";i:59853;s:3:\"src\";s:11:\"fontawesome\";}i:462;a:4:{s:3:\"uid\";s:32:\"d6fcb9886485b0bdb41b94521e7a3311\";s:3:\"css\";s:6:\"ticket\";s:4:\"code\";i:59854;s:3:\"src\";s:11:\"fontawesome\";}i:463;a:4:{s:3:\"uid\";s:32:\"3d8cc269fdad8a4cda55a20542a84e5c\";s:3:\"css\";s:11:\"credit-card\";s:4:\"code\";i:59855;s:3:\"src\";s:11:\"fontawesome\";}i:464;a:4:{s:3:\"uid\";s:32:\"f4445feb55521283572ee88bc304f928\";s:3:\"css\";s:6:\"floppy\";s:4:\"code\";i:59856;s:3:\"src\";s:11:\"fontawesome\";}i:465;a:4:{s:3:\"uid\";s:32:\"3e674995cacc2b09692c096ea7eb6165\";s:3:\"css\";s:9:\"megaphone\";s:4:\"code\";i:59857;s:3:\"src\";s:11:\"fontawesome\";}i:466;a:4:{s:3:\"uid\";s:32:\"795efd07cd5205b589c883916a76cff0\";s:3:\"css\";s:3:\"hdd\";s:4:\"code\";i:59858;s:3:\"src\";s:11:\"fontawesome\";}i:467;a:4:{s:3:\"uid\";s:32:\"f2aa28a2548ed3d2be718d087b65ee21\";s:3:\"css\";s:3:\"key\";s:4:\"code\";i:59859;s:3:\"src\";s:11:\"fontawesome\";}i:468;a:4:{s:3:\"uid\";s:32:\"bc4b94dd7a9a1dd2e02f9e4648062596\";s:3:\"css\";s:4:\"fork\";s:4:\"code\";i:59860;s:3:\"src\";s:11:\"fontawesome\";}i:469;a:4:{s:3:\"uid\";s:32:\"8aa99bc60f3553bb3e31b73dd6e744c8\";s:3:\"css\";s:6:\"rocket\";s:4:\"code\";i:59861;s:3:\"src\";s:11:\"fontawesome\";}i:470;a:4:{s:3:\"uid\";s:32:\"7432077e6a2d6aa19984ca821bb6bbda\";s:3:\"css\";s:3:\"bug\";s:4:\"code\";i:59862;s:3:\"src\";s:11:\"fontawesome\";}i:471;a:4:{s:3:\"uid\";s:32:\"d61be837c725a299b432dcbee2ecdae6\";s:3:\"css\";s:11:\"certificate\";s:4:\"code\";i:59863;s:3:\"src\";s:11:\"fontawesome\";}i:472;a:4:{s:3:\"uid\";s:32:\"9396b2d8849e0213a0f11c5fd7fcc522\";s:3:\"css\";s:5:\"tasks\";s:4:\"code\";i:59864;s:3:\"src\";s:11:\"fontawesome\";}i:473;a:4:{s:3:\"uid\";s:32:\"4109c474ff99cad28fd5a2c38af2ec6f\";s:3:\"css\";s:6:\"filter\";s:4:\"code\";i:59865;s:3:\"src\";s:11:\"fontawesome\";}i:474;a:4:{s:3:\"uid\";s:32:\"0f444c61b0d2c9966016d7ddb12f5837\";s:3:\"css\";s:6:\"beaker\";s:4:\"code\";i:59866;s:3:\"src\";s:11:\"fontawesome\";}i:475;a:4:{s:3:\"uid\";s:32:\"ff70f7b3228702e0d590e60ed3b90bea\";s:3:\"css\";s:5:\"magic\";s:4:\"code\";i:59867;s:3:\"src\";s:11:\"fontawesome\";}i:476;a:4:{s:3:\"uid\";s:32:\"9937d762aee170b7350b15dd02dd34a3\";s:3:\"css\";s:3:\"cab\";s:4:\"code\";i:59868;s:3:\"src\";s:11:\"fontawesome\";}i:477;a:4:{s:3:\"uid\";s:32:\"5eacf9f8805e2c0bc306dcd1e709db16\";s:3:\"css\";s:4:\"taxi\";s:4:\"code\";i:59869;s:3:\"src\";s:11:\"fontawesome\";}i:478;a:4:{s:3:\"uid\";s:32:\"7f3d8ff1d5f6ee019f0c00ed7a86caec\";s:3:\"css\";s:5:\"truck\";s:4:\"code\";i:59870;s:3:\"src\";s:11:\"fontawesome\";}i:479;a:4:{s:3:\"uid\";s:32:\"5b17c7263caa553039655f2fef81ecaf\";s:3:\"css\";s:3:\"bus\";s:4:\"code\";i:59871;s:3:\"src\";s:11:\"fontawesome\";}i:480;a:4:{s:3:\"uid\";s:32:\"891d861cffd152a6474f01e77716d44e\";s:3:\"css\";s:7:\"bicycle\";s:4:\"code\";i:59872;s:3:\"src\";s:11:\"fontawesome\";}i:481;a:4:{s:3:\"uid\";s:32:\"326dd5dc5899787161184614d04a50b9\";s:3:\"css\";s:10:\"motorcycle\";s:4:\"code\";i:59873;s:3:\"src\";s:11:\"fontawesome\";}i:482;a:4:{s:3:\"uid\";s:32:\"4df54de7f9081aefcc1476068d4464e9\";s:3:\"css\";s:5:\"train\";s:4:\"code\";i:59874;s:3:\"src\";s:11:\"fontawesome\";}i:483;a:4:{s:3:\"uid\";s:32:\"26667777684de4808cedd3783834356f\";s:3:\"css\";s:6:\"subway\";s:4:\"code\";i:59875;s:3:\"src\";s:11:\"fontawesome\";}i:484;a:4:{s:3:\"uid\";s:32:\"3bf0956ae356f79d805fb17f4a523f24\";s:3:\"css\";s:4:\"ship\";s:4:\"code\";i:59876;s:3:\"src\";s:11:\"fontawesome\";}i:485;a:4:{s:3:\"uid\";s:32:\"f279f25007794fa6837ff78fe94b216e\";s:3:\"css\";s:5:\"money\";s:4:\"code\";i:59877;s:3:\"src\";s:11:\"fontawesome\";}i:486;a:4:{s:3:\"uid\";s:32:\"486b835e9eebf54eee78ed12b4291b86\";s:3:\"css\";s:4:\"euro\";s:4:\"code\";i:59878;s:3:\"src\";s:11:\"fontawesome\";}i:487;a:4:{s:3:\"uid\";s:32:\"9854f7f091bd4fdf9b8735ed66667b9d\";s:3:\"css\";s:5:\"pound\";s:4:\"code\";i:59879;s:3:\"src\";s:11:\"fontawesome\";}i:488;a:4:{s:3:\"uid\";s:32:\"026007bd17bfc67f3fe013199676f620\";s:3:\"css\";s:6:\"dollar\";s:4:\"code\";i:59880;s:3:\"src\";s:11:\"fontawesome\";}i:489;a:4:{s:3:\"uid\";s:32:\"62e4fa2c664818d20ce4740cadbf9aeb\";s:3:\"css\";s:5:\"rupee\";s:4:\"code\";i:59881;s:3:\"src\";s:11:\"fontawesome\";}i:490;a:4:{s:3:\"uid\";s:32:\"5f61f8a682b77d2529296a8061bf9597\";s:3:\"css\";s:3:\"yen\";s:4:\"code\";i:59882;s:3:\"src\";s:11:\"fontawesome\";}i:491;a:4:{s:3:\"uid\";s:32:\"243424d56528e83e4fe9ef6e6347a2ef\";s:3:\"css\";s:6:\"rouble\";s:4:\"code\";i:59883;s:3:\"src\";s:11:\"fontawesome\";}i:492;a:4:{s:3:\"uid\";s:32:\"589ae2cbc6d95cc74eb2dbd3fa9c9bcd\";s:3:\"css\";s:6:\"shekel\";s:4:\"code\";i:59884;s:3:\"src\";s:11:\"fontawesome\";}i:493;a:4:{s:3:\"uid\";s:32:\"7f5801d1e299b445ad0090b0a9e94bcb\";s:3:\"css\";s:3:\"try\";s:4:\"code\";i:59885;s:3:\"src\";s:11:\"fontawesome\";}i:494;a:4:{s:3:\"uid\";s:32:\"82f0dc5149d842219e45000bebd683fb\";s:3:\"css\";s:3:\"won\";s:4:\"code\";i:59886;s:3:\"src\";s:11:\"fontawesome\";}i:495;a:4:{s:3:\"uid\";s:32:\"2cb15eb2b295ee3c33fab1530e18a924\";s:3:\"css\";s:7:\"bitcoin\";s:4:\"code\";i:59887;s:3:\"src\";s:11:\"fontawesome\";}i:496;a:4:{s:3:\"uid\";s:32:\"77b6b5ad1966970971c43e40e8d10772\";s:3:\"css\";s:7:\"viacoin\";s:4:\"code\";i:59888;s:3:\"src\";s:11:\"fontawesome\";}i:497;a:4:{s:3:\"uid\";s:32:\"56a21935a5d4d79b2e91ec00f760b369\";s:3:\"css\";s:4:\"sort\";s:4:\"code\";i:59889;s:3:\"src\";s:11:\"fontawesome\";}i:498;a:4:{s:3:\"uid\";s:32:\"94103e1b3f1e8cf514178ec5912b4469\";s:3:\"css\";s:9:\"sort-down\";s:4:\"code\";i:59890;s:3:\"src\";s:11:\"fontawesome\";}i:499;a:4:{s:3:\"uid\";s:32:\"65b3ce930627cabfb6ac81ac60ec5ae4\";s:3:\"css\";s:7:\"sort-up\";s:4:\"code\";i:59891;s:3:\"src\";s:11:\"fontawesome\";}i:500;a:4:{s:3:\"uid\";s:32:\"0cd2582b8c93719d066ee0affd02ac78\";s:3:\"css\";s:11:\"sort-alt-up\";s:4:\"code\";i:59892;s:3:\"src\";s:11:\"fontawesome\";}i:501;a:4:{s:3:\"uid\";s:32:\"27b13eff5eb0ca15e01a6e65ffe6eeec\";s:3:\"css\";s:13:\"sort-alt-down\";s:4:\"code\";i:59893;s:3:\"src\";s:11:\"fontawesome\";}i:502;a:4:{s:3:\"uid\";s:32:\"3ed68ae14e9cde775121954242a412b2\";s:3:\"css\";s:12:\"sort-name-up\";s:4:\"code\";i:59894;s:3:\"src\";s:11:\"fontawesome\";}i:503;a:4:{s:3:\"uid\";s:32:\"6586267200a42008a9fc0a1bf7ac06c7\";s:3:\"css\";s:14:\"sort-name-down\";s:4:\"code\";i:59895;s:3:\"src\";s:11:\"fontawesome\";}i:504;a:4:{s:3:\"uid\";s:32:\"3a7b6876c1817ce3b801b86c04a9d0af\";s:3:\"css\";s:14:\"sort-number-up\";s:4:\"code\";i:59896;s:3:\"src\";s:11:\"fontawesome\";}i:505;a:4:{s:3:\"uid\";s:32:\"b04fc30546f597a7e0a14715e6fc81ff\";s:3:\"css\";s:16:\"sort-number-down\";s:4:\"code\";i:59897;s:3:\"src\";s:11:\"fontawesome\";}i:506;a:4:{s:3:\"uid\";s:32:\"dec0ce0476433f7e49e096526cf89465\";s:3:\"css\";s:6:\"hammer\";s:4:\"code\";i:59898;s:3:\"src\";s:11:\"fontawesome\";}i:507;a:4:{s:3:\"uid\";s:32:\"0bda4bc779d4c32623dec2e43bd67ee8\";s:3:\"css\";s:5:\"gauge\";s:4:\"code\";i:59899;s:3:\"src\";s:11:\"fontawesome\";}i:508;a:4:{s:3:\"uid\";s:32:\"6fe95ffc3c807e62647d4f814a96e0d7\";s:3:\"css\";s:7:\"sitemap\";s:4:\"code\";i:59900;s:3:\"src\";s:11:\"fontawesome\";}i:509;a:4:{s:3:\"uid\";s:32:\"cda0cdcfd38f5f1d9255e722dad42012\";s:3:\"css\";s:7:\"spinner\";s:4:\"code\";i:59901;s:3:\"src\";s:11:\"fontawesome\";}i:510;a:4:{s:3:\"uid\";s:32:\"3a26448b711645ba1abfc86c1a6e2f30\";s:3:\"css\";s:6:\"coffee\";s:4:\"code\";i:59902;s:3:\"src\";s:11:\"fontawesome\";}i:511;a:4:{s:3:\"uid\";s:32:\"30b79160618d99ce798e4bd11cafe3fe\";s:3:\"css\";s:4:\"food\";s:4:\"code\";i:59903;s:3:\"src\";s:11:\"fontawesome\";}i:512;a:4:{s:3:\"uid\";s:32:\"890bcc8897cce868f6ee65cadadde036\";s:3:\"css\";s:4:\"beer\";s:4:\"code\";i:59904;s:3:\"src\";s:11:\"fontawesome\";}i:513;a:4:{s:3:\"uid\";s:32:\"9e8430ce95f56720ae8e7afba291df88\";s:3:\"css\";s:7:\"user-md\";s:4:\"code\";i:59905;s:3:\"src\";s:11:\"fontawesome\";}i:514;a:4:{s:3:\"uid\";s:32:\"5590d2f643b64d2d0757ae660f9c24cb\";s:3:\"css\";s:11:\"stethoscope\";s:4:\"code\";i:59906;s:3:\"src\";s:11:\"fontawesome\";}i:515;a:4:{s:3:\"uid\";s:32:\"d84a06c5ce6da9ebdc9b0a5cb94db4c4\";s:3:\"css\";s:9:\"heartbeat\";s:4:\"code\";i:59907;s:3:\"src\";s:11:\"fontawesome\";}i:516;a:4:{s:3:\"uid\";s:32:\"6dbf07228006788a96eb6244b3591970\";s:3:\"css\";s:9:\"ambulance\";s:4:\"code\";i:59908;s:3:\"src\";s:11:\"fontawesome\";}i:517;a:4:{s:3:\"uid\";s:32:\"46120eb259799eab0dac0691137e5706\";s:3:\"css\";s:6:\"medkit\";s:4:\"code\";i:59909;s:3:\"src\";s:11:\"fontawesome\";}i:518;a:4:{s:3:\"uid\";s:32:\"6f41d9b99564a01f1fde503b7f03bf1a\";s:3:\"css\";s:6:\"h-sigh\";s:4:\"code\";i:59910;s:3:\"src\";s:11:\"fontawesome\";}i:519;a:4:{s:3:\"uid\";s:32:\"df9d9b2fb366c10427ffb727943db912\";s:3:\"css\";s:3:\"bed\";s:4:\"code\";i:59911;s:3:\"src\";s:11:\"fontawesome\";}i:520;a:4:{s:3:\"uid\";s:32:\"c4adaacece4c6341a9ae1816f5ea500c\";s:3:\"css\";s:8:\"hospital\";s:4:\"code\";i:59912;s:3:\"src\";s:11:\"fontawesome\";}i:521;a:4:{s:3:\"uid\";s:32:\"3d1e04316a48ace4e2b81be58343a41c\";s:3:\"css\";s:8:\"building\";s:4:\"code\";i:59913;s:3:\"src\";s:11:\"fontawesome\";}i:522;a:4:{s:3:\"uid\";s:32:\"ede2ea0a583f662b79fbb181b428c20d\";s:3:\"css\";s:15:\"building-filled\";s:4:\"code\";i:59914;s:3:\"src\";s:11:\"fontawesome\";}i:523;a:4:{s:3:\"uid\";s:32:\"8c0ffa714cecbf5144e022d9c3df4a1f\";s:3:\"css\";s:4:\"bank\";s:4:\"code\";i:59915;s:3:\"src\";s:11:\"fontawesome\";}i:524;a:4:{s:3:\"uid\";s:32:\"d862a10e1448589215be19702f98f2c1\";s:3:\"css\";s:5:\"smile\";s:4:\"code\";i:59916;s:3:\"src\";s:11:\"fontawesome\";}i:525;a:4:{s:3:\"uid\";s:32:\"06ddc67d609c477cd5524a7238d7850d\";s:3:\"css\";s:5:\"frown\";s:4:\"code\";i:59917;s:3:\"src\";s:11:\"fontawesome\";}i:526;a:4:{s:3:\"uid\";s:32:\"2c5055a9c9723725f49f0593a08535af\";s:3:\"css\";s:3:\"meh\";s:4:\"code\";i:59918;s:3:\"src\";s:11:\"fontawesome\";}i:527;a:4:{s:3:\"uid\";s:32:\"7a9d73c640892d4b917c706ad95d6fec\";s:3:\"css\";s:6:\"anchor\";s:4:\"code\";i:59919;s:3:\"src\";s:11:\"fontawesome\";}i:528;a:4:{s:3:\"uid\";s:32:\"fa10777b2d88cc64cd6e4f26ef0e5264\";s:3:\"css\";s:8:\"terminal\";s:4:\"code\";i:59920;s:3:\"src\";s:11:\"fontawesome\";}i:529;a:4:{s:3:\"uid\";s:32:\"ebc57fa8400e4ede049ac5dc665210e1\";s:3:\"css\";s:6:\"eraser\";s:4:\"code\";i:59921;s:3:\"src\";s:11:\"fontawesome\";}i:530;a:4:{s:3:\"uid\";s:32:\"5f0f183e241d15cbe486bff88b188dff\";s:3:\"css\";s:6:\"puzzle\";s:4:\"code\";i:59922;s:3:\"src\";s:11:\"fontawesome\";}i:531;a:4:{s:3:\"uid\";s:32:\"44a0e2660ac966cdfaa04deb6aac51df\";s:3:\"css\";s:6:\"shield\";s:4:\"code\";i:59923;s:3:\"src\";s:11:\"fontawesome\";}i:532;a:4:{s:3:\"uid\";s:32:\"1e7648f03fbdc28114a00b33b059b499\";s:3:\"css\";s:12:\"extinguisher\";s:4:\"code\";i:59924;s:3:\"src\";s:11:\"fontawesome\";}i:533;a:4:{s:3:\"uid\";s:32:\"c92ad3028acce9d51bae0ac82f5de8a2\";s:3:\"css\";s:8:\"bullseye\";s:4:\"code\";i:59925;s:3:\"src\";s:11:\"fontawesome\";}i:534;a:4:{s:3:\"uid\";s:32:\"8a67014b864fb93503348593979ddce3\";s:3:\"css\";s:10:\"wheelchair\";s:4:\"code\";i:59926;s:3:\"src\";s:11:\"fontawesome\";}i:535;a:4:{s:3:\"uid\";s:32:\"4fc9b8c122d1b5ca3df42a104a655e8b\";s:3:\"css\";s:8:\"language\";s:4:\"code\";i:59927;s:3:\"src\";s:11:\"fontawesome\";}i:536;a:4:{s:3:\"uid\";s:32:\"20fc52f9a88bb7bda023ef209acac095\";s:3:\"css\";s:14:\"graduation-cap\";s:4:\"code\";i:59928;s:3:\"src\";s:11:\"fontawesome\";}i:537;a:4:{s:3:\"uid\";s:32:\"55605ca79a65def1a9c300037ff1d0d5\";s:3:\"css\";s:3:\"paw\";s:4:\"code\";i:59929;s:3:\"src\";s:11:\"fontawesome\";}i:538;a:4:{s:3:\"uid\";s:32:\"3964e28e6bdf85b3b70df3533db69867\";s:3:\"css\";s:5:\"spoon\";s:4:\"code\";i:59930;s:3:\"src\";s:11:\"fontawesome\";}i:539;a:4:{s:3:\"uid\";s:32:\"fbede3c5584282a0e9b131926dff71da\";s:3:\"css\";s:4:\"cube\";s:4:\"code\";i:59931;s:3:\"src\";s:11:\"fontawesome\";}i:540;a:4:{s:3:\"uid\";s:32:\"af95ef0ddda80a78828c62d386506433\";s:3:\"css\";s:5:\"cubes\";s:4:\"code\";i:59932;s:3:\"src\";s:11:\"fontawesome\";}i:541;a:4:{s:3:\"uid\";s:32:\"288f930b765216bc04e475740331bdf5\";s:3:\"css\";s:7:\"recycle\";s:4:\"code\";i:59933;s:3:\"src\";s:11:\"fontawesome\";}i:542;a:4:{s:3:\"uid\";s:32:\"88da60b3a17e5744695682833a178e73\";s:3:\"css\";s:4:\"tree\";s:4:\"code\";i:59934;s:3:\"src\";s:11:\"fontawesome\";}i:543;a:4:{s:3:\"uid\";s:32:\"347c38a8b96a509270fdcabc951e7571\";s:3:\"css\";s:8:\"database\";s:4:\"code\";i:59935;s:3:\"src\";s:11:\"fontawesome\";}i:544;a:4:{s:3:\"uid\";s:32:\"d59ff824282fc6edaeca991deab522aa\";s:3:\"css\";s:6:\"server\";s:4:\"code\";i:59936;s:3:\"src\";s:11:\"fontawesome\";}i:545;a:4:{s:3:\"uid\";s:32:\"ebffa4e734c8379ffee4fbfe49264d94\";s:3:\"css\";s:8:\"lifebuoy\";s:4:\"code\";i:59937;s:3:\"src\";s:11:\"fontawesome\";}i:546;a:4:{s:3:\"uid\";s:32:\"c53415fbd2695033bd7180d7a9ed4934\";s:3:\"css\";s:5:\"rebel\";s:4:\"code\";i:59938;s:3:\"src\";s:11:\"fontawesome\";}i:547;a:4:{s:3:\"uid\";s:32:\"6632ce1019f9115842335622cb55f4e7\";s:3:\"css\";s:6:\"empire\";s:4:\"code\";i:59939;s:3:\"src\";s:11:\"fontawesome\";}i:548;a:4:{s:3:\"uid\";s:32:\"49ef53dc31aa9442d77f6ba4f559b528\";s:3:\"css\";s:4:\"bomb\";s:4:\"code\";i:59940;s:3:\"src\";s:11:\"fontawesome\";}i:549;a:4:{s:3:\"uid\";s:32:\"cf62866c0cfe3dd14455b381c724f8e1\";s:3:\"css\";s:11:\"soccer-ball\";s:4:\"code\";i:59941;s:3:\"src\";s:11:\"fontawesome\";}i:550;a:4:{s:3:\"uid\";s:32:\"3e1c9aac91dc062dc1af383d43f58ac5\";s:3:\"css\";s:3:\"tty\";s:4:\"code\";i:59942;s:3:\"src\";s:11:\"fontawesome\";}i:551;a:4:{s:3:\"uid\";s:32:\"73ffeb70554099177620847206c12457\";s:3:\"css\";s:10:\"binoculars\";s:4:\"code\";i:59943;s:3:\"src\";s:11:\"fontawesome\";}i:552;a:4:{s:3:\"uid\";s:32:\"a14be0c7e0689076e2bdde97f8e309f9\";s:3:\"css\";s:4:\"plug\";s:4:\"code\";i:59944;s:3:\"src\";s:11:\"fontawesome\";}i:553;a:4:{s:3:\"uid\";s:32:\"032bd8bbd70adf90ead98b6813bfe446\";s:3:\"css\";s:9:\"newspaper\";s:4:\"code\";i:59945;s:3:\"src\";s:11:\"fontawesome\";}i:554;a:4:{s:3:\"uid\";s:32:\"1ee2aeb352153a403df4b441a8bc9bda\";s:3:\"css\";s:4:\"calc\";s:4:\"code\";i:59946;s:3:\"src\";s:11:\"fontawesome\";}i:555;a:4:{s:3:\"uid\";s:32:\"4a74a0f87d4089efe7aba1825bff4193\";s:3:\"css\";s:9:\"copyright\";s:4:\"code\";i:59947;s:3:\"src\";s:11:\"fontawesome\";}i:556;a:4:{s:3:\"uid\";s:32:\"33194d4a025fbf12baca54579afe4c8e\";s:3:\"css\";s:2:\"at\";s:4:\"code\";i:59948;s:3:\"src\";s:11:\"fontawesome\";}i:557;a:4:{s:3:\"uid\";s:32:\"88e6faa0f633ee23667f815689e82af3\";s:3:\"css\";s:10:\"eyedropper\";s:4:\"code\";i:59949;s:3:\"src\";s:11:\"fontawesome\";}i:558;a:4:{s:3:\"uid\";s:32:\"fa9a0b7e788c2d78e24cef1de6b70e80\";s:3:\"css\";s:5:\"brush\";s:4:\"code\";i:59950;s:3:\"src\";s:11:\"fontawesome\";}i:559;a:4:{s:3:\"uid\";s:32:\"bc61ebcf2f5d8d08b1e9e62167df7617\";s:3:\"css\";s:8:\"birthday\";s:4:\"code\";i:59951;s:3:\"src\";s:11:\"fontawesome\";}i:560;a:4:{s:3:\"uid\";s:32:\"f85affb51c357be83d187344c8c6e35c\";s:3:\"css\";s:7:\"diamond\";s:4:\"code\";i:59952;s:3:\"src\";s:11:\"fontawesome\";}i:561;a:4:{s:3:\"uid\";s:32:\"3c7eb0c1678e6fa93cc4264bad3150d6\";s:3:\"css\";s:11:\"street-view\";s:4:\"code\";i:59953;s:3:\"src\";s:11:\"fontawesome\";}i:562;a:4:{s:3:\"uid\";s:32:\"95501182783a570088194c41bc63543b\";s:3:\"css\";s:5:\"venus\";s:4:\"code\";i:59954;s:3:\"src\";s:11:\"fontawesome\";}i:563;a:4:{s:3:\"uid\";s:32:\"5d5d8995aa777cb59c88671e89ab5ced\";s:3:\"css\";s:4:\"mars\";s:4:\"code\";i:59955;s:3:\"src\";s:11:\"fontawesome\";}i:564;a:4:{s:3:\"uid\";s:32:\"c3c269bbbf641affca7e52beb39f7909\";s:3:\"css\";s:7:\"mercury\";s:4:\"code\";i:59956;s:3:\"src\";s:11:\"fontawesome\";}i:565;a:4:{s:3:\"uid\";s:32:\"d589e468da8556b0701206cfdfcfc567\";s:3:\"css\";s:11:\"transgender\";s:4:\"code\";i:59957;s:3:\"src\";s:11:\"fontawesome\";}i:566;a:4:{s:3:\"uid\";s:32:\"5a77a57792f5bfd20fb80827af089d17\";s:3:\"css\";s:15:\"transgender-alt\";s:4:\"code\";i:59958;s:3:\"src\";s:11:\"fontawesome\";}i:567;a:4:{s:3:\"uid\";s:32:\"6c6165b9b97c471cc4c6366f9cf84537\";s:3:\"css\";s:12:\"venus-double\";s:4:\"code\";i:59959;s:3:\"src\";s:11:\"fontawesome\";}i:568;a:4:{s:3:\"uid\";s:32:\"3bc42da674bdbebcb6471ceb42966d33\";s:3:\"css\";s:11:\"mars-double\";s:4:\"code\";i:59960;s:3:\"src\";s:11:\"fontawesome\";}i:569;a:4:{s:3:\"uid\";s:32:\"4ced65e721620e2b3e77b02d54af4100\";s:3:\"css\";s:10:\"venus-mars\";s:4:\"code\";i:59961;s:3:\"src\";s:11:\"fontawesome\";}i:570;a:4:{s:3:\"uid\";s:32:\"6d4f6e98584c8b8ec08bd47a96ed86c4\";s:3:\"css\";s:11:\"mars-stroke\";s:4:\"code\";i:59962;s:3:\"src\";s:11:\"fontawesome\";}i:571;a:4:{s:3:\"uid\";s:32:\"4162b5adba555571ca1be76baa365b9c\";s:3:\"css\";s:13:\"mars-stroke-v\";s:4:\"code\";i:59963;s:3:\"src\";s:11:\"fontawesome\";}i:572;a:4:{s:3:\"uid\";s:32:\"10bd8ed7a393f773e81d145ad5523beb\";s:3:\"css\";s:13:\"mars-stroke-h\";s:4:\"code\";i:59964;s:3:\"src\";s:11:\"fontawesome\";}i:573;a:4:{s:3:\"uid\";s:32:\"14896a85fab311b3a5a9b614fe8c6874\";s:3:\"css\";s:6:\"neuter\";s:4:\"code\";i:59965;s:3:\"src\";s:11:\"fontawesome\";}i:574;a:4:{s:3:\"uid\";s:32:\"e3ed188ab8569b45cf41e74ce81aa86e\";s:3:\"css\";s:7:\"cc-visa\";s:4:\"code\";i:59966;s:3:\"src\";s:11:\"fontawesome\";}i:575;a:4:{s:3:\"uid\";s:32:\"4b1bfce8593a2c1c7d60b9145ada2adf\";s:3:\"css\";s:13:\"cc-mastercard\";s:4:\"code\";i:59967;s:3:\"src\";s:11:\"fontawesome\";}i:576;a:4:{s:3:\"uid\";s:32:\"6413682e05e1c65d13cb76fbca6d67e1\";s:3:\"css\";s:11:\"cc-discover\";s:4:\"code\";i:59968;s:3:\"src\";s:11:\"fontawesome\";}i:577;a:4:{s:3:\"uid\";s:32:\"4e7a8235533632f4df7ba7a2c68cd39d\";s:3:\"css\";s:7:\"cc-amex\";s:4:\"code\";i:59969;s:3:\"src\";s:11:\"fontawesome\";}i:578;a:4:{s:3:\"uid\";s:32:\"b83f99fd47bff831e25255c9bbbbabe7\";s:3:\"css\";s:9:\"cc-paypal\";s:4:\"code\";i:59970;s:3:\"src\";s:11:\"fontawesome\";}i:579;a:4:{s:3:\"uid\";s:32:\"9698d35be5c118ec7521a98130fddc67\";s:3:\"css\";s:9:\"cc-stripe\";s:4:\"code\";i:59971;s:3:\"src\";s:11:\"fontawesome\";}i:580;a:4:{s:3:\"uid\";s:32:\"ef98b489bfb943225e6761cfa9999e9b\";s:3:\"css\";s:3:\"adn\";s:4:\"code\";i:59972;s:3:\"src\";s:11:\"fontawesome\";}i:581;a:4:{s:3:\"uid\";s:32:\"809f2374b759f5b9278ac6307e690ba4\";s:3:\"css\";s:7:\"android\";s:4:\"code\";i:59973;s:3:\"src\";s:11:\"fontawesome\";}i:582;a:4:{s:3:\"uid\";s:32:\"3fb64dab2b2e0a6cefa161387250c620\";s:3:\"css\";s:9:\"angellist\";s:4:\"code\";i:59974;s:3:\"src\";s:11:\"fontawesome\";}i:583;a:4:{s:3:\"uid\";s:32:\"e9fa538fd5913046497ac148e27cd8ea\";s:3:\"css\";s:5:\"apple\";s:4:\"code\";i:59975;s:3:\"src\";s:11:\"fontawesome\";}i:584;a:4:{s:3:\"uid\";s:32:\"aa58e30c7196b1378a6ca78c025cc3b5\";s:3:\"css\";s:7:\"behance\";s:4:\"code\";i:59976;s:3:\"src\";s:11:\"fontawesome\";}i:585;a:4:{s:3:\"uid\";s:32:\"b501bc7737850366e98043c585163eec\";s:3:\"css\";s:15:\"behance-squared\";s:4:\"code\";i:59977;s:3:\"src\";s:11:\"fontawesome\";}i:586;a:4:{s:3:\"uid\";s:32:\"169f51b7e405de8c03cf85a6e8c740ab\";s:3:\"css\";s:9:\"bitbucket\";s:4:\"code\";i:59978;s:3:\"src\";s:11:\"fontawesome\";}i:587;a:4:{s:3:\"uid\";s:32:\"4ae56c66a1f93e28b8d4f866db2b018a\";s:3:\"css\";s:17:\"bitbucket-squared\";s:4:\"code\";i:59979;s:3:\"src\";s:11:\"fontawesome\";}i:588;a:4:{s:3:\"uid\";s:32:\"18d3287c351d9799fedb221e4923b2d2\";s:3:\"css\";s:10:\"buysellads\";s:4:\"code\";i:59980;s:3:\"src\";s:11:\"fontawesome\";}i:589;a:4:{s:3:\"uid\";s:32:\"66faf6c4e3b0e4e33f06171e30253e26\";s:3:\"css\";s:2:\"cc\";s:4:\"code\";i:59981;s:3:\"src\";s:11:\"fontawesome\";}i:590;a:4:{s:3:\"uid\";s:32:\"76675011e906d50af404186b489fc76f\";s:3:\"css\";s:8:\"codeopen\";s:4:\"code\";i:59982;s:3:\"src\";s:11:\"fontawesome\";}i:591;a:4:{s:3:\"uid\";s:32:\"aa4ded7a2d22e21c3cfe775efe267120\";s:3:\"css\";s:14:\"connectdevelop\";s:4:\"code\";i:59983;s:3:\"src\";s:11:\"fontawesome\";}i:592;a:4:{s:3:\"uid\";s:32:\"01c946ce2ed5500e0a918f2b3a7d1923\";s:3:\"css\";s:4:\"css3\";s:4:\"code\";i:59984;s:3:\"src\";s:11:\"fontawesome\";}i:593;a:4:{s:3:\"uid\";s:32:\"71e046578954f177921bcf5b241d0d95\";s:3:\"css\";s:8:\"dashcube\";s:4:\"code\";i:59985;s:3:\"src\";s:11:\"fontawesome\";}i:594;a:4:{s:3:\"uid\";s:32:\"6975c4c656d41a0283d9c52516bf38ed\";s:3:\"css\";s:9:\"delicious\";s:4:\"code\";i:59986;s:3:\"src\";s:11:\"fontawesome\";}i:595;a:4:{s:3:\"uid\";s:32:\"54fad985c676a007c79c346ebaec29d6\";s:3:\"css\";s:10:\"deviantart\";s:4:\"code\";i:59987;s:3:\"src\";s:11:\"fontawesome\";}i:596;a:4:{s:3:\"uid\";s:32:\"ef0e69c3275e8c845aca69a79900092d\";s:3:\"css\";s:4:\"digg\";s:4:\"code\";i:59988;s:3:\"src\";s:11:\"fontawesome\";}i:597;a:4:{s:3:\"uid\";s:32:\"199c44bca402ec5a6351f75ba5228375\";s:3:\"css\";s:8:\"dribbble\";s:4:\"code\";i:59989;s:3:\"src\";s:11:\"fontawesome\";}i:598;a:4:{s:3:\"uid\";s:32:\"9e34a047fee949eae9b6e613d790d6cf\";s:3:\"css\";s:7:\"dropbox\";s:4:\"code\";i:59990;s:3:\"src\";s:11:\"fontawesome\";}i:599;a:4:{s:3:\"uid\";s:32:\"d16ba9078d51e79b5ad6af0235adbd54\";s:3:\"css\";s:6:\"drupal\";s:4:\"code\";i:59991;s:3:\"src\";s:11:\"fontawesome\";}i:600;a:4:{s:3:\"uid\";s:32:\"8e04c98c8f5ca0a035776e3001ad2638\";s:3:\"css\";s:8:\"facebook\";s:4:\"code\";i:59992;s:3:\"src\";s:11:\"fontawesome\";}i:601;a:4:{s:3:\"uid\";s:32:\"4743b088aa95d6f3b6b990e770d3b647\";s:3:\"css\";s:16:\"facebook-squared\";s:4:\"code\";i:59993;s:3:\"src\";s:11:\"fontawesome\";}i:602;a:4:{s:3:\"uid\";s:32:\"6cc7af3e5b55720bcb6ef68372ce24be\";s:3:\"css\";s:17:\"facebook-official\";s:4:\"code\";i:59994;s:3:\"src\";s:11:\"fontawesome\";}i:603;a:4:{s:3:\"uid\";s:32:\"649004fb1ed50395a33c3780236ba8aa\";s:3:\"css\";s:6:\"flickr\";s:4:\"code\";i:59995;s:3:\"src\";s:11:\"fontawesome\";}i:604;a:4:{s:3:\"uid\";s:32:\"7b7116fa67e5e3f4c98e5928ebe3f6ae\";s:3:\"css\";s:8:\"forumbee\";s:4:\"code\";i:59996;s:3:\"src\";s:11:\"fontawesome\";}i:605;a:4:{s:3:\"uid\";s:32:\"a32d12927584e3c8a3dff23eb816d360\";s:3:\"css\";s:10:\"foursquare\";s:4:\"code\";i:59997;s:3:\"src\";s:11:\"fontawesome\";}i:606;a:4:{s:3:\"uid\";s:32:\"c75b7d61b0bce6aeb54292e3952a1568\";s:3:\"css\";s:11:\"git-squared\";s:4:\"code\";i:59998;s:3:\"src\";s:11:\"fontawesome\";}i:607;a:4:{s:3:\"uid\";s:32:\"e7cb72a17f3b21e3576f35c3f0a7639b\";s:3:\"css\";s:3:\"git\";s:4:\"code\";i:59999;s:3:\"src\";s:11:\"fontawesome\";}i:608;a:4:{s:3:\"uid\";s:32:\"5e0a374728ffa8d0ae1f331a8f648231\";s:3:\"css\";s:6:\"github\";s:4:\"code\";i:60000;s:3:\"src\";s:11:\"fontawesome\";}i:609;a:4:{s:3:\"uid\";s:32:\"0ece9a12de796b8411f868d582bee678\";s:3:\"css\";s:14:\"github-squared\";s:4:\"code\";i:60001;s:3:\"src\";s:11:\"fontawesome\";}i:610;a:4:{s:3:\"uid\";s:32:\"0f6a2573a7b6df911ed199bb63717e27\";s:3:\"css\";s:14:\"github-circled\";s:4:\"code\";i:60002;s:3:\"src\";s:11:\"fontawesome\";}i:611;a:4:{s:3:\"uid\";s:32:\"5b4b48418155c35459f12171f97c82ff\";s:3:\"css\";s:6:\"gittip\";s:4:\"code\";i:60003;s:3:\"src\";s:11:\"fontawesome\";}i:612;a:4:{s:3:\"uid\";s:32:\"f06fe7ff18d1c591bc1183cb3ab105e9\";s:3:\"css\";s:6:\"google\";s:4:\"code\";i:60004;s:3:\"src\";s:11:\"fontawesome\";}i:613;a:4:{s:3:\"uid\";s:32:\"b8d0c7d76e87b94882329a88e8e43d3d\";s:3:\"css\";s:5:\"gplus\";s:4:\"code\";i:60005;s:3:\"src\";s:11:\"fontawesome\";}i:614;a:4:{s:3:\"uid\";s:32:\"f0cf7db1b03cb65adc450aa3bdaf8c4d\";s:3:\"css\";s:13:\"gplus-squared\";s:4:\"code\";i:60006;s:3:\"src\";s:11:\"fontawesome\";}i:615;a:4:{s:3:\"uid\";s:32:\"50fbbd926b2a64fcaf384788056c0e43\";s:3:\"css\";s:7:\"gwallet\";s:4:\"code\";i:60007;s:3:\"src\";s:11:\"fontawesome\";}i:616;a:4:{s:3:\"uid\";s:32:\"237ee28b7e826b75a5b6f51ee3e2bfc1\";s:3:\"css\";s:11:\"hacker-news\";s:4:\"code\";i:60008;s:3:\"src\";s:11:\"fontawesome\";}i:617;a:4:{s:3:\"uid\";s:32:\"ff44f01f60948555026580eedf1e39bb\";s:3:\"css\";s:5:\"html5\";s:4:\"code\";i:60009;s:3:\"src\";s:11:\"fontawesome\";}i:618;a:4:{s:3:\"uid\";s:32:\"4c1ef492f1d2c39a2250ae457cee2a6e\";s:3:\"css\";s:9:\"instagram\";s:4:\"code\";i:60010;s:3:\"src\";s:11:\"fontawesome\";}i:619;a:4:{s:3:\"uid\";s:32:\"9b9e5f3ee9e3525808ed2afc83e8bb0b\";s:3:\"css\";s:7:\"ioxhost\";s:4:\"code\";i:60011;s:3:\"src\";s:11:\"fontawesome\";}i:620;a:4:{s:3:\"uid\";s:32:\"8cd1b9899389237def726c08587a649f\";s:3:\"css\";s:6:\"joomla\";s:4:\"code\";i:60012;s:3:\"src\";s:11:\"fontawesome\";}i:621;a:4:{s:3:\"uid\";s:32:\"486f6d0a05aef9e65eeb07be26793bd3\";s:3:\"css\";s:8:\"jsfiddle\";s:4:\"code\";i:60013;s:3:\"src\";s:11:\"fontawesome\";}i:622;a:4:{s:3:\"uid\";s:32:\"5dcf6620378353c5b0089b12d961fedf\";s:3:\"css\";s:6:\"lastfm\";s:4:\"code\";i:60014;s:3:\"src\";s:11:\"fontawesome\";}i:623;a:4:{s:3:\"uid\";s:32:\"32e335f0cd5c4fcc692af6fa742f6b7e\";s:3:\"css\";s:14:\"lastfm-squared\";s:4:\"code\";i:60015;s:3:\"src\";s:11:\"fontawesome\";}i:624;a:4:{s:3:\"uid\";s:32:\"f78244d4753a3aa2be87d56b858d148d\";s:3:\"css\";s:7:\"leanpub\";s:4:\"code\";i:60016;s:3:\"src\";s:11:\"fontawesome\";}i:625;a:4:{s:3:\"uid\";s:32:\"1145676a91138011729fa2909997af66\";s:3:\"css\";s:16:\"linkedin-squared\";s:4:\"code\";i:60017;s:3:\"src\";s:11:\"fontawesome\";}i:626;a:4:{s:3:\"uid\";s:32:\"47a35af762c8e06f3d152750134c8750\";s:3:\"css\";s:5:\"linux\";s:4:\"code\";i:60018;s:3:\"src\";s:11:\"fontawesome\";}i:627;a:4:{s:3:\"uid\";s:32:\"e9107949dd6c9e8ab2b29ae07156e38c\";s:3:\"css\";s:8:\"linkedin\";s:4:\"code\";i:60019;s:3:\"src\";s:11:\"fontawesome\";}i:628;a:4:{s:3:\"uid\";s:32:\"fcdc6d7a89771d2dbd38eb719aafb2ff\";s:3:\"css\";s:6:\"maxcdn\";s:4:\"code\";i:60020;s:3:\"src\";s:11:\"fontawesome\";}i:629;a:4:{s:3:\"uid\";s:32:\"9b2e17ef8fc33eb2a1c8b5953d51c595\";s:3:\"css\";s:8:\"meanpath\";s:4:\"code\";i:60021;s:3:\"src\";s:11:\"fontawesome\";}i:630;a:4:{s:3:\"uid\";s:32:\"da8a58b1deff73d1ba89ba1172ca4bcc\";s:3:\"css\";s:6:\"openid\";s:4:\"code\";i:60022;s:3:\"src\";s:11:\"fontawesome\";}i:631;a:4:{s:3:\"uid\";s:32:\"bbf50a560f95a4cce5209d47e71cbc30\";s:3:\"css\";s:9:\"pagelines\";s:4:\"code\";i:60023;s:3:\"src\";s:11:\"fontawesome\";}i:632;a:4:{s:3:\"uid\";s:32:\"1d2b426ab6db81a58547ba13d8701ad8\";s:3:\"css\";s:6:\"paypal\";s:4:\"code\";i:60024;s:3:\"src\";s:11:\"fontawesome\";}i:633;a:4:{s:3:\"uid\";s:32:\"92a4d74aa4e0549812301299020915a5\";s:3:\"css\";s:18:\"pied-piper-squared\";s:4:\"code\";i:60025;s:3:\"src\";s:11:\"fontawesome\";}i:634;a:4:{s:3:\"uid\";s:32:\"604733d6d4f7ae269a2ea97f4dc7c346\";s:3:\"css\";s:14:\"pied-piper-alt\";s:4:\"code\";i:60026;s:3:\"src\";s:11:\"fontawesome\";}i:635;a:4:{s:3:\"uid\";s:32:\"cc399e4597f157dcbf016be0b7407fea\";s:3:\"css\";s:9:\"pinterest\";s:4:\"code\";i:60027;s:3:\"src\";s:11:\"fontawesome\";}i:636;a:4:{s:3:\"uid\";s:32:\"da851b7c1f84ee83f93b29ae613558dc\";s:3:\"css\";s:17:\"pinterest-circled\";s:4:\"code\";i:60028;s:3:\"src\";s:11:\"fontawesome\";}i:637;a:4:{s:3:\"uid\";s:32:\"79689c4c425b7cdaa2746f510e81e27a\";s:3:\"css\";s:17:\"pinterest-squared\";s:4:\"code\";i:60029;s:3:\"src\";s:11:\"fontawesome\";}i:638;a:4:{s:3:\"uid\";s:32:\"657ff9fe5df74f1993937aa4b19cf909\";s:3:\"css\";s:2:\"qq\";s:4:\"code\";i:60030;s:3:\"src\";s:11:\"fontawesome\";}i:639;a:4:{s:3:\"uid\";s:32:\"9121e3eb89863f67c8bda378eea01a93\";s:3:\"css\";s:6:\"reddit\";s:4:\"code\";i:60031;s:3:\"src\";s:11:\"fontawesome\";}i:640;a:4:{s:3:\"uid\";s:32:\"4fc515c6a083b42e628273ab06cb2a90\";s:3:\"css\";s:14:\"reddit-squared\";s:4:\"code\";i:60032;s:3:\"src\";s:11:\"fontawesome\";}i:641;a:4:{s:3:\"uid\";s:32:\"cfa8a2588cab42a6ff7ba81eb4fec21b\";s:3:\"css\";s:6:\"renren\";s:4:\"code\";i:60033;s:3:\"src\";s:11:\"fontawesome\";}i:642;a:4:{s:3:\"uid\";s:32:\"281020881dd80ef01d0369bf4b80ebef\";s:3:\"css\";s:6:\"sellsy\";s:4:\"code\";i:60034;s:3:\"src\";s:11:\"fontawesome\";}i:643;a:4:{s:3:\"uid\";s:32:\"770fafc9392963133bb03b4ad4ed3a28\";s:3:\"css\";s:12:\"shirtsinbulk\";s:4:\"code\";i:60035;s:3:\"src\";s:11:\"fontawesome\";}i:644;a:4:{s:3:\"uid\";s:32:\"12b38aeedfa5b6672936432bc7d3082c\";s:3:\"css\";s:11:\"simplybuilt\";s:4:\"code\";i:60036;s:3:\"src\";s:11:\"fontawesome\";}i:645;a:4:{s:3:\"uid\";s:32:\"a0afa21fe64100c16eac19f4e1615c2a\";s:3:\"css\";s:8:\"skyatlas\";s:4:\"code\";i:60037;s:3:\"src\";s:11:\"fontawesome\";}i:646;a:4:{s:3:\"uid\";s:32:\"58a16628dcbd6456c61218f3d27591be\";s:3:\"css\";s:5:\"skype\";s:4:\"code\";i:60038;s:3:\"src\";s:11:\"fontawesome\";}i:647;a:4:{s:3:\"uid\";s:32:\"87276033a77d0b9b890125c3639e4f87\";s:3:\"css\";s:5:\"slack\";s:4:\"code\";i:60039;s:3:\"src\";s:11:\"fontawesome\";}i:648;a:4:{s:3:\"uid\";s:32:\"be13b8c668eb18839d5d53107725f1de\";s:3:\"css\";s:10:\"slideshare\";s:4:\"code\";i:60040;s:3:\"src\";s:11:\"fontawesome\";}i:649;a:4:{s:3:\"uid\";s:32:\"dff942d95eb1b3f1be140e622d0a7c74\";s:3:\"css\";s:10:\"soundcloud\";s:4:\"code\";i:60041;s:3:\"src\";s:11:\"fontawesome\";}i:650;a:4:{s:3:\"uid\";s:32:\"fb4794d89b77ab712ad56c0dc4c76c6b\";s:3:\"css\";s:7:\"spotify\";s:4:\"code\";i:60042;s:3:\"src\";s:11:\"fontawesome\";}i:651;a:4:{s:3:\"uid\";s:32:\"b6d6b3561d705330c7ad2155e8ee94ba\";s:3:\"css\";s:13:\"stackexchange\";s:4:\"code\";i:60043;s:3:\"src\";s:11:\"fontawesome\";}i:652;a:4:{s:3:\"uid\";s:32:\"e1597911f34fea0a188ae51fe4a2d9a9\";s:3:\"css\";s:13:\"stackoverflow\";s:4:\"code\";i:60044;s:3:\"src\";s:11:\"fontawesome\";}i:653;a:4:{s:3:\"uid\";s:32:\"2ec1790207a8ba67a7192c6af1eafec4\";s:3:\"css\";s:5:\"steam\";s:4:\"code\";i:60045;s:3:\"src\";s:11:\"fontawesome\";}i:654;a:4:{s:3:\"uid\";s:32:\"727544621cb891115c99b4a4cfed01df\";s:3:\"css\";s:13:\"steam-squared\";s:4:\"code\";i:60046;s:3:\"src\";s:11:\"fontawesome\";}i:655;a:4:{s:3:\"uid\";s:32:\"3958d12510001a1a172f088893506c27\";s:3:\"css\";s:11:\"stumbleupon\";s:4:\"code\";i:60047;s:3:\"src\";s:11:\"fontawesome\";}i:656;a:4:{s:3:\"uid\";s:32:\"7377e22d1e1d2dd079f87b05fb6a11a3\";s:3:\"css\";s:19:\"stumbleupon-circled\";s:4:\"code\";i:60048;s:3:\"src\";s:11:\"fontawesome\";}i:657;a:4:{s:3:\"uid\";s:32:\"d9b33592f56a02af69a36aa64ed452fc\";s:3:\"css\";s:13:\"tencent-weibo\";s:4:\"code\";i:60049;s:3:\"src\";s:11:\"fontawesome\";}i:658;a:4:{s:3:\"uid\";s:32:\"b846892636bd74112998bb159bdddf27\";s:3:\"css\";s:6:\"trello\";s:4:\"code\";i:60050;s:3:\"src\";s:11:\"fontawesome\";}i:659;a:4:{s:3:\"uid\";s:32:\"43fcf807461234935e65261328e1dff6\";s:3:\"css\";s:6:\"tumblr\";s:4:\"code\";i:60051;s:3:\"src\";s:11:\"fontawesome\";}i:660;a:4:{s:3:\"uid\";s:32:\"5b79895d979c408282b4e92fa7db8e82\";s:3:\"css\";s:14:\"tumblr-squared\";s:4:\"code\";i:60052;s:3:\"src\";s:11:\"fontawesome\";}i:661;a:4:{s:3:\"uid\";s:32:\"e70df9acbabaebfbbf9c1dbc3e52ab13\";s:3:\"css\";s:6:\"twitch\";s:4:\"code\";i:60053;s:3:\"src\";s:11:\"fontawesome\";}i:662;a:4:{s:3:\"uid\";s:32:\"906348dc798a0d42715cc97c875e3ac6\";s:3:\"css\";s:15:\"twitter-squared\";s:4:\"code\";i:60054;s:3:\"src\";s:11:\"fontawesome\";}i:663;a:4:{s:3:\"uid\";s:32:\"627abcdb627cb1789e009c08e2678ef9\";s:3:\"css\";s:7:\"twitter\";s:4:\"code\";i:60055;s:3:\"src\";s:11:\"fontawesome\";}i:664;a:4:{s:3:\"uid\";s:32:\"1f66490bf24c99e2c56b866d8fbd0372\";s:3:\"css\";s:13:\"vimeo-squared\";s:4:\"code\";i:60056;s:3:\"src\";s:11:\"fontawesome\";}i:665;a:4:{s:3:\"uid\";s:32:\"676cf66256441f09e4934ae6378b3e2d\";s:3:\"css\";s:4:\"vine\";s:4:\"code\";i:60057;s:3:\"src\";s:11:\"fontawesome\";}i:666;a:4:{s:3:\"uid\";s:32:\"f3d95e13eb43f3f6b8efe1eb424a1e3b\";s:3:\"css\";s:9:\"vkontakte\";s:4:\"code\";i:60058;s:3:\"src\";s:11:\"fontawesome\";}i:667;a:4:{s:3:\"uid\";s:32:\"9d3e9faf68fd4e12def853f0d4e1173b\";s:3:\"css\";s:8:\"whatsapp\";s:4:\"code\";i:60059;s:3:\"src\";s:11:\"fontawesome\";}i:668;a:4:{s:3:\"uid\";s:32:\"34cb6ce62bf3f1efd59e2f5eb0d79f82\";s:3:\"css\";s:6:\"wechat\";s:4:\"code\";i:60060;s:3:\"src\";s:11:\"fontawesome\";}i:669;a:4:{s:3:\"uid\";s:32:\"9854b94688e31450fc76aae4c2a45dff\";s:3:\"css\";s:5:\"weibo\";s:4:\"code\";i:60061;s:3:\"src\";s:11:\"fontawesome\";}i:670;a:4:{s:3:\"uid\";s:32:\"8aff323697468c4a63993cde00386ec6\";s:3:\"css\";s:7:\"windows\";s:4:\"code\";i:60062;s:3:\"src\";s:11:\"fontawesome\";}i:671;a:4:{s:3:\"uid\";s:32:\"39f52f80e1864df5e5022d7f0f5ff86f\";s:3:\"css\";s:9:\"wordpress\";s:4:\"code\";i:60063;s:3:\"src\";s:11:\"fontawesome\";}i:672;a:4:{s:3:\"uid\";s:32:\"11ebb30e17efcd988a228ade5d3e8c74\";s:3:\"css\";s:4:\"xing\";s:4:\"code\";i:60064;s:3:\"src\";s:11:\"fontawesome\";}i:673;a:4:{s:3:\"uid\";s:32:\"f7dff44258aa565cbe35565be350b58d\";s:3:\"css\";s:12:\"xing-squared\";s:4:\"code\";i:60065;s:3:\"src\";s:11:\"fontawesome\";}i:674;a:4:{s:3:\"uid\";s:32:\"7a48de2ac7ca47c78d6c279996ee6250\";s:3:\"css\";s:4:\"yelp\";s:4:\"code\";i:60066;s:3:\"src\";s:11:\"fontawesome\";}i:675;a:4:{s:3:\"uid\";s:32:\"a9862b9d5197886c1ad693ecd7120b31\";s:3:\"css\";s:7:\"youtube\";s:4:\"code\";i:60067;s:3:\"src\";s:11:\"fontawesome\";}i:676;a:4:{s:3:\"uid\";s:32:\"ba071f2b01f1fed40d8e2366434b6f42\";s:3:\"css\";s:5:\"yahoo\";s:4:\"code\";i:60068;s:3:\"src\";s:11:\"fontawesome\";}i:677;a:4:{s:3:\"uid\";s:32:\"e331ff486a299c6bdf0056426c8fac53\";s:3:\"css\";s:15:\"youtube-squared\";s:4:\"code\";i:60069;s:3:\"src\";s:11:\"fontawesome\";}i:678;a:4:{s:3:\"uid\";s:32:\"47a1f80457068fbeab69fdb83d7d0817\";s:3:\"css\";s:12:\"youtube-play\";s:4:\"code\";i:60070;s:3:\"src\";s:11:\"fontawesome\";}i:679;a:4:{s:3:\"uid\";s:32:\"2c2ca8a96b31781c9c8056d05c0a8980\";s:3:\"css\";s:5:\"blank\";s:4:\"code\";i:60071;s:3:\"src\";s:11:\"fontawesome\";}i:680;a:4:{s:3:\"uid\";s:32:\"5e0191587645a9f5d514ed4b0a0e008a\";s:3:\"css\";s:5:\"lemon\";s:4:\"code\";i:60072;s:3:\"src\";s:11:\"fontawesome\";}i:681;a:4:{s:3:\"uid\";s:32:\"39e2e6682c28e1e3b5f49825a19717c4\";s:3:\"css\";s:4:\"note\";s:4:\"code\";i:60073;s:3:\"src\";s:6:\"entypo\";}i:682;a:4:{s:3:\"uid\";s:32:\"fda731b5a4026685e1a9c7e64228e2b2\";s:3:\"css\";s:11:\"note-beamed\";s:4:\"code\";i:60074;s:3:\"src\";s:6:\"entypo\";}i:683;a:4:{s:3:\"uid\";s:32:\"f2a036a85c0a6a46b0c9709a70e1bb70\";s:3:\"css\";s:7:\"music-1\";s:4:\"code\";i:60075;s:3:\"src\";s:6:\"entypo\";}i:684;a:4:{s:3:\"uid\";s:32:\"7222571caa5c15f83dcfd447c58d68d9\";s:3:\"css\";s:8:\"search-1\";s:4:\"code\";i:60076;s:3:\"src\";s:6:\"entypo\";}i:685;a:4:{s:3:\"uid\";s:32:\"c9b928dc82d7d77033644fcf59dca3b3\";s:3:\"css\";s:10:\"flashlight\";s:4:\"code\";i:60077;s:3:\"src\";s:6:\"entypo\";}i:686;a:4:{s:3:\"uid\";s:32:\"e335adbc2d898c7d85d40c507796e7b4\";s:3:\"css\";s:6:\"mail-1\";s:4:\"code\";i:60078;s:3:\"src\";s:6:\"entypo\";}i:687;a:4:{s:3:\"uid\";s:32:\"0eabe5f8d71cc838484ff39436426d2d\";s:3:\"css\";s:7:\"heart-1\";s:4:\"code\";i:60079;s:3:\"src\";s:6:\"entypo\";}i:688;a:4:{s:3:\"uid\";s:32:\"d18071bbf8f0a8cec8d1f556c91c6af0\";s:3:\"css\";s:13:\"heart-empty-1\";s:4:\"code\";i:60080;s:3:\"src\";s:6:\"entypo\";}i:689;a:4:{s:3:\"uid\";s:32:\"25b34dea4784f72c710454f32ff8fa2b\";s:3:\"css\";s:6:\"star-1\";s:4:\"code\";i:60081;s:3:\"src\";s:6:\"entypo\";}i:690;a:4:{s:3:\"uid\";s:32:\"0e3f1335f83cca67329b2c4bcb3aaec5\";s:3:\"css\";s:12:\"star-empty-1\";s:4:\"code\";i:60082;s:3:\"src\";s:6:\"entypo\";}i:691;a:4:{s:3:\"uid\";s:32:\"bbd66ef66bb8fa9edde54d9a90b89150\";s:3:\"css\";s:6:\"user-1\";s:4:\"code\";i:60083;s:3:\"src\";s:6:\"entypo\";}i:692;a:4:{s:3:\"uid\";s:32:\"ecf8edb95c3f45eb433b4cce7ba9f740\";s:3:\"css\";s:7:\"users-1\";s:4:\"code\";i:60084;s:3:\"src\";s:6:\"entypo\";}i:693;a:4:{s:3:\"uid\";s:32:\"6274e0601f2feef7eced89146e708de0\";s:3:\"css\";s:8:\"user-add\";s:4:\"code\";i:60085;s:3:\"src\";s:6:\"entypo\";}i:694;a:4:{s:3:\"uid\";s:32:\"6341ebcbe1ed1f6777c1b9527ead368e\";s:3:\"css\";s:7:\"video-1\";s:4:\"code\";i:60086;s:3:\"src\";s:6:\"entypo\";}i:695;a:4:{s:3:\"uid\";s:32:\"3def559c3c39b8500882e02892b7daa8\";s:3:\"css\";s:9:\"picture-1\";s:4:\"code\";i:60087;s:3:\"src\";s:6:\"entypo\";}i:696;a:4:{s:3:\"uid\";s:32:\"85017ab6ca074831a8de771b40e9640c\";s:3:\"css\";s:8:\"camera-1\";s:4:\"code\";i:60088;s:3:\"src\";s:6:\"entypo\";}i:697;a:4:{s:3:\"uid\";s:32:\"5e9f01871d44e56b45ecbfd00f4dbc3a\";s:3:\"css\";s:6:\"layout\";s:4:\"code\";i:60089;s:3:\"src\";s:6:\"entypo\";}i:698;a:4:{s:3:\"uid\";s:32:\"2cfb3f2b46b34a1790aec0aa846297b6\";s:3:\"css\";s:6:\"menu-1\";s:4:\"code\";i:60090;s:3:\"src\";s:6:\"entypo\";}i:699;a:4:{s:3:\"uid\";s:32:\"14017aae737730faeda4a6fd8fb3a5f0\";s:3:\"css\";s:7:\"check-1\";s:4:\"code\";i:60091;s:3:\"src\";s:6:\"entypo\";}i:700;a:4:{s:3:\"uid\";s:32:\"c709da589c923ba3c2ad48d9fc563e93\";s:3:\"css\";s:8:\"cancel-2\";s:4:\"code\";i:60092;s:3:\"src\";s:6:\"entypo\";}i:701;a:4:{s:3:\"uid\";s:32:\"c759418c008e9562944080fee617fc76\";s:3:\"css\";s:16:\"cancel-circled-1\";s:4:\"code\";i:60093;s:3:\"src\";s:6:\"entypo\";}i:702;a:4:{s:3:\"uid\";s:32:\"bf45c39702763f1803b550c36a0ceb12\";s:3:\"css\";s:14:\"cancel-squared\";s:4:\"code\";i:60094;s:3:\"src\";s:6:\"entypo\";}i:703;a:4:{s:3:\"uid\";s:32:\"70370693ada58ef0a60fa0984fe8d52a\";s:3:\"css\";s:6:\"plus-1\";s:4:\"code\";i:60095;s:3:\"src\";s:6:\"entypo\";}i:704;a:4:{s:3:\"uid\";s:32:\"a66cdc7278e6b33b8bd44a141f5e1a8d\";s:3:\"css\";s:14:\"plus-circled-1\";s:4:\"code\";i:60096;s:3:\"src\";s:6:\"entypo\";}i:705;a:4:{s:3:\"uid\";s:32:\"9e1c33b6849ceb08db8acfaf02188b7d\";s:3:\"css\";s:14:\"plus-squared-1\";s:4:\"code\";i:60097;s:3:\"src\";s:6:\"entypo\";}i:706;a:4:{s:3:\"uid\";s:32:\"1256e3054823e304d7e452a589cf8bb8\";s:3:\"css\";s:7:\"minus-1\";s:4:\"code\";i:60098;s:3:\"src\";s:6:\"entypo\";}i:707;a:4:{s:3:\"uid\";s:32:\"3eb93689881ad0804f87052a53edc2b6\";s:3:\"css\";s:15:\"minus-circled-1\";s:4:\"code\";i:60099;s:3:\"src\";s:6:\"entypo\";}i:708;a:4:{s:3:\"uid\";s:32:\"4ffa544c1a81c905f0a8a5745d8b9faa\";s:3:\"css\";s:15:\"minus-squared-1\";s:4:\"code\";i:60100;s:3:\"src\";s:6:\"entypo\";}i:709;a:4:{s:3:\"uid\";s:32:\"3a230e539a4f3b904debd04c6c155034\";s:3:\"css\";s:6:\"help-1\";s:4:\"code\";i:60101;s:3:\"src\";s:6:\"entypo\";}i:710;a:4:{s:3:\"uid\";s:32:\"de9a631a7d18106aea1c89ba51b1990a\";s:3:\"css\";s:14:\"help-circled-1\";s:4:\"code\";i:60102;s:3:\"src\";s:6:\"entypo\";}i:711;a:4:{s:3:\"uid\";s:32:\"63b86fedd4ee9ad2105f54f4888e7088\";s:3:\"css\";s:6:\"info-1\";s:4:\"code\";i:60103;s:3:\"src\";s:6:\"entypo\";}i:712;a:4:{s:3:\"uid\";s:32:\"7e4164950ffa4990961958b2d6318658\";s:3:\"css\";s:14:\"info-circled-1\";s:4:\"code\";i:60104;s:3:\"src\";s:6:\"entypo\";}i:713;a:4:{s:3:\"uid\";s:32:\"3ba4275937db277075fc47d6b5a69a2e\";s:3:\"css\";s:4:\"back\";s:4:\"code\";i:60105;s:3:\"src\";s:6:\"entypo\";}i:714;a:4:{s:3:\"uid\";s:32:\"513ac180ff85bd275f2b736720cbbf5e\";s:3:\"css\";s:6:\"home-1\";s:4:\"code\";i:60106;s:3:\"src\";s:6:\"entypo\";}i:715;a:4:{s:3:\"uid\";s:32:\"815503841e980c848f55e0271deacead\";s:3:\"css\";s:6:\"link-1\";s:4:\"code\";i:60107;s:3:\"src\";s:6:\"entypo\";}i:716;a:4:{s:3:\"uid\";s:32:\"44b9e75612c5fad5505edd70d071651f\";s:3:\"css\";s:8:\"attach-1\";s:4:\"code\";i:60108;s:3:\"src\";s:6:\"entypo\";}i:717;a:4:{s:3:\"uid\";s:32:\"1a7104205ea96e6f40ac716d0ca72f21\";s:3:\"css\";s:6:\"lock-1\";s:4:\"code\";i:60109;s:3:\"src\";s:6:\"entypo\";}i:718;a:4:{s:3:\"uid\";s:32:\"e81fc3a0d39ace6ee735d7b24eedd56d\";s:3:\"css\";s:11:\"lock-open-1\";s:4:\"code\";i:60110;s:3:\"src\";s:6:\"entypo\";}i:719;a:4:{s:3:\"uid\";s:32:\"25fc99a30fecc4021fdcae5fff5ba9ac\";s:3:\"css\";s:5:\"eye-1\";s:4:\"code\";i:60111;s:3:\"src\";s:6:\"entypo\";}i:720;a:4:{s:3:\"uid\";s:32:\"875ab0f6d417223f6ec76ff7f0a4baed\";s:3:\"css\";s:5:\"tag-1\";s:4:\"code\";i:60112;s:3:\"src\";s:6:\"entypo\";}i:721;a:4:{s:3:\"uid\";s:32:\"23912d5623126e14b7b137c3ba557168\";s:3:\"css\";s:10:\"bookmark-1\";s:4:\"code\";i:60113;s:3:\"src\";s:6:\"entypo\";}i:722;a:4:{s:3:\"uid\";s:32:\"8538a2249db7f07ae75411886732fb87\";s:3:\"css\";s:9:\"bookmarks\";s:4:\"code\";i:60114;s:3:\"src\";s:6:\"entypo\";}i:723;a:4:{s:3:\"uid\";s:32:\"1d2a6c3d9236b88b0f185c7c4530fa52\";s:3:\"css\";s:6:\"flag-1\";s:4:\"code\";i:60115;s:3:\"src\";s:6:\"entypo\";}i:724;a:4:{s:3:\"uid\";s:32:\"7ad4d2306ebda8452e5e3eff3cd8241c\";s:3:\"css\";s:11:\"thumbs-up-1\";s:4:\"code\";i:60116;s:3:\"src\";s:6:\"entypo\";}i:725;a:4:{s:3:\"uid\";s:32:\"429fba993b729174468a9493613ad1ba\";s:3:\"css\";s:13:\"thumbs-down-1\";s:4:\"code\";i:60117;s:3:\"src\";s:6:\"entypo\";}i:726;a:4:{s:3:\"uid\";s:32:\"b08cfe8039de2ce815686aced2caef06\";s:3:\"css\";s:10:\"download-1\";s:4:\"code\";i:60118;s:3:\"src\";s:6:\"entypo\";}i:727;a:4:{s:3:\"uid\";s:32:\"44199a54057e6e264fde61a49b034171\";s:3:\"css\";s:8:\"upload-1\";s:4:\"code\";i:60119;s:3:\"src\";s:6:\"entypo\";}i:728;a:4:{s:3:\"uid\";s:32:\"5d595124cecf472869d1cdc020da0ccc\";s:3:\"css\";s:14:\"upload-cloud-1\";s:4:\"code\";i:60120;s:3:\"src\";s:6:\"entypo\";}i:729;a:4:{s:3:\"uid\";s:32:\"b6fc2f656ef87275889422e19550680a\";s:3:\"css\";s:7:\"reply-1\";s:4:\"code\";i:60121;s:3:\"src\";s:6:\"entypo\";}i:730;a:4:{s:3:\"uid\";s:32:\"1a4b54ba5618e5364fc47a3d26c1cf59\";s:3:\"css\";s:11:\"reply-all-1\";s:4:\"code\";i:60122;s:3:\"src\";s:6:\"entypo\";}i:731;a:4:{s:3:\"uid\";s:32:\"ec347024a3640deebeeab53fd0d5ad03\";s:3:\"css\";s:9:\"forward-1\";s:4:\"code\";i:60123;s:3:\"src\";s:6:\"entypo\";}i:732;a:4:{s:3:\"uid\";s:32:\"c3e5dafba1739ef33cc574c7484febf7\";s:3:\"css\";s:5:\"quote\";s:4:\"code\";i:60124;s:3:\"src\";s:6:\"entypo\";}i:733;a:4:{s:3:\"uid\";s:32:\"b6f32db98a3de777f5ae3005191b1831\";s:3:\"css\";s:6:\"code-1\";s:4:\"code\";i:60125;s:3:\"src\";s:6:\"entypo\";}i:734;a:4:{s:3:\"uid\";s:32:\"390d6d13398cbf8c8c3c5493f7d34088\";s:3:\"css\";s:8:\"export-1\";s:4:\"code\";i:60126;s:3:\"src\";s:6:\"entypo\";}i:735;a:4:{s:3:\"uid\";s:32:\"c77fd2fd065b5fe16d6f2b41e190b266\";s:3:\"css\";s:8:\"pencil-1\";s:4:\"code\";i:60127;s:3:\"src\";s:6:\"entypo\";}i:736;a:4:{s:3:\"uid\";s:32:\"bcb868184ff9c35f8aef564f50c0d649\";s:3:\"css\";s:7:\"feather\";s:4:\"code\";i:60128;s:3:\"src\";s:6:\"entypo\";}i:737;a:4:{s:3:\"uid\";s:32:\"28f124a10127a47b9d9472699193d75a\";s:3:\"css\";s:7:\"print-1\";s:4:\"code\";i:60129;s:3:\"src\";s:6:\"entypo\";}i:738;a:4:{s:3:\"uid\";s:32:\"216891b0093d4dbef19877d5b00d1b16\";s:3:\"css\";s:9:\"retweet-1\";s:4:\"code\";i:60130;s:3:\"src\";s:6:\"entypo\";}i:739;a:4:{s:3:\"uid\";s:32:\"005a38f6af74b31aeb817fedb09d2175\";s:3:\"css\";s:10:\"keyboard-1\";s:4:\"code\";i:60131;s:3:\"src\";s:6:\"entypo\";}i:740;a:4:{s:3:\"uid\";s:32:\"16890362e811b4cb8de36282b071fe30\";s:3:\"css\";s:9:\"comment-1\";s:4:\"code\";i:60132;s:3:\"src\";s:6:\"entypo\";}i:741;a:4:{s:3:\"uid\";s:32:\"2c0b53280f82068f6bab4e2200025d9f\";s:3:\"css\";s:6:\"chat-1\";s:4:\"code\";i:60133;s:3:\"src\";s:6:\"entypo\";}i:742;a:4:{s:3:\"uid\";s:32:\"2c5335c6e56b876139d7a58ab2f4b2fe\";s:3:\"css\";s:6:\"bell-1\";s:4:\"code\";i:60134;s:3:\"src\";s:6:\"entypo\";}i:743;a:4:{s:3:\"uid\";s:32:\"97902f87200ce74d181044df02a0458d\";s:3:\"css\";s:11:\"attention-1\";s:4:\"code\";i:60135;s:3:\"src\";s:6:\"entypo\";}i:744;a:4:{s:3:\"uid\";s:32:\"39a5a0d7ce8342d149373b2ce219503a\";s:3:\"css\";s:5:\"alert\";s:4:\"code\";i:60136;s:3:\"src\";s:6:\"entypo\";}i:745;a:4:{s:3:\"uid\";s:32:\"457c8e2b305e7af74c1be4f07a01ca92\";s:3:\"css\";s:5:\"vcard\";s:4:\"code\";i:60137;s:3:\"src\";s:6:\"entypo\";}i:746;a:4:{s:3:\"uid\";s:32:\"540b6a4262be769515c79700618b4aea\";s:3:\"css\";s:7:\"address\";s:4:\"code\";i:60138;s:3:\"src\";s:6:\"entypo\";}i:747;a:4:{s:3:\"uid\";s:32:\"a42b598e4298f3319b25a2702a02e7ff\";s:3:\"css\";s:10:\"location-1\";s:4:\"code\";i:60139;s:3:\"src\";s:6:\"entypo\";}i:748;a:4:{s:3:\"uid\";s:32:\"64f5a50cf7ac972a56a9a511acb5d28e\";s:3:\"css\";s:3:\"map\";s:4:\"code\";i:60140;s:3:\"src\";s:6:\"entypo\";}i:749;a:4:{s:3:\"uid\";s:32:\"f8513213799b244e66b2836aeee88531\";s:3:\"css\";s:11:\"direction-1\";s:4:\"code\";i:60141;s:3:\"src\";s:6:\"entypo\";}i:750;a:4:{s:3:\"uid\";s:32:\"c117f17c0316ef71fb2a658c4c273002\";s:3:\"css\";s:9:\"compass-1\";s:4:\"code\";i:60142;s:3:\"src\";s:6:\"entypo\";}i:751;a:4:{s:3:\"uid\";s:32:\"9bdc80f58999873c5a8079ad2d7f4143\";s:3:\"css\";s:3:\"cup\";s:4:\"code\";i:60143;s:3:\"src\";s:6:\"entypo\";}i:752;a:4:{s:3:\"uid\";s:32:\"2626e3a1bbcd90e45849af3b58a1d594\";s:3:\"css\";s:7:\"trash-1\";s:4:\"code\";i:60144;s:3:\"src\";s:6:\"entypo\";}i:753;a:4:{s:3:\"uid\";s:32:\"49bd3e825b8267f976f6d1ad391e2f4d\";s:3:\"css\";s:5:\"doc-1\";s:4:\"code\";i:60145;s:3:\"src\";s:6:\"entypo\";}i:754;a:4:{s:3:\"uid\";s:32:\"922ab2cb66943a83de969990289ef1dc\";s:3:\"css\";s:6:\"docs-1\";s:4:\"code\";i:60146;s:3:\"src\";s:6:\"entypo\";}i:755;a:4:{s:3:\"uid\";s:32:\"8782cc70184b33096ae927590d1fadc4\";s:3:\"css\";s:13:\"doc-landscape\";s:4:\"code\";i:60147;s:3:\"src\";s:6:\"entypo\";}i:756;a:4:{s:3:\"uid\";s:32:\"1189604bf305b6b03a74685ce60e6632\";s:3:\"css\";s:10:\"doc-text-1\";s:4:\"code\";i:60148;s:3:\"src\";s:6:\"entypo\";}i:757;a:4:{s:3:\"uid\";s:32:\"1d7c1d30ad49a988556273a238097c2a\";s:3:\"css\";s:14:\"doc-text-inv-1\";s:4:\"code\";i:60149;s:3:\"src\";s:6:\"entypo\";}i:758;a:4:{s:3:\"uid\";s:32:\"da0fd38d651815e3a12f6c030ff1fe5b\";s:3:\"css\";s:11:\"newspaper-1\";s:4:\"code\";i:60150;s:3:\"src\";s:6:\"entypo\";}i:759;a:4:{s:3:\"uid\";s:32:\"51727ca007aa35ceabcaffc28934faee\";s:3:\"css\";s:9:\"book-open\";s:4:\"code\";i:60151;s:3:\"src\";s:6:\"entypo\";}i:760;a:4:{s:3:\"uid\";s:32:\"48b79f27e4798f23bafa07b55dbe5b73\";s:3:\"css\";s:6:\"book-1\";s:4:\"code\";i:60152;s:3:\"src\";s:6:\"entypo\";}i:761;a:4:{s:3:\"uid\";s:32:\"0ccb084ddeeae372673793ed0b45bb4a\";s:3:\"css\";s:8:\"folder-1\";s:4:\"code\";i:60153;s:3:\"src\";s:6:\"entypo\";}i:762;a:4:{s:3:\"uid\";s:32:\"96ea1be71f597a5bdfc8f791ada4f651\";s:3:\"css\";s:7:\"archive\";s:4:\"code\";i:60154;s:3:\"src\";s:6:\"entypo\";}i:763;a:4:{s:3:\"uid\";s:32:\"cc05df515bebe11df3ada0a5910a8f6d\";s:3:\"css\";s:5:\"box-1\";s:4:\"code\";i:60155;s:3:\"src\";s:6:\"entypo\";}i:764;a:4:{s:3:\"uid\";s:32:\"3e617d8049807e128c80d0344ba09e37\";s:3:\"css\";s:5:\"rss-1\";s:4:\"code\";i:60156;s:3:\"src\";s:6:\"entypo\";}i:765;a:4:{s:3:\"uid\";s:32:\"5854855e963044f93b15738a5bb27a29\";s:3:\"css\";s:7:\"phone-1\";s:4:\"code\";i:60157;s:3:\"src\";s:6:\"entypo\";}i:766;a:4:{s:3:\"uid\";s:32:\"bc64550dd022ce21604f97309b346cea\";s:3:\"css\";s:5:\"cog-1\";s:4:\"code\";i:60158;s:3:\"src\";s:6:\"entypo\";}i:767;a:4:{s:3:\"uid\";s:32:\"6a7b9d4863bb7e6c79e9457a72d689b6\";s:3:\"css\";s:5:\"tools\";s:4:\"code\";i:60159;s:3:\"src\";s:6:\"entypo\";}i:768;a:4:{s:3:\"uid\";s:32:\"91426c82d94428a33353e495418435e3\";s:3:\"css\";s:7:\"share-1\";s:4:\"code\";i:60160;s:3:\"src\";s:6:\"entypo\";}i:769;a:4:{s:3:\"uid\";s:32:\"e4536ab890a215f2fe8952de5c2fe354\";s:3:\"css\";s:9:\"shareable\";s:4:\"code\";i:60161;s:3:\"src\";s:6:\"entypo\";}i:770;a:4:{s:3:\"uid\";s:32:\"e126987944593dfee041f8e2a68145db\";s:3:\"css\";s:8:\"basket-1\";s:4:\"code\";i:60162;s:3:\"src\";s:6:\"entypo\";}i:771;a:4:{s:3:\"uid\";s:32:\"2c71ee1c65e1992ba32d5ffc5ee7f337\";s:3:\"css\";s:3:\"bag\";s:4:\"code\";i:60163;s:3:\"src\";s:6:\"entypo\";}i:772;a:4:{s:3:\"uid\";s:32:\"413717f5ea649e8d8b93938be277264a\";s:3:\"css\";s:10:\"calendar-1\";s:4:\"code\";i:60164;s:3:\"src\";s:6:\"entypo\";}i:773;a:4:{s:3:\"uid\";s:32:\"a204f0fa972408eaae5a363c444991b2\";s:3:\"css\";s:7:\"login-1\";s:4:\"code\";i:60165;s:3:\"src\";s:6:\"entypo\";}i:774;a:4:{s:3:\"uid\";s:32:\"2d76f2c8d13be40694ecadfea7fb83c3\";s:3:\"css\";s:8:\"logout-1\";s:4:\"code\";i:60166;s:3:\"src\";s:6:\"entypo\";}i:775;a:4:{s:3:\"uid\";s:32:\"1e099a876c8a6a83f10c9bafa9886614\";s:3:\"css\";s:5:\"mic-1\";s:4:\"code\";i:60167;s:3:\"src\";s:6:\"entypo\";}i:776;a:4:{s:3:\"uid\";s:32:\"2f750a9be253e8e451209574336e7020\";s:3:\"css\";s:6:\"mute-1\";s:4:\"code\";i:60168;s:3:\"src\";s:6:\"entypo\";}i:777;a:4:{s:3:\"uid\";s:32:\"ef51920c7a9bed4d87f53709db115e34\";s:3:\"css\";s:5:\"sound\";s:4:\"code\";i:60169;s:3:\"src\";s:6:\"entypo\";}i:778;a:4:{s:3:\"uid\";s:32:\"edd88296295d95d6510e66d9a6bbd6c3\";s:3:\"css\";s:6:\"volume\";s:4:\"code\";i:60170;s:3:\"src\";s:6:\"entypo\";}i:779;a:4:{s:3:\"uid\";s:32:\"8663320a860b00f26e94d3d15c9ba99a\";s:3:\"css\";s:7:\"clock-1\";s:4:\"code\";i:60171;s:3:\"src\";s:6:\"entypo\";}i:780;a:4:{s:3:\"uid\";s:32:\"7f6916533c0842b6cec699fd773693d3\";s:3:\"css\";s:9:\"hourglass\";s:4:\"code\";i:60172;s:3:\"src\";s:6:\"entypo\";}i:781;a:4:{s:3:\"uid\";s:32:\"4b20e1deee87faf4c3fab735fbd4bc1a\";s:3:\"css\";s:4:\"lamp\";s:4:\"code\";i:60173;s:3:\"src\";s:6:\"entypo\";}i:782;a:4:{s:3:\"uid\";s:32:\"2d14369ed7f129e779eaa30195368218\";s:3:\"css\";s:10:\"light-down\";s:4:\"code\";i:60174;s:3:\"src\";s:6:\"entypo\";}i:783;a:4:{s:3:\"uid\";s:32:\"f8e120c48c070f8afd2d072651b4fb9f\";s:3:\"css\";s:8:\"light-up\";s:4:\"code\";i:60175;s:3:\"src\";s:6:\"entypo\";}i:784;a:4:{s:3:\"uid\";s:32:\"f6fa10cb3ffec7becb60834f50bb0182\";s:3:\"css\";s:6:\"adjust\";s:4:\"code\";i:60176;s:3:\"src\";s:6:\"entypo\";}i:785;a:4:{s:3:\"uid\";s:32:\"29e7f6072d5935d7818204d9b088508b\";s:3:\"css\";s:7:\"block-1\";s:4:\"code\";i:60177;s:3:\"src\";s:6:\"entypo\";}i:786;a:4:{s:3:\"uid\";s:32:\"3a3f65b92c9b2fcbb3a8dcd0d42ee806\";s:3:\"css\";s:13:\"resize-full-1\";s:4:\"code\";i:60178;s:3:\"src\";s:6:\"entypo\";}i:787;a:4:{s:3:\"uid\";s:32:\"108c8ac13badc00ce66da014436e6eb1\";s:3:\"css\";s:14:\"resize-small-1\";s:4:\"code\";i:60179;s:3:\"src\";s:6:\"entypo\";}i:788;a:4:{s:3:\"uid\";s:32:\"9248ce8062fb4707a6919bfe9ac1af8e\";s:3:\"css\";s:5:\"popup\";s:4:\"code\";i:60180;s:3:\"src\";s:6:\"entypo\";}i:789;a:4:{s:3:\"uid\";s:32:\"77bcf90f0c68635bab5abfb4ed736696\";s:3:\"css\";s:7:\"publish\";s:4:\"code\";i:60181;s:3:\"src\";s:6:\"entypo\";}i:790;a:4:{s:3:\"uid\";s:32:\"744a71fe4b5ab7c4f4b7cd598e9bf75a\";s:3:\"css\";s:6:\"window\";s:4:\"code\";i:60182;s:3:\"src\";s:6:\"entypo\";}i:791;a:4:{s:3:\"uid\";s:32:\"0a3192de65a73ca1501b073ad601f87d\";s:3:\"css\";s:11:\"arrow-combo\";s:4:\"code\";i:60183;s:3:\"src\";s:6:\"entypo\";}i:792;a:4:{s:3:\"uid\";s:32:\"40ef3542646bed70cb63f1290c9d98c9\";s:3:\"css\";s:14:\"down-circled-1\";s:4:\"code\";i:60184;s:3:\"src\";s:6:\"entypo\";}i:793;a:4:{s:3:\"uid\";s:32:\"0db0310883e0bdacfd1bb2d394238e8a\";s:3:\"css\";s:14:\"left-circled-1\";s:4:\"code\";i:60185;s:3:\"src\";s:6:\"entypo\";}i:794;a:4:{s:3:\"uid\";s:32:\"52725ff4d4042964bd3a60609bf3695b\";s:3:\"css\";s:15:\"right-circled-1\";s:4:\"code\";i:60186;s:3:\"src\";s:6:\"entypo\";}i:795;a:4:{s:3:\"uid\";s:32:\"64691230b90991883f94c6dfb2afc90a\";s:3:\"css\";s:12:\"up-circled-1\";s:4:\"code\";i:60187;s:3:\"src\";s:6:\"entypo\";}i:796;a:4:{s:3:\"uid\";s:32:\"8704cd847a47b64265b8bb110c8b4d62\";s:3:\"css\";s:11:\"down-open-1\";s:4:\"code\";i:60188;s:3:\"src\";s:6:\"entypo\";}i:797;a:4:{s:3:\"uid\";s:32:\"c311c48d79488965b0fab7f9cd12b6b5\";s:3:\"css\";s:11:\"left-open-1\";s:4:\"code\";i:60189;s:3:\"src\";s:6:\"entypo\";}i:798;a:4:{s:3:\"uid\";s:32:\"749e7d90a9182938180f1d2d8c33584e\";s:3:\"css\";s:12:\"right-open-1\";s:4:\"code\";i:60190;s:3:\"src\";s:6:\"entypo\";}i:799;a:4:{s:3:\"uid\";s:32:\"9c7ff134960bb5a82404e4aeaab366d9\";s:3:\"css\";s:9:\"up-open-1\";s:4:\"code\";i:60191;s:3:\"src\";s:6:\"entypo\";}i:800;a:4:{s:3:\"uid\";s:32:\"f11c9e95ae5eaa84d193e8fa1d38c6f9\";s:3:\"css\";s:14:\"down-open-mini\";s:4:\"code\";i:60192;s:3:\"src\";s:6:\"entypo\";}i:801;a:4:{s:3:\"uid\";s:32:\"592717bd601645d61517d2a584d04127\";s:3:\"css\";s:14:\"left-open-mini\";s:4:\"code\";i:60193;s:3:\"src\";s:6:\"entypo\";}i:802;a:4:{s:3:\"uid\";s:32:\"37f6cfbb4062ed0d01b351ec35c334ff\";s:3:\"css\";s:15:\"right-open-mini\";s:4:\"code\";i:60194;s:3:\"src\";s:6:\"entypo\";}i:803;a:4:{s:3:\"uid\";s:32:\"9e251fb8e9e1c71ab09683468e0479a3\";s:3:\"css\";s:12:\"up-open-mini\";s:4:\"code\";i:60195;s:3:\"src\";s:6:\"entypo\";}i:804;a:4:{s:3:\"uid\";s:32:\"289b5f92f23acf1059c93fbf401c1ad5\";s:3:\"css\";s:13:\"down-open-big\";s:4:\"code\";i:60196;s:3:\"src\";s:6:\"entypo\";}i:805;a:4:{s:3:\"uid\";s:32:\"884cfc3e6e2d456dd2a2ca0dbb9e6337\";s:3:\"css\";s:13:\"left-open-big\";s:4:\"code\";i:60197;s:3:\"src\";s:6:\"entypo\";}i:806;a:4:{s:3:\"uid\";s:32:\"004882ab2d5c418c5b2060e80596279b\";s:3:\"css\";s:14:\"right-open-big\";s:4:\"code\";i:60198;s:3:\"src\";s:6:\"entypo\";}i:807;a:4:{s:3:\"uid\";s:32:\"0805cca616b3c12714f35af4d0912c10\";s:3:\"css\";s:11:\"up-open-big\";s:4:\"code\";i:60199;s:3:\"src\";s:6:\"entypo\";}i:808;a:4:{s:3:\"uid\";s:32:\"d5098cb09be5827a2911dbab5af49ad2\";s:3:\"css\";s:6:\"down-1\";s:4:\"code\";i:60200;s:3:\"src\";s:6:\"entypo\";}i:809;a:4:{s:3:\"uid\";s:32:\"6acd5cf005d48f96787350e72bd45688\";s:3:\"css\";s:6:\"left-1\";s:4:\"code\";i:60201;s:3:\"src\";s:6:\"entypo\";}i:810;a:4:{s:3:\"uid\";s:32:\"9e67bfab0143d9511f8eef6897caeb88\";s:3:\"css\";s:7:\"right-1\";s:4:\"code\";i:60202;s:3:\"src\";s:6:\"entypo\";}i:811;a:4:{s:3:\"uid\";s:32:\"43c4064ec1260d0e55c37e0467c75cbb\";s:3:\"css\";s:4:\"up-1\";s:4:\"code\";i:60203;s:3:\"src\";s:6:\"entypo\";}i:812;a:4:{s:3:\"uid\";s:32:\"7e89c12b577c31bc91bfb61bb597f01f\";s:3:\"css\";s:10:\"down-dir-1\";s:4:\"code\";i:60204;s:3:\"src\";s:6:\"entypo\";}i:813;a:4:{s:3:\"uid\";s:32:\"9aeaf29161eb005a308bbd624d6e066a\";s:3:\"css\";s:10:\"left-dir-1\";s:4:\"code\";i:60205;s:3:\"src\";s:6:\"entypo\";}i:814;a:4:{s:3:\"uid\";s:32:\"ff9a85aa20950dcc0615a2707a2b3f8e\";s:3:\"css\";s:11:\"right-dir-1\";s:4:\"code\";i:60206;s:3:\"src\";s:6:\"entypo\";}i:815;a:4:{s:3:\"uid\";s:32:\"401b644723fb2f20b0df30cce7745c18\";s:3:\"css\";s:8:\"up-dir-1\";s:4:\"code\";i:60207;s:3:\"src\";s:6:\"entypo\";}i:816;a:4:{s:3:\"uid\";s:32:\"78944e4652d6f9b8b506eaef331308cd\";s:3:\"css\";s:9:\"down-bold\";s:4:\"code\";i:60208;s:3:\"src\";s:6:\"entypo\";}i:817;a:4:{s:3:\"uid\";s:32:\"0222089fb4194cc714dcc1ffd2525c11\";s:3:\"css\";s:9:\"left-bold\";s:4:\"code\";i:60209;s:3:\"src\";s:6:\"entypo\";}i:818;a:4:{s:3:\"uid\";s:32:\"1a90b06af8614b12d8c8a5b90cc19ab3\";s:3:\"css\";s:10:\"right-bold\";s:4:\"code\";i:60210;s:3:\"src\";s:6:\"entypo\";}i:819;a:4:{s:3:\"uid\";s:32:\"8c8f768607b8fc4c92c0f85b488e87e8\";s:3:\"css\";s:7:\"up-bold\";s:4:\"code\";i:60211;s:3:\"src\";s:6:\"entypo\";}i:820;a:4:{s:3:\"uid\";s:32:\"a30a32d49f80bb534c062ae1743ef433\";s:3:\"css\";s:9:\"down-thin\";s:4:\"code\";i:60212;s:3:\"src\";s:6:\"entypo\";}i:821;a:4:{s:3:\"uid\";s:32:\"8d8f4722d16e95290858eaf294d9d830\";s:3:\"css\";s:9:\"left-thin\";s:4:\"code\";i:60213;s:3:\"src\";s:6:\"entypo\";}i:822;a:4:{s:3:\"uid\";s:32:\"ef3eda51383ce050517892df3fc05ffc\";s:3:\"css\";s:10:\"right-thin\";s:4:\"code\";i:60214;s:3:\"src\";s:6:\"entypo\";}i:823;a:4:{s:3:\"uid\";s:32:\"dbc97808cba7d0c135c7054e7a85fb86\";s:3:\"css\";s:7:\"up-thin\";s:4:\"code\";i:60215;s:3:\"src\";s:6:\"entypo\";}i:824;a:4:{s:3:\"uid\";s:32:\"465bb89b6f204234e5787c326b4ae54c\";s:3:\"css\";s:5:\"ccw-1\";s:4:\"code\";i:60216;s:3:\"src\";s:6:\"entypo\";}i:825;a:4:{s:3:\"uid\";s:32:\"bb46b15cb78cc4cc05d3d715d522ac4d\";s:3:\"css\";s:4:\"cw-1\";s:4:\"code\";i:60217;s:3:\"src\";s:6:\"entypo\";}i:826;a:4:{s:3:\"uid\";s:32:\"3bd18d47a12b8709e9f4fe9ead4f7518\";s:3:\"css\";s:10:\"arrows-ccw\";s:4:\"code\";i:60218;s:3:\"src\";s:6:\"entypo\";}i:827;a:4:{s:3:\"uid\";s:32:\"fa0118a65fc8dee739469f6901bbd189\";s:3:\"css\";s:12:\"level-down-1\";s:4:\"code\";i:60219;s:3:\"src\";s:6:\"entypo\";}i:828;a:4:{s:3:\"uid\";s:32:\"5308d824454af8ec7835786e272361a9\";s:3:\"css\";s:10:\"level-up-1\";s:4:\"code\";i:60220;s:3:\"src\";s:6:\"entypo\";}i:829;a:4:{s:3:\"uid\";s:32:\"3d349daaea304032a7669b4f24931b6c\";s:3:\"css\";s:9:\"shuffle-1\";s:4:\"code\";i:60221;s:3:\"src\";s:6:\"entypo\";}i:830;a:4:{s:3:\"uid\";s:32:\"8e0220796066428d6ddea96a4f1b5131\";s:3:\"css\";s:4:\"loop\";s:4:\"code\";i:60222;s:3:\"src\";s:6:\"entypo\";}i:831;a:4:{s:3:\"uid\";s:32:\"f0eac0958921fe45b85d01b79d76e86b\";s:3:\"css\";s:6:\"switch\";s:4:\"code\";i:60223;s:3:\"src\";s:6:\"entypo\";}i:832;a:4:{s:3:\"uid\";s:32:\"cb13afd4722a849d48056540bb74c47e\";s:3:\"css\";s:6:\"play-1\";s:4:\"code\";i:60224;s:3:\"src\";s:6:\"entypo\";}i:833;a:4:{s:3:\"uid\";s:32:\"48f2e18872fe74d4579a4c8a1527fc1e\";s:3:\"css\";s:6:\"stop-1\";s:4:\"code\";i:60225;s:3:\"src\";s:6:\"entypo\";}i:834;a:4:{s:3:\"uid\";s:32:\"d8d378d0ce413f231dfa37592e39c227\";s:3:\"css\";s:7:\"pause-1\";s:4:\"code\";i:60226;s:3:\"src\";s:6:\"entypo\";}i:835;a:4:{s:3:\"uid\";s:32:\"e188c02f740feff7e2d2bce1950b75fa\";s:3:\"css\";s:6:\"record\";s:4:\"code\";i:60227;s:3:\"src\";s:6:\"entypo\";}i:836;a:4:{s:3:\"uid\";s:32:\"0afbb00323696f49e9c47f4d9fe6390b\";s:3:\"css\";s:8:\"to-end-1\";s:4:\"code\";i:60228;s:3:\"src\";s:6:\"entypo\";}i:837;a:4:{s:3:\"uid\";s:32:\"ceefe7653a4f6edaacce9e7f196cec5a\";s:3:\"css\";s:10:\"to-start-1\";s:4:\"code\";i:60229;s:3:\"src\";s:6:\"entypo\";}i:838;a:4:{s:3:\"uid\";s:32:\"18f7c393e3532e40edd45607c9d99988\";s:3:\"css\";s:12:\"fast-forward\";s:4:\"code\";i:60230;s:3:\"src\";s:6:\"entypo\";}i:839;a:4:{s:3:\"uid\";s:32:\"85806fd8ab907f45d34f976354a0df23\";s:3:\"css\";s:13:\"fast-backward\";s:4:\"code\";i:60231;s:3:\"src\";s:6:\"entypo\";}i:840;a:4:{s:3:\"uid\";s:32:\"be998d5ee625a58912ae630f34cc8419\";s:3:\"css\";s:10:\"progress-0\";s:4:\"code\";i:60232;s:3:\"src\";s:6:\"entypo\";}i:841;a:4:{s:3:\"uid\";s:32:\"054519608bca087aa306252471dda9c4\";s:3:\"css\";s:10:\"progress-1\";s:4:\"code\";i:60233;s:3:\"src\";s:6:\"entypo\";}i:842;a:4:{s:3:\"uid\";s:32:\"3e49435dd1950a0b7543e13256c89e52\";s:3:\"css\";s:10:\"progress-2\";s:4:\"code\";i:60234;s:3:\"src\";s:6:\"entypo\";}i:843;a:4:{s:3:\"uid\";s:32:\"d924bc68683f68ecf5e09e49731fd59a\";s:3:\"css\";s:10:\"progress-3\";s:4:\"code\";i:60235;s:3:\"src\";s:6:\"entypo\";}i:844;a:4:{s:3:\"uid\";s:32:\"3eadc3e443cf1c7e17f1b44d21254c00\";s:3:\"css\";s:8:\"target-1\";s:4:\"code\";i:60236;s:3:\"src\";s:6:\"entypo\";}i:845;a:4:{s:3:\"uid\";s:32:\"80451d627470ea7f977a263fdb771d7b\";s:3:\"css\";s:7:\"palette\";s:4:\"code\";i:60237;s:3:\"src\";s:6:\"entypo\";}i:846;a:4:{s:3:\"uid\";s:32:\"3626b3f3a0b284e7f4166b815719aece\";s:3:\"css\";s:6:\"list-1\";s:4:\"code\";i:60238;s:3:\"src\";s:6:\"entypo\";}i:847;a:4:{s:3:\"uid\";s:32:\"97bd5542ed3e143d2ee9b60e14487615\";s:3:\"css\";s:8:\"list-add\";s:4:\"code\";i:60239;s:3:\"src\";s:6:\"entypo\";}i:848;a:4:{s:3:\"uid\";s:32:\"84a7262985600b683bbab0da9298776d\";s:3:\"css\";s:8:\"signal-1\";s:4:\"code\";i:60240;s:3:\"src\";s:6:\"entypo\";}i:849;a:4:{s:3:\"uid\";s:32:\"978aa8facd816df874039e139cb0cdde\";s:3:\"css\";s:6:\"trophy\";s:4:\"code\";i:60241;s:3:\"src\";s:6:\"entypo\";}i:850;a:4:{s:3:\"uid\";s:32:\"a51290161c48d96d7f2e2151a4cbcde1\";s:3:\"css\";s:7:\"battery\";s:4:\"code\";i:60242;s:3:\"src\";s:6:\"entypo\";}i:851;a:4:{s:3:\"uid\";s:32:\"89eb512cb82a1c3fe83cb16134f9876c\";s:3:\"css\";s:12:\"back-in-time\";s:4:\"code\";i:60243;s:3:\"src\";s:6:\"entypo\";}i:852;a:4:{s:3:\"uid\";s:32:\"b7a336095aa4535c3689cb557edf23db\";s:3:\"css\";s:7:\"monitor\";s:4:\"code\";i:60244;s:3:\"src\";s:6:\"entypo\";}i:853;a:4:{s:3:\"uid\";s:32:\"767fede84586366cd7d6c835be745454\";s:3:\"css\";s:8:\"mobile-1\";s:4:\"code\";i:60245;s:3:\"src\";s:6:\"entypo\";}i:854;a:4:{s:3:\"uid\";s:32:\"414fe97e4af5215a06d29be0f2cecdf5\";s:3:\"css\";s:7:\"network\";s:4:\"code\";i:60246;s:3:\"src\";s:6:\"entypo\";}i:855;a:4:{s:3:\"uid\";s:32:\"16f88519423df34fc5c48be7ded81b8f\";s:3:\"css\";s:2:\"cd\";s:4:\"code\";i:60247;s:3:\"src\";s:6:\"entypo\";}i:856;a:4:{s:3:\"uid\";s:32:\"b32d88adf7cd6bfa8d0e177dfa642a4d\";s:3:\"css\";s:7:\"inbox-1\";s:4:\"code\";i:60248;s:3:\"src\";s:6:\"entypo\";}i:857;a:4:{s:3:\"uid\";s:32:\"d83b7429002f7b0b206c8d550034212b\";s:3:\"css\";s:7:\"install\";s:4:\"code\";i:60249;s:3:\"src\";s:6:\"entypo\";}i:858;a:4:{s:3:\"uid\";s:32:\"6a12c2b74456ea21cc984e11dec227a1\";s:3:\"css\";s:7:\"globe-1\";s:4:\"code\";i:60250;s:3:\"src\";s:6:\"entypo\";}i:859;a:4:{s:3:\"uid\";s:32:\"114fed43140e2b5ce42c48b95c19375b\";s:3:\"css\";s:7:\"cloud-1\";s:4:\"code\";i:60251;s:3:\"src\";s:6:\"entypo\";}i:860;a:4:{s:3:\"uid\";s:32:\"66a40c7c0ee5ea61f4b6aa0dd0f9ebb9\";s:3:\"css\";s:13:\"cloud-thunder\";s:4:\"code\";i:60252;s:3:\"src\";s:6:\"entypo\";}i:861;a:4:{s:3:\"uid\";s:32:\"98c63f6b98c543b52d4c43bcd486d28f\";s:3:\"css\";s:7:\"flash-1\";s:4:\"code\";i:60253;s:3:\"src\";s:6:\"entypo\";}i:862;a:4:{s:3:\"uid\";s:32:\"0d03db7afd4857accf1821efdc8ea72b\";s:3:\"css\";s:6:\"moon-1\";s:4:\"code\";i:60254;s:3:\"src\";s:6:\"entypo\";}i:863;a:4:{s:3:\"uid\";s:32:\"6e8aea8fff9525dfc5149f0c03669091\";s:3:\"css\";s:8:\"flight-1\";s:4:\"code\";i:60255;s:3:\"src\";s:6:\"entypo\";}i:864;a:4:{s:3:\"uid\";s:32:\"db112402805d9dadc01ce009fbfdb914\";s:3:\"css\";s:13:\"paper-plane-1\";s:4:\"code\";i:60256;s:3:\"src\";s:6:\"entypo\";}i:865;a:4:{s:3:\"uid\";s:32:\"41d534223ef447a01af3e2f629ec70eb\";s:3:\"css\";s:6:\"leaf-1\";s:4:\"code\";i:60257;s:3:\"src\";s:6:\"entypo\";}i:866;a:4:{s:3:\"uid\";s:32:\"2f9f67ee4354feef8c1f51e03bac6ef3\";s:3:\"css\";s:10:\"lifebuoy-1\";s:4:\"code\";i:60258;s:3:\"src\";s:6:\"entypo\";}i:867;a:4:{s:3:\"uid\";s:32:\"97c6901d8db077614e77b089d4eedac8\";s:3:\"css\";s:5:\"mouse\";s:4:\"code\";i:60259;s:3:\"src\";s:6:\"entypo\";}i:868;a:4:{s:3:\"uid\";s:32:\"9ea7cce5e08e5ac2c225fabf2e6dc353\";s:3:\"css\";s:11:\"briefcase-1\";s:4:\"code\";i:60260;s:3:\"src\";s:6:\"entypo\";}i:869;a:4:{s:3:\"uid\";s:32:\"11dd26ebf6934bf750a9156b353d7f2d\";s:3:\"css\";s:10:\"suitcase-1\";s:4:\"code\";i:60261;s:3:\"src\";s:6:\"entypo\";}i:870;a:4:{s:3:\"uid\";s:32:\"d2c6b59d9a239140cb76be0627480855\";s:3:\"css\";s:3:\"dot\";s:4:\"code\";i:60262;s:3:\"src\";s:6:\"entypo\";}i:871;a:4:{s:3:\"uid\";s:32:\"13b11ab72c6ae9c97ee12428e17f3a4e\";s:3:\"css\";s:5:\"dot-2\";s:4:\"code\";i:60263;s:3:\"src\";s:6:\"entypo\";}i:872;a:4:{s:3:\"uid\";s:32:\"d10920db2e79c997c5e783279291970c\";s:3:\"css\";s:5:\"dot-3\";s:4:\"code\";i:60264;s:3:\"src\";s:6:\"entypo\";}i:873;a:4:{s:3:\"uid\";s:32:\"39c4d0e225a1263a398a47523cb5b9bd\";s:3:\"css\";s:7:\"brush-1\";s:4:\"code\";i:60265;s:3:\"src\";s:6:\"entypo\";}i:874;a:4:{s:3:\"uid\";s:32:\"d55e21e6468c04c5ca38a6560b27d1aa\";s:3:\"css\";s:8:\"magnet-2\";s:4:\"code\";i:60266;s:3:\"src\";s:6:\"entypo\";}i:875;a:4:{s:3:\"uid\";s:32:\"34ba50fe8e4f95e7f3d76c6534814a70\";s:3:\"css\";s:8:\"infinity\";s:4:\"code\";i:60267;s:3:\"src\";s:6:\"entypo\";}i:876;a:4:{s:3:\"uid\";s:32:\"e8239f8188c76c925be4bd1bbcc013ac\";s:3:\"css\";s:5:\"erase\";s:4:\"code\";i:60268;s:3:\"src\";s:6:\"entypo\";}i:877;a:4:{s:3:\"uid\";s:32:\"fb5082fac1794b69a1381196219a836e\";s:3:\"css\";s:11:\"chart-pie-1\";s:4:\"code\";i:60269;s:3:\"src\";s:6:\"entypo\";}i:878;a:4:{s:3:\"uid\";s:32:\"7184d8171b6a9b18eabbace94cca21db\";s:3:\"css\";s:12:\"chart-line-1\";s:4:\"code\";i:60270;s:3:\"src\";s:6:\"entypo\";}i:879;a:4:{s:3:\"uid\";s:32:\"7d90b6cb3f3783170a96b09e5f0de6d5\";s:3:\"css\";s:11:\"chart-bar-1\";s:4:\"code\";i:60271;s:3:\"src\";s:6:\"entypo\";}i:880;a:4:{s:3:\"uid\";s:32:\"32b4054f35918992f723e39f4095f005\";s:3:\"css\";s:12:\"chart-area-1\";s:4:\"code\";i:60272;s:3:\"src\";s:6:\"entypo\";}i:881;a:4:{s:3:\"uid\";s:32:\"ed62f5f10b256b0a959e6c847ed8f4a6\";s:3:\"css\";s:4:\"tape\";s:4:\"code\";i:60273;s:3:\"src\";s:6:\"entypo\";}i:882;a:4:{s:3:\"uid\";s:32:\"ef74ff62feda486fd414410e782b598a\";s:3:\"css\";s:16:\"graduation-cap-1\";s:4:\"code\";i:60274;s:3:\"src\";s:6:\"entypo\";}i:883;a:4:{s:3:\"uid\";s:32:\"ddecf5ad7935e3fb1b70dac6ed00d06a\";s:3:\"css\";s:10:\"language-1\";s:4:\"code\";i:60275;s:3:\"src\";s:6:\"entypo\";}i:884;a:4:{s:3:\"uid\";s:32:\"333bae7aaf7395d1004875be5a075661\";s:3:\"css\";s:8:\"ticket-1\";s:4:\"code\";i:60276;s:3:\"src\";s:6:\"entypo\";}i:885;a:4:{s:3:\"uid\";s:32:\"36a1cee80657a9c66e8384dd57bed66c\";s:3:\"css\";s:5:\"water\";s:4:\"code\";i:60277;s:3:\"src\";s:6:\"entypo\";}i:886;a:4:{s:3:\"uid\";s:32:\"4efb719e797c54b3c58e5ae061d29d53\";s:3:\"css\";s:7:\"droplet\";s:4:\"code\";i:60278;s:3:\"src\";s:6:\"entypo\";}i:887;a:4:{s:3:\"uid\";s:32:\"5f3a0ebf2d13f60ec7ed76eb41ba9bb2\";s:3:\"css\";s:3:\"air\";s:4:\"code\";i:60279;s:3:\"src\";s:6:\"entypo\";}i:888;a:4:{s:3:\"uid\";s:32:\"c5cd6ea1981cecdd85c42d9d209bc3b8\";s:3:\"css\";s:13:\"credit-card-1\";s:4:\"code\";i:60280;s:3:\"src\";s:6:\"entypo\";}i:889;a:4:{s:3:\"uid\";s:32:\"191bcf63575a78def53c907c3d3bf7f0\";s:3:\"css\";s:8:\"floppy-1\";s:4:\"code\";i:60281;s:3:\"src\";s:6:\"entypo\";}i:890;a:4:{s:3:\"uid\";s:32:\"b95cfc96d48a72dd665e0ab109880b5e\";s:3:\"css\";s:9:\"clipboard\";s:4:\"code\";i:60282;s:3:\"src\";s:6:\"entypo\";}i:891;a:4:{s:3:\"uid\";s:32:\"489090690d8bd1745e365485946e20a8\";s:3:\"css\";s:11:\"megaphone-1\";s:4:\"code\";i:60283;s:3:\"src\";s:6:\"entypo\";}i:892;a:4:{s:3:\"uid\";s:32:\"248db7c0563d8cee80b7041f7736dcad\";s:3:\"css\";s:10:\"database-1\";s:4:\"code\";i:60284;s:3:\"src\";s:6:\"entypo\";}i:893;a:4:{s:3:\"uid\";s:32:\"603d5ccab42d916e79d7c0fcdb56a614\";s:3:\"css\";s:5:\"drive\";s:4:\"code\";i:60285;s:3:\"src\";s:6:\"entypo\";}i:894;a:4:{s:3:\"uid\";s:32:\"8ea66d97faf9816abd34f48f3f26d216\";s:3:\"css\";s:6:\"bucket\";s:4:\"code\";i:60286;s:3:\"src\";s:6:\"entypo\";}i:895;a:4:{s:3:\"uid\";s:32:\"d4939d1f4e5f03f6e58900b2ac8f1c6c\";s:3:\"css\";s:11:\"thermometer\";s:4:\"code\";i:60287;s:3:\"src\";s:6:\"entypo\";}i:896;a:4:{s:3:\"uid\";s:32:\"8beac4a5fd5bed9f82ca7a96cc8ba218\";s:3:\"css\";s:5:\"key-1\";s:4:\"code\";i:60288;s:3:\"src\";s:6:\"entypo\";}i:897;a:4:{s:3:\"uid\";s:32:\"898ddc67cb7d9ae53dbd4cce78043e9e\";s:3:\"css\";s:12:\"flow-cascade\";s:4:\"code\";i:60289;s:3:\"src\";s:6:\"entypo\";}i:898;a:4:{s:3:\"uid\";s:32:\"4bcb3aaa98736be3027bef7c76c55021\";s:3:\"css\";s:11:\"flow-branch\";s:4:\"code\";i:60290;s:3:\"src\";s:6:\"entypo\";}i:899;a:4:{s:3:\"uid\";s:32:\"8a1d446e5555e76f82ddb1c8b526f579\";s:3:\"css\";s:9:\"flow-tree\";s:4:\"code\";i:60291;s:3:\"src\";s:6:\"entypo\";}i:900;a:4:{s:3:\"uid\";s:32:\"6cea40aa6cc50057083e4f0a5b92410c\";s:3:\"css\";s:9:\"flow-line\";s:4:\"code\";i:60292;s:3:\"src\";s:6:\"entypo\";}i:901;a:4:{s:3:\"uid\";s:32:\"5f88095dc5e638863a0c733e99c32568\";s:3:\"css\";s:13:\"flow-parallel\";s:4:\"code\";i:60293;s:3:\"src\";s:6:\"entypo\";}i:902;a:4:{s:3:\"uid\";s:32:\"9c7fd7637a41b59a358cb70893f945a5\";s:3:\"css\";s:8:\"rocket-1\";s:4:\"code\";i:60294;s:3:\"src\";s:6:\"entypo\";}i:903;a:4:{s:3:\"uid\";s:32:\"3a6f0140c3a390bdb203f56d1bfdefcb\";s:3:\"css\";s:7:\"gauge-1\";s:4:\"code\";i:60295;s:3:\"src\";s:6:\"entypo\";}i:904;a:4:{s:3:\"uid\";s:32:\"2bbde1076919db3d1dcc7f6b43d19bd4\";s:3:\"css\";s:12:\"traffic-cone\";s:4:\"code\";i:60296;s:3:\"src\";s:6:\"entypo\";}i:905;a:4:{s:3:\"uid\";s:32:\"4a413ef43c364dafa42766e74c31bbca\";s:3:\"css\";s:4:\"cc-1\";s:4:\"code\";i:60297;s:3:\"src\";s:6:\"entypo\";}i:906;a:4:{s:3:\"uid\";s:32:\"72681d2825fef7fd83711278f845547b\";s:3:\"css\";s:5:\"cc-by\";s:4:\"code\";i:60298;s:3:\"src\";s:6:\"entypo\";}i:907;a:4:{s:3:\"uid\";s:32:\"7540520e12e941839cdb7d76b12e82a8\";s:3:\"css\";s:5:\"cc-nc\";s:4:\"code\";i:60299;s:3:\"src\";s:6:\"entypo\";}i:908;a:4:{s:3:\"uid\";s:32:\"2d741e29010c6afbfc3784251fbf4e8b\";s:3:\"css\";s:8:\"cc-nc-eu\";s:4:\"code\";i:60300;s:3:\"src\";s:6:\"entypo\";}i:909;a:4:{s:3:\"uid\";s:32:\"3138d5e10d50279c6d97ad1c99fdb584\";s:3:\"css\";s:8:\"cc-nc-jp\";s:4:\"code\";i:60301;s:3:\"src\";s:6:\"entypo\";}i:910;a:4:{s:3:\"uid\";s:32:\"900851106d63af1bc6076ae118dc543d\";s:3:\"css\";s:5:\"cc-sa\";s:4:\"code\";i:60302;s:3:\"src\";s:6:\"entypo\";}i:911;a:4:{s:3:\"uid\";s:32:\"b92e2a918daa2f9a042df1ce942b686f\";s:3:\"css\";s:5:\"cc-nd\";s:4:\"code\";i:60303;s:3:\"src\";s:6:\"entypo\";}i:912;a:4:{s:3:\"uid\";s:32:\"49679f26492c29c7bc277f1de9249229\";s:3:\"css\";s:5:\"cc-pd\";s:4:\"code\";i:60304;s:3:\"src\";s:6:\"entypo\";}i:913;a:4:{s:3:\"uid\";s:32:\"94914cbbfba692ebbc13c179d62355f7\";s:3:\"css\";s:7:\"cc-zero\";s:4:\"code\";i:60305;s:3:\"src\";s:6:\"entypo\";}i:914;a:4:{s:3:\"uid\";s:32:\"915c11e4e2e713cc7d65d32d66f004bf\";s:3:\"css\";s:8:\"cc-share\";s:4:\"code\";i:60306;s:3:\"src\";s:6:\"entypo\";}i:915;a:4:{s:3:\"uid\";s:32:\"0cd7be54280d9ffbe0f48342c011268e\";s:3:\"css\";s:8:\"cc-remix\";s:4:\"code\";i:60307;s:3:\"src\";s:6:\"entypo\";}i:916;a:4:{s:3:\"uid\";s:32:\"d94334f23acba022bfd68e49d76b31bb\";s:3:\"css\";s:8:\"github-1\";s:4:\"code\";i:60308;s:3:\"src\";s:6:\"entypo\";}i:917;a:4:{s:3:\"uid\";s:32:\"91daf8fde1042a363514ca7e42d89570\";s:3:\"css\";s:16:\"github-circled-1\";s:4:\"code\";i:60309;s:3:\"src\";s:6:\"entypo\";}i:918;a:4:{s:3:\"uid\";s:32:\"14cfd18cc1dd5fb99ba04311b888bc23\";s:3:\"css\";s:8:\"flickr-1\";s:4:\"code\";i:60310;s:3:\"src\";s:6:\"entypo\";}i:919;a:4:{s:3:\"uid\";s:32:\"5bbd46b2a0b972533f4d3ef243645e1d\";s:3:\"css\";s:14:\"flickr-circled\";s:4:\"code\";i:60311;s:3:\"src\";s:6:\"entypo\";}i:920;a:4:{s:3:\"uid\";s:32:\"538531af0e023b15882c505ee2297cbe\";s:3:\"css\";s:5:\"vimeo\";s:4:\"code\";i:60312;s:3:\"src\";s:6:\"entypo\";}i:921;a:4:{s:3:\"uid\";s:32:\"6569bd1801e232180221ba0f6a4b8b27\";s:3:\"css\";s:13:\"vimeo-circled\";s:4:\"code\";i:60313;s:3:\"src\";s:6:\"entypo\";}i:922;a:4:{s:3:\"uid\";s:32:\"d090355c31f497b61d676416c1fd39fb\";s:3:\"css\";s:9:\"twitter-1\";s:4:\"code\";i:60314;s:3:\"src\";s:6:\"entypo\";}i:923;a:4:{s:3:\"uid\";s:32:\"0419da6446cb4f31093e2022793571ca\";s:3:\"css\";s:15:\"twitter-circled\";s:4:\"code\";i:60315;s:3:\"src\";s:6:\"entypo\";}i:924;a:4:{s:3:\"uid\";s:32:\"bc50457410acf467b8b5721240768742\";s:3:\"css\";s:10:\"facebook-1\";s:4:\"code\";i:60316;s:3:\"src\";s:6:\"entypo\";}i:925;a:4:{s:3:\"uid\";s:32:\"ce1d525f3f31024c6a6b38f5e9a88953\";s:3:\"css\";s:16:\"facebook-circled\";s:4:\"code\";i:60317;s:3:\"src\";s:6:\"entypo\";}i:926;a:4:{s:3:\"uid\";s:32:\"47bd87a650e95b97f947d275ed968efe\";s:3:\"css\";s:18:\"facebook-squared-1\";s:4:\"code\";i:60318;s:3:\"src\";s:6:\"entypo\";}i:927;a:4:{s:3:\"uid\";s:32:\"b945f4ac2439565661e8e4878e35d379\";s:3:\"css\";s:7:\"gplus-1\";s:4:\"code\";i:60319;s:3:\"src\";s:6:\"entypo\";}i:928;a:4:{s:3:\"uid\";s:32:\"818a6c2a76c89800632c0335e9cdafee\";s:3:\"css\";s:13:\"gplus-circled\";s:4:\"code\";i:60320;s:3:\"src\";s:6:\"entypo\";}i:929;a:4:{s:3:\"uid\";s:32:\"689febe699d74bc8862965555503e445\";s:3:\"css\";s:11:\"pinterest-1\";s:4:\"code\";i:60321;s:3:\"src\";s:6:\"entypo\";}i:930;a:4:{s:3:\"uid\";s:32:\"2e9c0fdd4d59598cb122801ab80222e7\";s:3:\"css\";s:19:\"pinterest-circled-1\";s:4:\"code\";i:60322;s:3:\"src\";s:6:\"entypo\";}i:931;a:4:{s:3:\"uid\";s:32:\"d491462e64eb5b8c4f064108a2ff1780\";s:3:\"css\";s:8:\"tumblr-1\";s:4:\"code\";i:60323;s:3:\"src\";s:6:\"entypo\";}i:932;a:4:{s:3:\"uid\";s:32:\"72a6237752f5cd00a107d097adac9ce3\";s:3:\"css\";s:14:\"tumblr-circled\";s:4:\"code\";i:60324;s:3:\"src\";s:6:\"entypo\";}i:933;a:4:{s:3:\"uid\";s:32:\"7132e1233bc16cd1b6efe7e29d3613a5\";s:3:\"css\";s:10:\"linkedin-1\";s:4:\"code\";i:60325;s:3:\"src\";s:6:\"entypo\";}i:934;a:4:{s:3:\"uid\";s:32:\"21adad41ffebf469b2370d26bcb8a3c4\";s:3:\"css\";s:16:\"linkedin-circled\";s:4:\"code\";i:60326;s:3:\"src\";s:6:\"entypo\";}i:935;a:4:{s:3:\"uid\";s:32:\"e8d13cd05bd63219329b2b61835d776c\";s:3:\"css\";s:10:\"dribbble-1\";s:4:\"code\";i:60327;s:3:\"src\";s:6:\"entypo\";}i:936;a:4:{s:3:\"uid\";s:32:\"ec3e0b50a56867ac26a6de47953b9831\";s:3:\"css\";s:16:\"dribbble-circled\";s:4:\"code\";i:60328;s:3:\"src\";s:6:\"entypo\";}i:937;a:4:{s:3:\"uid\";s:32:\"ef5e2b339a93fff038cc6a28f8c91edd\";s:3:\"css\";s:13:\"stumbleupon-1\";s:4:\"code\";i:60329;s:3:\"src\";s:6:\"entypo\";}i:938;a:4:{s:3:\"uid\";s:32:\"e3606432570e59d4d852727bad063cd1\";s:3:\"css\";s:21:\"stumbleupon-circled-1\";s:4:\"code\";i:60330;s:3:\"src\";s:6:\"entypo\";}i:939;a:4:{s:3:\"uid\";s:32:\"ae49d5a5d0c2f7253f375bde5f0da2d2\";s:3:\"css\";s:8:\"lastfm-1\";s:4:\"code\";i:60331;s:3:\"src\";s:6:\"entypo\";}i:940;a:4:{s:3:\"uid\";s:32:\"9eedcbf6e07d6ba820e3e22f5ab6f734\";s:3:\"css\";s:14:\"lastfm-circled\";s:4:\"code\";i:60332;s:3:\"src\";s:6:\"entypo\";}i:941;a:4:{s:3:\"uid\";s:32:\"406d96226bd9d021b7d976efa1c4a061\";s:3:\"css\";s:4:\"rdio\";s:4:\"code\";i:60333;s:3:\"src\";s:6:\"entypo\";}i:942;a:4:{s:3:\"uid\";s:32:\"4d8e1f1173bab9aac8991e9eee2fa326\";s:3:\"css\";s:12:\"rdio-circled\";s:4:\"code\";i:60334;s:3:\"src\";s:6:\"entypo\";}i:943;a:4:{s:3:\"uid\";s:32:\"882d407598d4e60074f5c08b3372811e\";s:3:\"css\";s:9:\"spotify-1\";s:4:\"code\";i:60335;s:3:\"src\";s:6:\"entypo\";}i:944;a:4:{s:3:\"uid\";s:32:\"067edf3e1f6458e782d0254e63eb5eb6\";s:3:\"css\";s:15:\"spotify-circled\";s:4:\"code\";i:60336;s:3:\"src\";s:6:\"entypo\";}i:945;a:4:{s:3:\"uid\";s:32:\"935e2e437efbb3a69ed9a83e2d2f637e\";s:3:\"css\";s:4:\"qq-1\";s:4:\"code\";i:60337;s:3:\"src\";s:6:\"entypo\";}i:946;a:4:{s:3:\"uid\";s:32:\"0fbfb1cd7a847c88ea4c141d0e1bbdb5\";s:3:\"css\";s:11:\"instagram-1\";s:4:\"code\";i:60338;s:3:\"src\";s:6:\"entypo\";}i:947;a:4:{s:3:\"uid\";s:32:\"b22fdf6cbaa9c54fbb0bc9abb0ed4098\";s:3:\"css\";s:9:\"dropbox-1\";s:4:\"code\";i:60339;s:3:\"src\";s:6:\"entypo\";}i:948;a:4:{s:3:\"uid\";s:32:\"ce291d00162e998dbf5cb81bc5edff75\";s:3:\"css\";s:8:\"evernote\";s:4:\"code\";i:60340;s:3:\"src\";s:6:\"entypo\";}i:949;a:4:{s:3:\"uid\";s:32:\"4274fc9f6190d330fcdf61e7ad564370\";s:3:\"css\";s:6:\"flattr\";s:4:\"code\";i:60341;s:3:\"src\";s:6:\"entypo\";}i:950;a:4:{s:3:\"uid\";s:32:\"28ccaf022b8363aeaa5b86f66e1f5173\";s:3:\"css\";s:7:\"skype-1\";s:4:\"code\";i:60342;s:3:\"src\";s:6:\"entypo\";}i:951;a:4:{s:3:\"uid\";s:32:\"8354734770d837204e6a004885240d2e\";s:3:\"css\";s:13:\"skype-circled\";s:4:\"code\";i:60343;s:3:\"src\";s:6:\"entypo\";}i:952;a:4:{s:3:\"uid\";s:32:\"7fe35dea791456114c356934333b4171\";s:3:\"css\";s:8:\"renren-1\";s:4:\"code\";i:60344;s:3:\"src\";s:6:\"entypo\";}i:953;a:4:{s:3:\"uid\";s:32:\"d1945696d6bbbf84e388df9961f26a37\";s:3:\"css\";s:10:\"sina-weibo\";s:4:\"code\";i:60345;s:3:\"src\";s:6:\"entypo\";}i:954;a:4:{s:3:\"uid\";s:32:\"8d584f31a5d54de313f1f3da28708ec0\";s:3:\"css\";s:8:\"paypal-1\";s:4:\"code\";i:60346;s:3:\"src\";s:6:\"entypo\";}i:955;a:4:{s:3:\"uid\";s:32:\"07269ba9c8905d091e1a01beab1f0958\";s:3:\"css\";s:6:\"picasa\";s:4:\"code\";i:60347;s:3:\"src\";s:6:\"entypo\";}i:956;a:4:{s:3:\"uid\";s:32:\"b86600decaba538aca184421752cd640\";s:3:\"css\";s:12:\"soundcloud-1\";s:4:\"code\";i:60348;s:3:\"src\";s:6:\"entypo\";}i:957;a:4:{s:3:\"uid\";s:32:\"c510878e39f27f3fb4e6171148829962\";s:3:\"css\";s:4:\"mixi\";s:4:\"code\";i:60349;s:3:\"src\";s:6:\"entypo\";}i:958;a:4:{s:3:\"uid\";s:32:\"84f3880057574e968053d6d6c8a7b216\";s:3:\"css\";s:9:\"behance-1\";s:4:\"code\";i:60350;s:3:\"src\";s:6:\"entypo\";}i:959;a:4:{s:3:\"uid\";s:32:\"5a24a9d2bffe3b66cea31ed2f57fb65a\";s:3:\"css\";s:14:\"google-circles\";s:4:\"code\";i:60351;s:3:\"src\";s:6:\"entypo\";}i:960;a:4:{s:3:\"uid\";s:32:\"c9a7eca58474311926922ff8c2c1d256\";s:3:\"css\";s:11:\"vkontakte-1\";s:4:\"code\";i:60352;s:3:\"src\";s:6:\"entypo\";}i:961;a:4:{s:3:\"uid\";s:32:\"2e97984c1130787e123117d4cacc07fa\";s:3:\"css\";s:8:\"smashing\";s:4:\"code\";i:60353;s:3:\"src\";s:6:\"entypo\";}i:962;a:4:{s:3:\"uid\";s:32:\"c22c5fa36d200793ad39b984fb5c8610\";s:3:\"css\";s:6:\"sweden\";s:4:\"code\";i:60354;s:3:\"src\";s:6:\"entypo\";}i:963;a:4:{s:3:\"uid\";s:32:\"e9ede58f5f90bbc3e52bf4bf53da71c0\";s:3:\"css\";s:8:\"db-shape\";s:4:\"code\";i:60355;s:3:\"src\";s:6:\"entypo\";}i:964;a:4:{s:3:\"uid\";s:32:\"ea16996158db7b9fedf060a4f44b27ee\";s:3:\"css\";s:7:\"logo-db\";s:4:\"code\";i:60356;s:3:\"src\";s:6:\"entypo\";}}}\";','yes'),(185,'cmsmasters_start-it_icons_custom','s:71722:\"a:7:{s:4:\"name\";s:15:\"fontello-custom\";s:15:\"css_prefix_text\";s:23:\"cmsmasters-icon-custom-\";s:14:\"css_use_suffix\";b:0;s:7:\"hinting\";b:1;s:12:\"units_per_em\";i:1000;s:6:\"ascent\";i:850;s:6:\"glyphs\";a:40:{i:0;a:7:{s:3:\"uid\";s:32:\"1995fea2a813cce95407454da62f2f2a\";s:3:\"css\";s:8:\"analysis\";s:4:\"code\";i:59392;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:2216:\"M963 718V282C973 281 984 277 992 268 998 260 1001 250 1000 239 989 165 929 106 855 95L850 95C830 95 813 111 813 133H187C187 111 171 95 150 95L145 95C71 106 11 165 0 240-1 250 2 260 8 268 16 277 27 281 37 282V718C27 718 16 723 8 731 2 739-1 750 0 761 11 834 71 894 145 905L150 905C170 905 187 889 187 867H813C813 889 830 905 850 905L855 905C929 894 989 834 1000 760 1001 750 998 739 992 731 984 723 973 718 963 718ZM846 133C846 130 848 128 850 128 909 137 957 185 966 246 965 247 963 248 962 248H929C925 248 920 242 919 237 910 208 886 185 857 176 852 174 846 170 846 165V133L846 133ZM34 244C43 185 91 137 151 128 152 128 154 130 154 133V165C154 170 148 174 143 176 114 185 91 208 82 237 80 243 75 248 71 248H39C37 248 35 247 34 244ZM154 867C154 870 152 871 150 871H150C90 863 43 815 34 753 35 752 37 752 39 752H71C75 752 80 757 81 763 91 792 114 815 143 824 148 826 154 830 154 834V867ZM813 834H187C187 814 173 798 153 792 134 786 120 771 114 753 108 732 90 719 72 718V282C90 281 108 268 114 247 120 229 134 214 153 208 173 202 187 185 187 166H813C813 185 827 202 847 208 866 214 880 229 886 247 893 268 910 281 928 282V718C910 719 892 732 886 753 880 771 866 786 847 792 827 798 813 814 813 834ZM850 872H850C848 872 846 870 846 867V834C846 830 852 826 857 824 886 815 909 792 918 763 920 757 925 752 929 752H962C963 752 965 752 966 756 957 815 910 863 850 872ZM496 340L479 341C388 346 317 421 317 513 317 546 327 577 343 604L315 633H195V666H328L364 630C395 664 440 685 489 685 547 685 601 656 633 607L643 592 496 508V340ZM594 602C568 633 530 651 489 651 449 651 413 634 388 606L411 583 387 559 368 579C357 559 350 537 350 513 350 445 398 389 463 376V513C463 522 468 531 476 535L594 602ZM694 340H822V307H680L633 354C606 332 573 318 536 316L518 315V492L672 580 680 564C691 540 698 514 698 488 698 446 682 407 657 377L694 340ZM664 488C664 503 661 518 656 532L551 472V351C572 356 592 365 609 378L594 393 617 417 633 401C653 425 664 455 664 488ZM205 713H252V680H205V713ZM277 713H326V680H277V713ZM736 258H690V293H736V258ZM809 258H762V293H809V258ZM273 279H158V312H273V279ZM273 338H158V371H273V338ZM273 396H158V430H273V396ZM252 455H158V488H252V455ZM709 602H859V568H709V602ZM709 660H859V627H709V660ZM709 719H838V685H709V719Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"analysis\";}}i:1;a:7:{s:3:\"uid\";s:32:\"8aa4eb0e0ab488fa512247bc07156fa5\";s:3:\"css\";s:5:\"brain\";s:4:\"code\";i:59393;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:4220:\"M420 527C420 488 388 456 349 456 340 456 332 464 332 473 332 482 340 490 349 490 370 490 387 506 387 527V547C387 560 376 570 363 570H305V541C305 510 279 484 248 484 238 484 231 492 231 501S238 518 248 518C261 518 272 528 272 541V570H162C153 570 145 578 145 587S153 603 162 603H363C371 603 379 602 387 598V695C387 715 370 732 349 732H342V701C342 670 316 644 284 644 275 644 267 652 267 661S274 677 283 677C297 677 307 688 307 701V732H173C164 732 157 740 157 749S164 766 173 766H349C363 766 375 762 387 755V850C387 870 371 885 351 885 342 885 334 893 334 902S342 919 351 919C389 919 420 888 420 850V548C420 547 420 547 420 546V533C420 532 420 532 420 532V527ZM330 368V332H362C375 332 386 343 386 356 386 365 393 372 402 372S419 365 419 356C419 324 393 299 362 299H330V260C330 228 304 203 273 203H243C234 203 227 210 227 220S234 236 243 236H273C286 236 297 247 297 260V368C297 381 286 393 273 393H162C153 393 145 400 145 409S153 426 162 426H273C304 426 330 400 330 368ZM968 582C968 542 941 505 904 490 929 470 945 439 945 404 945 346 901 299 844 293 859 276 868 253 868 228 868 174 824 129 769 128 762 56 701 0 628 0 572 0 523 33 500 80 477 33 428 0 372 0 299 0 238 56 231 128 230 128 229 128 228 128 175 130 132 174 132 228 132 253 141 276 156 293 100 299 55 346 55 404 55 439 71 470 96 490 59 505 32 542 32 582 32 625 59 661 98 674 78 693 65 719 65 748 65 799 102 841 151 850 152 936 213 1000 292 1000H372C428 1000 477 967 500 920 523 967 572 1000 628 1000H708C788 1000 848 936 850 850 898 841 935 799 935 748 935 719 922 693 903 674 941 661 968 625 968 582ZM481 858C481 918 432 967 372 967H292C277 967 264 964 251 958 251 958 251 957 251 956 251 943 262 932 275 932 284 932 292 925 292 916 292 906 284 899 275 899 250 899 228 915 221 938 199 917 185 887 184 852H310C320 852 327 844 327 835S320 818 310 818H168C130 818 99 787 99 749 99 711 130 680 168 680H212C221 680 228 671 228 662S221 644 212 644H128C94 644 65 617 65 582 65 548 97 518 132 518H173C183 518 190 509 190 500 190 491 183 482 173 482H173C171 482 169 482 167 482 124 482 89 447 89 404 89 361 124 326 167 326H207C208 326 209 326 210 326 217 328 224 329 232 329 241 329 249 321 249 312 249 303 241 295 232 295 195 295 165 265 165 229 165 192 195 162 232 162H249C251 162 252 162 253 162H313C350 162 380 192 380 228 380 238 387 245 396 245 406 245 413 238 413 229 413 173 368 129 313 129H265C272 74 317 34 372 34 432 34 481 82 481 142V858ZM872 644H788C779 644 772 653 772 662S779 680 788 680H832C870 680 901 711 901 749 901 787 870 818 832 818H690C681 818 673 826 673 835S681 852 690 852H816C815 887 801 917 780 938 772 915 750 899 725 899 716 899 709 906 709 916 709 925 716 932 725 932 738 932 749 943 749 956 749 957 749 958 749 958 737 964 723 967 708 967H628C568 967 520 918 520 858V142C520 82 568 33 628 33 683 33 729 76 735 129H687C632 129 587 174 587 229 587 239 594 246 604 246 613 246 620 238 620 229 620 192 650 162 687 162H768C770 162 772 162 773 162 808 164 835 193 835 228 835 265 805 295 768 295 759 295 751 303 751 312 751 321 759 329 768 329 776 329 783 328 790 326 791 326 792 326 793 326H833C876 326 911 361 911 404 911 447 876 482 833 482 831 482 829 482 827 482H827C817 482 810 491 810 500 810 509 817 518 827 518H868C903 518 935 548 935 582 935 617 907 644 872 644ZM598 372C607 372 614 365 614 356 614 343 625 332 638 332H670V368C670 400 696 426 728 426H838C847 426 855 418 855 409S847 393 838 393H728C714 393 703 381 703 368V260C703 247 714 236 728 236H757C766 236 774 229 774 220S766 203 757 203H728C696 203 670 228 670 260V299H638C607 299 581 324 581 356 581 365 588 372 598 372ZM838 570H729V541C729 528 739 518 752 518 762 518 769 510 769 501S762 484 753 484C721 484 695 510 695 541V570H637C624 570 613 560 613 547V527C613 506 630 490 651 490 660 490 668 482 668 473 668 464 660 456 651 456 612 456 580 488 580 527V532C580 532 580 532 580 533V546C580 546 580 547 580 547V850C580 888 611 919 649 919 658 919 666 911 666 902S658 885 649 885C629 885 613 870 613 850V755C625 762 637 766 651 766H827C836 766 843 758 843 749S836 732 827 732H691V701C691 688 703 677 716 677 725 677 733 670 733 661S725 644 716 644C684 644 658 670 658 701V732H651C630 732 613 715 613 695V598C621 602 629 603 637 603H838C847 603 855 596 855 587S847 570 838 570Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"brain\";}}i:2;a:7:{s:3:\"uid\";s:32:\"b49ce0c592f6f712eacca0ab31687c36\";s:3:\"css\";s:5:\"brief\";s:4:\"code\";i:59394;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:457:\"M674 0H131V1000H869V196L674 0ZM684 53L817 187H684V53ZM838 969H162V31H652V203L667 219H838V969ZM356 342H762V310H356V342ZM674 377H356V408H674V377ZM356 512H762V480H356V512ZM674 547H356V578H674V547ZM356 682H762V650H356V682ZM356 748H674V717H356V748ZM227 750H324V650H227V750ZM258 682H293V719H258V682ZM543 111H227V209H543V111ZM512 178H258V143H512V178ZM267 348L255 337 234 360 270 394 333 315 309 295 267 348ZM267 520L255 509 234 532 270 566 333 487 309 468 267 520Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"brief\";}}i:3;a:7:{s:3:\"uid\";s:32:\"7bc7489c7daf82149b43f483c3712a2b\";s:3:\"css\";s:10:\"clean_code\";s:4:\"code\";i:59395;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:969:\"M834 264H807V662H526L782 384C784 383 786 380 787 378 788 376 789 374 789 372 789 370 788 368 787 366 787 364 785 362 783 360L710 269C707 266 704 264 699 264H301C297 264 293 266 290 269L217 360C215 362 214 364 213 366 212 368 211 370 212 372 211 374 212 376 213 378 214 380 216 383 218 384L475 662H193V264H166V687H834V264ZM541 604L630 385H743L541 604ZM746 357H651L699 299 746 357ZM671 291L620 353 541 291H671ZM581 357H419L500 294 581 357ZM460 291L380 353 330 291H460ZM301 299L349 357H254L301 299ZM257 385H370L459 603 257 385ZM399 385H601L500 632 399 385ZM889 709V250C889 228 871 211 849 211H151C129 211 111 228 111 250V709H0V757L6 761C9 764 44 789 72 789H928C956 789 991 764 995 761L1000 757V709H889ZM139 250C139 243 144 238 151 238H849C856 238 861 243 861 250V709H567L564 719C563 721 563 723 548 723H452C437 723 437 721 436 719L434 709H139V250ZM973 743C961 751 942 762 928 762H72C59 762 39 752 27 743V736H415C424 750 441 750 452 750H548C559 750 576 750 585 736H973V743Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"clean_code\";}}i:4;a:7:{s:3:\"uid\";s:32:\"e4c1683d91e0e2547886e9fdb65aa49e\";s:3:\"css\";s:12:\"creative_dev\";s:4:\"code\";i:59396;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:2210:\"M926 529L1000 500 973 490C973 490 973 490 973 490L875 452C873 450 870 449 868 449H702L690 447C689 443 688 440 687 437L717 409 676 338 634 351C632 349 629 347 627 345L640 304 569 263 539 296C536 295 533 295 531 294L521 252H439L430 294C426 295 423 295 420 296L392 265 320 307 333 345C330 348 327 351 324 354L287 342 245 414 273 438C271 442 270 445 269 449H141C139 449 138 449 137 449H69C67 449 66 449 65 450L18 450C8 450 0 458 0 470L0 531C0 542 8 551 18 551L66 551C67 551 68 551 69 551H137C137 551 138 551 139 551H266C268 557 269 564 271 570L248 590 290 662 318 653C323 658 328 664 334 669L325 696 397 737 416 715C423 717 430 719 438 721L444 748 527 748 533 718C540 717 546 715 553 712L573 735 645 693 635 661C639 656 643 652 647 648L678 658 720 586 692 561C692 557 693 555 694 551H868C870 551 873 550 874 549L926 529 926 529ZM853 529H731L731 473H853C851 480 850 491 850 501 850 511 851 519 853 529ZM875 524C873 517 872 508 872 500 872 492 873 484 875 476L924 495C924 496 924 498 924 500 924 501 924 503 924 506L875 524ZM544 551C530 570 506 584 480 584 454 584 431 572 416 551H544ZM427 449C441 435 460 428 480 428 500 428 519 437 533 449H427ZM550 473C555 482 558 495 558 507 558 515 557 521 555 529H148V473H550ZM82 529V473H125V529H82ZM22 472L57 472V528L22 528 22 472ZM668 631L639 622 634 628C628 635 621 643 614 649L609 654 618 683 578 706 559 686 552 689C542 693 531 696 521 698L514 700 509 726 462 726 457 701 449 700C438 698 427 695 416 692L409 689 392 709 352 685 359 661 354 656C345 649 337 641 330 633L325 627 300 635 276 595 297 577 294 570C292 564 291 557 289 551H390C407 584 442 606 480 606 535 606 580 562 580 506 580 451 535 406 480 406 447 406 416 422 398 449H292C293 445 295 442 296 439L299 432 274 409 297 369 330 380 335 374C341 368 347 362 353 357L359 352 347 317 388 294 413 322 420 320C427 317 434 315 441 314L448 312 457 273H503L512 312 519 314C526 315 533 317 539 319L546 321 573 291 614 315 601 352 607 357C612 361 617 366 622 372L627 377 665 364 689 405 661 430 663 437C666 445 668 452 670 459L672 466 673 467C675 470 678 473 682 473H699L709 474 709 521 675 528 674 536C674 536 674 536 674 536 673 537 673 538 673 540 673 540 673 540 673 540 672 547 670 554 668 561L666 568 691 590 668 631Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"creative_dev\";}}i:5;a:7:{s:3:\"uid\";s:32:\"961f46170816d25d94d0e9675eba9e51\";s:3:\"css\";s:6:\"design\";s:4:\"code\";i:59397;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1107:\"M1000 1000L984 965C984 964 984 964 984 964L926 834C926 831 924 828 922 826L624 528 995 156 839 0 468 371 230 133C229 132 228 130 227 129L162 64C161 63 159 62 157 61L112 16C104 7 87 8 77 18L19 77C14 81 11 87 10 93 9 100 11 107 16 112L63 159C63 160 64 161 65 162L129 226C130 227 131 228 132 228L371 468 0 839 156 995 528 624 826 922C828 925 831 926 834 927L903 957 902 957 1000 1000ZM906 863L933 922C931 924 929 925 928 927 926 929 924 931 922 933L863 906 906 863ZM99 152L152 99 194 140 140 194 99 152ZM96 42L129 76 76 129 42 96 96 42ZM162 215L215 162 446 393 393 446 162 215ZM43 839L79 803 129 854 151 832 100 782 136 746 162 772 183 751 157 725 193 689 244 739 265 718 214 667 250 631 276 657 298 636 272 610 308 574 358 625 380 603 329 553 365 517 391 543 412 522 386 496 422 460 473 510 494 489 443 438 479 402 505 429 527 407 501 381 536 345 587 396 608 375 558 324 594 288 620 314 641 293 615 267 651 231 702 281 723 260 672 209 708 173 734 200 756 178 729 152 765 116 816 167 837 146 787 95 839 43 953 156 156 953 43 839ZM603 549L886 833C876 840 866 848 857 857 848 866 840 876 833 887L549 603 603 549Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"design\";}}i:6;a:7:{s:3:\"uid\";s:32:\"493331fbbff80e315859fced6eaa53f9\";s:3:\"css\";s:8:\"designer\";s:4:\"code\";i:59398;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:6485:\"M915 596C897 583 877 573 857 566 866 530 871 493 871 456 871 216 675 21 435 21 195 21 0 216 0 456 0 460 0 464 0 467 0 467 0 467 0 467 2 558 32 643 85 715 86 715 87 716 87 717 88 719 89 720 90 721 92 723 93 725 95 727 95 727 96 728 96 728 176 828 298 891 435 891 491 891 545 881 597 860 611 890 633 916 660 937 697 965 741 979 788 979 855 979 917 948 958 894 1028 800 1009 667 915 596ZM803 803C807 798 811 792 811 784 811 771 800 761 787 761 775 761 763 771 763 784 763 792 768 798 772 803V861L719 793 754 722V684H820V722L855 793 803 861V803ZM844 654H731V593C748 587 768 584 788 584 807 584 826 587 844 593V654ZM435 51C659 51 841 232 841 456 841 491 837 525 828 558 815 555 801 554 788 554 745 554 704 567 670 590L636 365H636C636 365 636 365 636 365L633 346C614 238 531 159 435 159 425 159 415 160 405 162 328 176 264 240 242 326 240 333 239 340 237 346L187 681C164 696 147 713 137 731 129 721 121 712 113 702 113 702 113 701 112 701 111 699 110 698 109 696 108 695 107 693 106 692 105 691 104 690 104 689 65 634 39 569 32 498 32 498 32 497 32 497 32 494 31 491 31 488 31 488 31 487 31 487 31 484 31 481 30 479 30 478 30 477 30 476 30 474 30 471 30 469 30 468 30 467 30 466 30 463 30 459 30 456 30 232 212 51 435 51ZM578 727C545 759 492 777 435 777 355 777 287 741 267 690 267 690 267 689 267 689 266 689 266 689 266 688 265 685 264 682 263 678L270 676C271 676 271 676 272 676 273 675 274 675 275 674 276 674 276 674 276 674 279 674 281 673 284 672L287 671C289 671 290 670 292 670 294 669 297 669 300 668L300 668C300 668 301 668 302 667 305 667 308 666 312 665 313 665 314 665 316 664 318 664 321 663 323 663 325 662 328 662 330 662 331 661 332 661 332 661 335 661 338 660 341 660 342 660 343 659 344 659 348 659 352 658 355 658 356 658 357 657 357 657 357 657 357 657 358 657 358 657 359 657 359 657 359 657 359 657 359 657 362 656 364 654 365 652 368 649 369 645 368 641 368 637 367 634 367 631 367 631 367 631 367 630 367 629 367 628 367 627V586C367 587 369 587 369 588 371 588 373 589 374 590 375 590 375 590 376 591 386 595 397 599 408 601 409 601 409 601 410 601 412 601 414 602 415 602 417 602 418 602 419 602 420 602 421 603 421 603 423 603 425 603 427 603 428 603 428 603 429 603 431 603 433 603 435 603 438 603 440 603 442 603 443 603 443 603 443 603 446 603 448 603 450 603 450 603 451 603 451 603 469 601 486 595 504 587V627C504 631 503 636 503 641 503 642 502 643 502 644 503 647 504 649 505 652 508 655 511 657 515 658 523 659 530 660 538 661 539 661 540 661 540 661 543 662 545 662 548 663 550 663 552 664 554 664 556 665 558 665 559 665 562 666 565 667 568 667 570 668 571 668 573 668 574 669 575 669 576 669 579 670 581 670 583 671L584 671C585 672 586 672 587 672 589 673 591 673 593 674 594 674 595 674 596 675 588 692 582 710 579 728L578 727ZM262 383H289V456C289 500 307 539 338 566V627C338 628 338 629 338 630 337 630 337 630 336 630 320 633 303 636 288 640 287 640 286 640 286 641 284 641 283 641 281 642 281 642 281 642 280 642 280 642 280 642 280 642 280 642 280 642 280 642 279 642 278 643 278 643 276 643 275 644 273 644 272 645 270 645 268 646 268 646 267 646 267 646 267 646 266 646 266 646 265 647 264 647 262 647 260 648 258 649 256 650 254 650 253 650 252 651 248 652 245 653 242 654 242 654 242 654 241 655 234 657 227 660 220 664L262 383ZM507 549C507 549 506 550 505 550 490 562 473 569 453 572 453 572 453 572 453 572 451 572 450 573 448 573 448 573 447 573 447 573 445 573 444 573 442 573 442 573 442 573 441 573 439 573 437 574 435 574 434 574 432 573 430 573 429 573 428 573 427 573 427 573 426 573 425 573 424 573 422 573 421 573 421 573 420 573 420 572 418 572 417 572 416 572 416 572 415 572 415 572 405 570 396 567 387 563 387 563 387 563 387 563 385 562 384 562 383 561 383 561 382 561 382 560 381 560 380 559 379 559 378 558 377 558 376 557 376 557 375 557 374 556 341 536 318 498 318 456V383H553V456C553 494 535 527 507 549ZM611 648C609 648 607 647 605 646 604 646 604 646 604 646 600 645 597 644 593 643 593 643 593 643 592 643L591 642C590 642 590 642 589 642 587 641 585 641 583 640 582 640 580 639 578 639 578 639 578 639 577 639 572 637 566 636 560 635 551 633 542 632 533 630 533 629 533 628 533 627V566C565 539 582 500 582 456V368C582 360 576 354 568 353V353H267L267 352C286 245 366 189 435 189 440 189 444 189 449 190 515 196 586 252 604 351L606 363C606 365 606 368 607 370V370L643 611C634 619 625 629 618 639 615 642 613 645 611 648ZM435 862C329 862 232 820 160 753 167 735 185 717 211 701 212 701 212 701 212 701 213 700 214 700 215 699 216 698 218 698 219 697 219 697 220 696 221 696 223 695 224 695 225 694 226 694 226 694 226 693 229 692 232 691 235 689 236 689 236 689 236 690 236 691 237 693 237 695 237 695 237 696 238 696 238 698 239 700 240 702 240 702 240 702 240 702 241 704 241 706 242 708 242 708 242 708 242 708 243 710 244 711 245 713 245 713 245 714 246 714 246 716 248 717 249 719 249 719 249 720 249 720 250 721 251 723 252 725 252 725 253 725 253 726 254 727 255 729 256 730 257 731 257 731 257 731 258 733 259 734 261 736 261 736 261 736 261 736 262 738 264 740 265 741 265 741 265 741 266 741 267 743 269 745 270 746 270 746 270 747 271 747 272 748 274 750 275 751 275 751 276 752 276 752 278 753 279 755 281 756 281 756 281 756 282 757 283 758 285 759 287 761 287 761 287 761 287 761 289 763 291 764 293 765 293 765 293 765 293 765 295 767 297 768 299 769 299 769 299 769 299 770 301 771 303 772 305 773 305 773 306 774 306 774 308 775 310 776 312 777 312 777 313 777 313 778 315 779 317 780 319 781 319 781 320 781 320 781 322 782 324 783 326 784 327 784 327 785 327 785 329 786 332 787 334 788 334 788 334 788 334 788 337 789 339 790 341 791 341 791 342 791 342 791 344 792 346 792 349 793 349 793 349 793 350 794 352 794 354 795 357 796 357 796 358 796 358 796 360 797 363 798 365 798 365 798 366 798 366 798 369 799 371 800 373 800 374 800 374 800 374 800 377 801 379 802 382 802 382 802 382 802 382 802 385 803 388 803 390 804 390 804 391 804 391 804 394 804 396 804 399 805 399 805 400 805 400 805 402 805 405 806 408 806 408 806 408 806 409 806 411 806 414 806 417 807 417 807 418 807 418 807 421 807 423 807 426 807 426 807 427 807 427 807 430 807 433 807 435 807 488 807 538 793 575 768 575 777 576 787 577 797 579 809 582 821 586 833 538 852 487 862 435 862ZM934 876C899 923 846 949 788 949 748 949 710 937 678 913 639 884 614 841 607 793 600 744 613 696 642 657 658 636 678 618 701 606V684H725V716L684 797 772 909V930H803V909L890 797 850 716V684H875V606C883 610 890 615 898 620 978 681 994 796 934 876Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"designer\";}}i:7;a:7:{s:3:\"uid\";s:32:\"7053a226f0c4f80c1ebce30c670c50bc\";s:3:\"css\";s:3:\"dev\";s:4:\"code\";i:59399;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:4915:\"M908 488C894 465 873 433 871 427 859 394 865 377 871 356 877 338 884 317 879 284 862 188 816 139 815 138 810 132 804 127 799 122 791 114 783 107 775 100 681 17 562 0 480 0 454 0 428 2 402 5 160 36 52 200 51 348 51 467 89 529 125 589 161 647 194 702 196 809 197 853 196 894 196 932 196 937 198 942 202 945 206 949 211 950 216 949 253 941 297 944 340 954 403 972 470 990 539 1000 539 1000 540 1000 541 1000 545 1000 549 999 552 996 556 993 558 988 558 984 558 973 559 963 560 952L561 947C570 868 584 858 590 857 603 855 616 856 629 859 649 864 668 870 687 876 691 878 696 879 701 881 725 889 756 899 777 895 812 889 836 877 847 836 850 822 849 809 848 796 847 785 847 775 849 766 850 765 853 762 857 760 863 754 872 747 875 734 877 726 877 719 873 712 876 710 878 707 880 704 884 695 882 685 876 666 871 649 862 618 868 606 868 605 869 604 873 603 876 602 881 602 885 602L898 602C911 602 947 602 949 561 949 553 946 548 908 488ZM898 568L885 568C879 568 872 568 865 570 853 573 844 579 838 589 825 613 836 649 843 675 844 680 846 685 847 689 846 689 845 690 843 690 836 691 831 696 829 703 828 709 831 716 836 720 841 724 842 725 842 725 842 727 839 730 835 733 829 738 820 745 817 756 812 771 813 786 814 799 815 809 816 819 813 828 808 850 800 857 770 862 756 865 730 855 711 849 706 847 701 845 697 844 677 838 658 832 636 826 618 822 602 821 585 824 541 830 532 903 527 943L527 948C526 953 526 958 525 964 465 954 405 938 349 922 320 914 291 911 263 911 252 911 241 911 230 912 230 880 230 845 229 808 227 692 190 631 154 571 118 513 84 457 85 348 85 215 185 67 406 38 430 35 455 34 480 34 556 34 666 49 753 125 760 131 767 138 775 146 780 151 786 156 791 162 791 162 830 205 845 290 849 314 845 329 839 346 832 369 823 394 839 437 841 446 854 466 880 507 893 527 910 554 915 563 914 567 912 568 898 568ZM378 220C310 220 255 276 255 343 255 411 310 467 378 467 446 467 502 411 502 343 502 276 446 220 378 220ZM378 433C329 433 289 393 289 344 289 294 329 254 378 254 428 254 468 294 468 344 468 393 428 433 378 433ZM559 453L564 445C572 431 574 414 570 398 566 386 560 375 550 367 551 359 552 351 552 344 552 336 551 328 550 320 572 301 579 269 564 242L559 234C544 209 512 197 484 207 472 198 458 190 444 184 439 155 414 133 383 133H373C343 133 318 154 313 184 298 190 285 197 273 207 245 197 212 209 198 234L193 242C178 268 184 301 206 320 205 328 205 336 205 344S205 359 206 367C197 375 190 386 187 398 183 414 185 431 193 445L198 453C213 479 244 491 273 480 285 490 298 498 313 503 318 533 343 555 374 555H383C413 555 439 533 444 503 458 498 472 490 484 480 511 490 544 479 559 453ZM470 448C457 460 441 469 423 475 416 478 412 485 412 493 412 508 399 521 383 521H374C358 521 345 508 345 491 345 484 341 478 334 475 316 469 301 460 287 448 284 445 280 444 276 444 272 444 269 445 266 447 253 454 235 450 227 437L222 428C219 422 218 414 220 407 222 400 226 394 233 389 240 386 243 379 242 371 240 362 239 353 239 344 239 335 240 325 242 316 243 309 239 301 233 298 220 290 215 273 223 259L227 251C235 238 250 231 268 241 274 245 281 244 287 239 301 227 316 218 334 212 341 210 346 202 346 194 346 179 358 166 374 166H383C399 166 412 179 412 196 412 203 416 210 423 212 441 218 457 227 470 239 476 244 485 244 491 240 504 233 522 238 530 251L534 259C542 272 538 290 523 298 517 302 514 309 515 316 517 325 518 334 518 343 518 353 517 362 515 371 514 378 518 386 524 390 531 393 535 399 537 407 539 414 538 422 534 428L530 436C522 449 507 456 490 446 484 442 476 443 470 448ZM740 539L737 534C727 515 705 506 684 512 677 507 670 503 662 499 657 479 638 464 616 464H610C588 464 570 479 565 499 557 503 550 507 542 512 522 506 500 515 489 534L486 539C475 558 479 580 494 595 493 600 493 604 493 609 493 613 493 617 494 622 488 628 484 635 481 643 478 655 480 668 486 678L489 684C500 702 522 711 542 705 550 710 557 714 565 718 570 738 588 754 610 754H616C638 754 656 739 661 718 670 715 677 710 684 705 688 706 692 707 697 707 713 707 729 698 737 684L740 678C751 660 747 637 732 622 733 618 733 613 733 609 733 604 733 600 732 595 747 581 751 558 740 539ZM698 592C699 597 700 603 700 609 700 614 699 620 698 626 696 633 700 640 706 644 712 648 715 656 711 662L708 667C705 673 699 676 689 671 683 668 675 668 670 673 661 681 651 686 640 690 634 693 629 700 629 707 629 714 623 720 616 720H610C603 720 597 714 597 706 597 699 592 693 586 690 575 687 565 681 556 673 553 671 549 670 545 670 542 670 538 670 536 672 530 675 522 673 518 667L515 662C513 659 513 656 514 652 515 649 517 646 520 644 526 641 530 633 528 626 527 621 527 615 527 609 527 603 527 597 528 592 530 585 526 577 520 574 514 570 512 562 515 556L518 551C522 545 529 542 536 546 542 550 551 549 556 544 565 537 575 531 586 527 592 525 597 518 597 510 597 503 603 498 610 498H616C623 498 629 503 629 511 629 519 634 525 640 527 651 531 661 537 670 544 675 549 684 549 690 546 696 542 704 545 708 550L711 556C715 562 712 570 706 573 700 577 696 584 698 592Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"dev\";}}i:8;a:7:{s:3:\"uid\";s:32:\"83a7d751de49eabbadd8fe68db6d1664\";s:3:\"css\";s:8:\"favorite\";s:4:\"code\";i:59400;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1058:\"M737 343C706 312 666 296 623 296 580 296 540 312 509 343L504 348 499 343C468 312 428 296 385 296S302 312 271 343L269 345C206 408 206 510 269 573L493 797H515L739 573C802 510 802 408 739 345L737 343ZM718 552L504 766 290 552C239 500 239 417 290 366L292 364C317 339 350 325 385 325S453 339 478 364L493 379H515L530 364C555 339 588 325 623 325 658 325 691 339 716 364L718 366C769 417 769 500 718 552ZM508 0H477V103H508V0ZM308 153L256 63 231 78 282 167 308 153ZM160 295L71 244 56 269 145 321 160 295ZM104 492H0V523H104V492ZM63 744L78 769 168 718 153 692 63 744ZM244 929L270 944 321 855 295 840 244 929ZM493 1000H523L523 897H493L493 1000ZM692 847L744 937 770 922 718 832 692 847ZM840 705L929 756 944 730 855 679 840 705ZM897 477V508H1000V477H897ZM937 256L922 230 833 282 847 308 937 256ZM756 71L731 56 679 145 705 160 756 71ZM385 351C358 351 332 362 313 381L311 383C271 423 271 487 311 526 314 529 318 531 321 531 325 531 329 529 332 527 338 521 338 511 332 505 304 478 304 432 332 404L334 402C348 389 366 381 385 381 393 381 400 374 400 366 400 358 393 351 385 351Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"favorite\";}}i:9;a:7:{s:3:\"uid\";s:32:\"c90b058770aff77590ba062641f07d9e\";s:3:\"css\";s:5:\"hands\";s:4:\"code\";i:59401;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:879:\"M626 159H375L287 97 0 506 65 551 35 572 121 695 141 681 208 776 254 744 320 839 366 807 433 903 500 856 567 903 634 807 680 839 747 744 793 774 858 680 879 695 966 572 935 551 1000 506 714 97 626 159ZM129 649L81 580 156 527 204 596 129 649ZM235 717L216 730 168 661 279 583 327 652 235 717H235L235 717ZM328 794L281 725 383 653 431 721 328 794ZM441 857L393 788 469 735 517 804 441 857ZM920 580L872 648 785 586 615 467 596 494 625 514 832 659 784 729 752 708 723 687 584 588 565 614 720 725 672 794 653 780 653 780 593 739 592 738 537 699 527 712 518 726 589 776 607 788 559 857 529 836 563 812 497 718 477 690 458 703 455 697 392 607 354 633 287 537 231 577 164 482 94 531 46 498 295 143 364 191H578L569 198 313 297 290 497 416 516 452 406 466 404H647 658 667L691 420 907 571V571L920 580ZM907 531L678 371H673L463 371 427 377 394 480 326 469 343 321 583 228 706 143 954 498 907 531Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"hands\";}}i:10;a:7:{s:3:\"uid\";s:32:\"8bf3e0c1a4717d00a49c9a9434354378\";s:3:\"css\";s:9:\"inovation\";s:4:\"code\";i:59402;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:437:\"M853 305H947V273H834L791 370 818 383 853 305ZM947 225H881V254H947V225ZM532 117H627V88H513L471 184 498 196 532 117ZM627 37H561V66H627V37ZM140 516L168 505 125 408H12V437H106L140 516ZM78 357H12V387H78V357ZM724 263L602 575 428 135 226 648 175 518 0 963H1000L724 263ZM43 934L175 599 210 688 114 934H43ZM145 934L226 728 307 934H145ZM339 934L242 688 428 216 586 616 460 934H339ZM492 934L602 656 711 934H492ZM617 616L724 344 957 934H743L617 616Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"inovation\";}}i:11;a:7:{s:3:\"uid\";s:32:\"93f253a53c0626986694549ee6e849a7\";s:3:\"css\";s:11:\"inspiration\";s:4:\"code\";i:59403;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1782:\"M584 0H557V60H584V0ZM465 88L434 35 410 49 440 102 465 88ZM375 171L321 141 307 165 361 196 375 171ZM811 279V309H873V279H811ZM838 157L824 133 770 164 785 188 838 157ZM732 45L708 31 677 84 702 98 732 45ZM769 327C771 313 772 305 772 305 772 196 683 108 575 108 493 108 423 158 393 230 291 280 228 382 228 495 228 498 229 501 229 504L127 680H203V778C203 828 244 869 293 869H400V1000H428V840H293C259 840 231 812 231 778V652H176L257 512 257 508C257 503 257 499 257 495 257 402 304 318 381 269 379 280 378 292 378 305 378 306 380 397 454 492 465 507 468 534 468 551 460 556 456 565 456 574 456 580 457 585 460 589 457 594 456 599 456 604 456 609 457 614 460 619 457 623 456 628 456 634 456 645 462 655 472 660 476 675 490 685 505 685H644C660 685 674 675 678 660 687 655 694 645 694 634 694 628 693 623 690 619 693 614 694 609 694 604 694 599 693 594 690 589 693 585 694 580 694 574 694 565 689 556 681 550 682 534 684 507 695 492 731 446 750 401 760 366 782 406 793 450 793 495 793 567 766 634 715 685L711 689V1000H738V701C793 645 821 572 821 495 821 436 804 379 771 329L769 327ZM666 634C666 634 665 635 664 635L650 649V650C650 654 648 656 644 656H505C502 656 498 654 498 650V649L485 635C484 635 484 634 484 634 484 633 485 632 485 632L485 619H629V592H485L485 578H665L665 603C665 603 666 603 666 604 666 605 665 605 665 605L665 632C665 633 666 633 666 634ZM516 395L528 380 544 399 560 380 576 399 592 380 608 399 623 380 634 393 610 545 540 545 516 395ZM673 475C659 494 654 523 653 545H638L669 354 645 350 644 349 644 350 641 350 640 354 639 355 623 336 608 355 592 336 576 355 560 336 544 355 528 336 513 355 509 351 509 350 508 350 508 349 507 350 481 354 512 545H496C495 523 491 494 477 475 409 387 406 305 406 305 406 212 482 136 575 136 668 136 743 212 743 305 743 305 741 387 673 475Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"inspiration\";}}i:12;a:7:{s:3:\"uid\";s:32:\"0e7f1fffe6f07e4eeb871585007d53b8\";s:3:\"css\";s:12:\"landing_page\";s:4:\"code\";i:59404;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:626:\"M0 49V951H1000V49H0ZM971 920H29V172H971V920ZM971 143H29V80H971V143ZM80 96H49V125H80V96ZM133 96H102V125H133V96ZM186 96H154V125H186V96ZM186 527V557H214L176 689H259L308 598H460L380 873H473L620 598H755C781 598 830 577 830 543S781 488 755 488H620L473 211H380L460 488H308L259 394H175L214 527H186ZM455 844H420L491 598H587L455 844ZM420 240H455L587 488H491L420 240ZM241 424L291 518H755C773 518 800 533 800 543S773 568 755 568H291L241 660H215L244 557H309V527H244L215 424H241ZM779 543C779 530 768 519 756 519V566C768 566 779 555 779 543ZM387 314H334V344H387V314ZM406 373H299V402H406V373ZM387 742H334V771H387V742ZM406 684H299V713H406V684Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:12:\"landing_page\";}}i:13;a:7:{s:3:\"uid\";s:32:\"4627f95761cca0d38b12b1555673449e\";s:3:\"css\";s:7:\"manager\";s:4:\"code\";i:59405;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:3114:\"M917 605C905 596 893 589 880 583 890 546 895 507 895 469 895 222 694 21 447 21 201 21 0 222 0 469 0 715 201 916 447 916 506 916 563 905 617 882 631 903 648 922 668 937 705 964 748 979 793 979 859 979 919 948 959 896 1027 804 1009 674 917 605ZM29 469C29 238 217 50 447 50 678 50 865 238 865 469 865 504 861 539 852 573 833 567 813 564 793 564 730 564 672 591 633 639L601 622 552 602C553 591 554 580 554 572 573 559 585 541 586 524 588 513 589 501 591 490 605 489 617 478 619 463L627 383C628 375 626 368 621 361 617 357 612 354 607 352 608 342 609 332 610 322 610 320 610 318 611 315 613 289 618 235 577 198 547 168 498 151 445 151 391 151 342 168 313 197 271 235 276 289 279 315 279 318 279 320 279 323L280 332C281 339 282 345 283 352 270 356 261 369 262 383L271 463C272 478 284 489 299 490 300 500 301 511 302 522L303 524C304 541 316 559 335 572 335 580 336 589 337 600L285 621 235 649 235 653C184 668 120 689 97 697 54 631 29 553 29 469ZM413 580L353 550 353 550C340 540 332 529 332 521L331 518C329 502 327 485 325 469L322 448C331 453 342 455 352 455H353L373 455C402 454 425 435 432 412H463C466 420 470 429 477 436 489 448 505 455 522 455H522L543 455C551 455 559 453 566 450L564 469C562 486 560 504 558 521 557 529 548 542 533 552L527 556 526 562C525 572 524 591 522 610 521 625 520 640 519 650L438 711 370 651C369 641 368 626 367 611 366 603 366 595 365 588L407 609H482V580H413ZM312 249C316 238 322 228 332 219 357 195 399 180 445 180 490 180 532 194 557 219 567 228 574 239 577 250 569 240 557 234 544 234H345C332 234 320 240 312 249ZM315 444L299 460 296 419C298 425 302 431 307 436 310 439 312 441 315 444ZM589 435C590 433 592 431 593 430L589 460 588 460V461L575 446C580 443 585 439 589 435ZM490 385C518 378 547 378 574 386L573 394 575 393C575 394 575 395 575 395 575 402 572 409 567 415 561 422 552 426 542 427L522 427C513 427 504 423 498 416 493 410 490 403 490 395 490 392 490 388 490 385ZM472 360C467 362 464 366 463 371 462 375 462 379 461 382 461 382 461 383 461 383H434C433 379 433 376 432 373 431 368 427 364 423 362 393 351 361 348 330 353V277C330 269 337 262 345 262H544C552 262 559 269 559 277V353C529 348 500 351 472 360ZM320 385C348 378 377 378 405 386L405 395C406 411 391 426 372 427L352 427C343 427 334 423 328 416 323 410 320 403 320 395 320 392 320 389 320 385ZM272 848C210 819 156 776 115 722 149 710 196 695 235 683L234 808 279 827 272 848ZM299 860L315 811 264 789 264 674C276 671 285 669 292 667L378 881C351 876 324 869 299 860ZM447 887C433 887 419 886 405 885L410 883 319 657 340 643C341 650 341 656 342 660L343 666 436 749 546 666 547 660C548 657 548 652 549 646L566 657 473 885 475 886C466 886 456 887 447 887ZM587 863C561 872 533 879 505 883L599 654 616 663C591 704 581 752 587 801 588 807 589 813 591 818L574 824 587 863ZM936 878C902 924 849 950 793 950 754 950 717 937 686 914 648 886 623 844 616 797 609 749 621 703 650 664 684 619 736 593 793 593 832 593 869 605 900 628 978 687 994 799 936 878ZM686 794L683 857 745 854 882 717 823 658 686 794ZM733 825L714 826C714 826 714 826 714 826L715 807 789 733 807 751 733 825ZM828 730L810 712 823 699 840 717 828 730ZM779 856H869V826H779V856Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"manager\";}}i:14;a:7:{s:3:\"uid\";s:32:\"5782e19a90a2363514c16fff5f50c2fc\";s:3:\"css\";s:3:\"pen\";s:4:\"code\";i:59406;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:2291:\"M981 330C996 289 988 267 977 256 969 248 957 244 943 244 895 244 812 295 732 375 726 381 721 386 717 391 713 395 709 399 706 403L705 403 694 416 694 416 683 428H683C651 467 622 510 608 547 603 555 586 583 571 621 568 630 564 641 561 651 559 657 561 663 565 668 569 671 573 672 577 672 579 672 580 672 582 672 592 669 603 665 612 662 656 645 684 627 687 624 721 612 762 586 805 550L806 550 816 541C817 540 817 540 817 540L831 528 830 528C834 524 838 521 842 517 848 512 853 507 858 502 903 456 941 408 965 365 967 373 967 382 966 390 963 408 957 415 946 428 942 433 939 437 934 442 918 463 906 478 897 488 891 494 891 505 898 511 901 514 905 516 909 516 914 516 918 514 921 511 931 501 944 485 961 463 965 458 968 454 971 450 983 435 995 422 999 396 1002 374 998 345 981 330ZM604 629C612 610 620 593 626 582L652 607C640 613 624 621 604 629ZM682 591L643 551C653 526 673 492 707 452L782 526C741 560 708 580 682 591ZM937 346C915 387 879 434 834 478 829 483 825 488 820 493 815 497 811 501 807 504L729 426C733 422 737 418 741 414 745 409 750 404 755 399 835 319 910 277 943 277 946 277 951 277 954 280 958 284 960 304 937 346ZM560 704C551 705 545 714 546 723 549 741 546 761 543 781 539 803 535 826 539 849 540 851 538 854 537 853 501 831 462 808 420 798 380 788 351 796 327 821 317 831 308 844 300 856 292 868 284 879 275 889 216 955 120 911 34 860 33 860 33 857 35 857 118 842 169 757 208 675 237 614 261 549 282 485 290 478 298 472 305 466 326 449 346 432 367 414L385 399C471 326 588 226 528 106 502 54 471 44 451 44 416 45 394 75 381 98 361 132 348 169 336 206 322 246 309 288 296 328L286 362C276 396 265 431 254 465 230 485 206 505 184 526 137 569 71 674 69 679 64 686 66 697 74 702 81 707 92 704 96 696 97 695 163 591 207 551 215 542 224 535 233 527 216 572 199 617 178 661 142 735 97 812 27 824 13 827 3 837 1 851-2 866 5 881 17 889 59 914 131 956 199 956 235 956 271 944 300 911 310 900 319 887 327 875 335 863 343 852 351 844 366 828 384 824 412 830 450 839 485 860 520 882 531 889 545 889 556 881 568 873 574 858 572 844 569 826 572 807 576 786 579 764 583 741 579 717 578 708 569 702 560 704ZM318 371L328 338C341 298 353 257 367 216 379 182 392 145 410 114 425 89 438 78 452 76H453C473 76 490 104 498 120 547 217 445 304 363 373L345 389C330 402 316 414 301 426 307 408 313 390 318 371Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"pen\";}}i:15;a:7:{s:3:\"uid\";s:32:\"febd37d22d9d71e276eb70a05687fc2b\";s:3:\"css\";s:7:\"quality\";s:4:\"code\";i:59407;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:675:\"M0 113V887H1000V113H0ZM971 857H29V236H971V857ZM971 207H29V143H971V207ZM80 160H49V189H80V160ZM133 160H102V189H133V160ZM186 160H154V189H186V160ZM378 676L500 611 622 676 599 540 698 443 561 423 500 299 439 423 302 443 401 540 378 676ZM366 464L459 450 500 366 542 450 634 464 567 529 583 622 500 578 417 622 433 529 366 464ZM729 590L714 676 791 635 867 676 853 590 915 530 829 518 791 440 752 518 667 530 729 590ZM772 545L791 507 809 545 851 551 821 580 828 622 791 602 753 622 760 580 730 551 772 545ZM133 676L209 635 286 676 271 590 333 530 248 518 209 440 171 518 85 530 147 590 133 676ZM191 545L209 507 228 545 270 551 240 580 247 622 209 602 172 622 179 580 149 551 191 545Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"quality\";}}i:16;a:7:{s:3:\"uid\";s:32:\"7f6d1698ad6c71d44e96783531679504\";s:3:\"css\";s:10:\"responsive\";s:4:\"code\";i:59408;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:970:\"M973 504H949V441L949 441V130C949 108 932 90 910 90H40C18 90 0 108 0 130V652L0 652V745C0 768 22 791 45 791H358C358 797 358 802 358 808 358 826 359 846 356 857 355 867 353 869 353 869 353 870 350 871 348 872L347 873C344 875 338 877 331 881H305V910H336L336 911C337 910 337 910 337 910H647L647 910H800C802 910 804 910 806 910H973C988 910 1000 898 1000 884V530C1000 515 988 504 973 504ZM971 553H809V533H971V553ZM879 504H806C791 504 779 515 779 530V826H629V447H879V504ZM809 582H971V828H809V582ZM908 504V418H600V856H779V881H592C590 881 588 878 588 876V404C588 401 590 398 592 398H916C918 398 920 401 920 404V504H908ZM871 369H592C573 369 559 385 559 404V602H78V172H871V369ZM29 130C29 124 35 119 40 119H910C916 119 920 124 920 130V370C920 370 918 369 916 369H900V143H49V629H559V652H29V130ZM29 745V682H559V762H45C38 762 29 752 29 745ZM385 863C388 849 388 828 387 808 387 802 387 797 387 792L559 792V876C559 877 558 879 559 881H380C382 877 384 871 385 863ZM809 881V857H971V881H809Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:10:\"responsive\";}}i:17;a:7:{s:3:\"uid\";s:32:\"72028748e286fcc500390629fcbdcf56\";s:3:\"css\";s:6:\"screen\";s:4:\"code\";i:59409;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1087:\"M950 105H50C23 105 0 128 0 156V726C0 754 23 775 50 775H387C387 791 385 802 382 805 377 808 364 813 350 817 329 824 303 833 278 844 268 848 263 860 265 871 267 878 273 895 302 895H698C727 895 734 881 736 872 738 861 732 848 723 844 698 833 671 824 650 817 636 813 623 808 618 806 615 802 614 791 614 775H950C978 775 1000 754 1000 726V156C1000 128 978 105 950 105ZM639 850C649 853 661 857 672 861H328C339 857 351 853 361 850 378 844 391 839 398 835 415 826 420 801 420 775H580C580 801 585 826 602 835 610 839 622 844 639 850ZM967 726C967 735 959 742 950 742H50C41 742 33 735 33 726V156C33 147 41 139 50 139H950C959 139 967 147 967 156V726ZM557 560H592V434H557V560ZM619 560H652V467H619V560ZM682 560H715V375H682V560ZM742 560H777V391H742V560ZM805 560H838V334H805V560ZM170 346H256V310H170V346ZM277 346H363V310H277V346ZM387 346H471V310H387V346ZM170 404H256V369H170V404ZM277 404H363V369H277V404ZM387 404H471V369H387V404ZM170 463H256V428H170V463ZM277 463H363V428H277V463ZM387 463H471V428H387V463ZM170 519H256V486H170V519ZM277 519H363V486H277V519ZM387 519H471V486H387V519ZM387 578H471V545H387V578Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:6:\"screen\";}}i:18;a:7:{s:3:\"uid\";s:32:\"0c7cdd38b948fa1526798f20da0c9d7e\";s:3:\"css\";s:8:\"strategy\";s:4:\"code\";i:59410;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:669:\"M1000 207V94H0V207H23V703H0V783H332L249 888 272 906 370 783H486V898H514V783H630L728 907 751 888 668 783H1000V703H977V207H1000ZM971 756H29V732H971V756ZM53 703V207H947V703H53ZM971 178H29V123H971V178ZM333 457L354 436 290 372 354 308 333 287 269 351 205 287 185 308 249 372 185 436 205 457 269 392 333 457ZM734 431C685 431 645 470 645 519 645 568 685 608 734 608 783 608 822 568 822 519 822 470 783 431 734 431ZM734 579C701 579 674 552 674 519 674 486 701 460 734 460 767 460 793 486 793 519 793 552 767 579 734 579ZM467 354L487 375 538 325C538 328 538 332 538 335 538 490 410 615 254 615V644C426 644 567 506 567 335 567 333 567 331 567 328L613 375 634 354 550 271 467 354Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"strategy\";}}i:19;a:7:{s:3:\"uid\";s:32:\"a37ac4e7e98000e65fdf7baeb6e750bf\";s:3:\"css\";s:8:\"transfer\";s:4:\"code\";i:59411;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1265:\"M969 373H938V135C938 113 920 96 898 96H40C18 96 0 113 0 135V650L0 650V741C0 765 22 787 45 787H353C353 793 353 798 353 803 353 821 354 841 351 852 350 861 349 863 348 864 348 864 346 865 344 866L343 867C339 869 334 871 327 875H291V904H332L332 905C333 905 333 904 333 904H604C604 904 605 905 605 905L606 904H648V875H610C604 871 598 869 594 867 592 866 590 865 590 864 589 864 588 861 587 852 585 841 585 821 585 804 585 798 585 793 585 787H719V867C719 884 732 898 749 898H969C986 898 1000 884 1000 867V403C1000 386 986 373 969 373ZM376 875C378 871 379 865 381 858 384 844 383 823 383 803 383 798 383 793 383 788L555 789C555 794 555 799 555 804 555 823 554 844 557 858 559 865 560 871 562 875H376ZM719 758H45C39 758 29 748 29 741V680H719V758ZM719 650H31V135C31 129 35 125 40 125H898C903 125 908 129 908 135V373H875V158H63V617H719V650ZM719 403V586H92V187H844V295H844L844 373H749C732 373 719 386 719 403ZM844 402V420H748V403C748 403 749 402 749 402H844ZM971 867C971 867 970 867 969 867H749C749 867 748 867 748 867V789H971V867ZM971 758H748V449H844L844 573 799 528 778 549 859 631 941 549 919 528 874 573 874 449H971V758ZM971 420H875V402H969C970 402 971 403 971 403V420ZM873 816H844V846H873V816ZM549 304L570 325 615 280 615 559H645L645 280 690 325 712 304 630 223 549 304Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"transfer\";}}i:20;a:7:{s:3:\"uid\";s:32:\"a7e4573fa544aad3365b3afd34bdf221\";s:3:\"css\";s:5:\"right\";s:4:\"code\";i:59412;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:209:\"M990 541L673 856C659 869 637 869 623 856 609 842 609 820 623 806L879 552H35C15 552-1 536-1 516-1 497 15 481 35 481H879L623 227C609 213 609 190 623 176 637 163 659 163 673 176L990 491C1003 505 1003 528 990 541Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:5:\"right\";}}i:21;a:7:{s:3:\"uid\";s:32:\"857e6d82cba17870f6b21663de8fcd0f\";s:3:\"css\";s:4:\"left\";s:4:\"code\";i:59413;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:211:\"M9 491L326 176C340 163 362 163 376 176 390 190 390 213 376 227L120 480H965C984 480 1000 497 1000 516 1000 536 984 551 965 551H120L376 806C390 819 390 842 376 856 362 869 340 869 326 856L9 541C-4 527-4 505 9 491Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"left\";}}i:22;a:7:{s:3:\"uid\";s:32:\"fd69e32baf5f4f911387e5276b40f734\";s:3:\"css\";s:3:\"top\";s:4:\"code\";i:59414;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:312:\"M840 326.2L525.4 9.9C511.8-3.7 489.2-3.7 475.2 9.9L160.7 326.2C147.1 340.4 147.1 362.6 160.7 376.7 174.7 390.3 197.3 390.3 210.8 376.7L465.2 120.9 465.2 965C465.2 984.7 480.7 1000.3 500.3 1000.3 519.9 1000.3 536 984.7 536 965V120.9L789.8 376.7C803.8 390.3 825.9 390.3 840 376.7 853.5 362.6 853.5 340.4 840 326.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"top\";}}i:23;a:7:{s:3:\"uid\";s:32:\"61938dea1ded90a91a378564b3d4749e\";s:3:\"css\";s:3:\"bot\";s:4:\"code\";i:59415;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:309:\"M160.7 673.7L475.2 990.1C488.8 1003.7 511.4 1003.7 525.4 990.1L840 673.7C853.5 659.6 853.5 637.4 840 623.3 825.9 609.7 803.3 609.7 789.8 623.3L535.5 879.1V35C535.5 15.3 519.9-0.3 500.3-0.3 480.7-0.3 464.7 15.3 464.7 35V879.1L210.9 623.3C196.8 609.7 174.7 609.7 160.7 623.3 147.1 637.4 147.1 659.6 160.7 673.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:3:\"bot\";}}i:24;a:7:{s:3:\"uid\";s:32:\"9b9ec6eff992ab92fbe5be63f692919d\";s:3:\"css\";s:21:\"instagram-with-circle\";s:4:\"code\";i:59416;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1059:\"M703 346A86 86 0 0 0 654 297 144 144 0 0 0 605 288C578 287 570 286 500 286S422 287 395 288A144 144 0 0 0 346 297 86 86 0 0 0 297 346 144 144 0 0 0 288 395C287 422 287 430 287 500S287 578 288 605A144 144 0 0 0 297 654 86 86 0 0 0 346 703 144 144 0 0 0 395 712C422 713 431 713 500 713S578 713 605 712A144 144 0 0 0 654 703 86 86 0 0 0 703 654 144 144 0 0 0 712 605C713 578 714 569 714 500S713 422 712 395A144 144 0 0 0 703 346ZM500 634A134 134 0 1 1 634 500 134 134 0 0 1 500 634ZM639 392A31 31 0 1 1 670 361 31 31 0 0 1 639 392ZM587 500A87 87 0 1 1 500 413 87 87 0 0 1 587 500ZM500 0A500 500 0 1 0 1000 500 500 500 0 0 0 500 0ZM759 607A191 191 0 0 1 747 671 133 133 0 0 1 671 747 191 191 0 0 1 607 759C580 760 571 760 500 760S420 760 393 759A191 191 0 0 1 329 747 133 133 0 0 1 253 671 191 191 0 0 1 241 607C240 580 240 571 240 500S240 420 241 393A191 191 0 0 1 253 329 133 133 0 0 1 329 253 191 191 0 0 1 393 241C420 240 429 240 500 240S580 240 607 241A191 191 0 0 1 671 253 133 133 0 0 1 747 329 191 191 0 0 1 759 393C760 420 760 429 760 500S760 580 759 607Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:21:\"instagram-with-circle\";}}i:25;a:7:{s:3:\"uid\";s:32:\"cdc4d53ab6c25cc4e33fdb8dd9c33b76\";s:3:\"css\";s:9:\"instagram\";s:4:\"code\";i:61805;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:888:\"M571 500Q571 441 530 399T429 357 328 399 286 500 328 601 429 643 530 601 571 500ZM648 500Q648 591 584 656T429 720 273 656 209 500 273 344 429 280 584 344 648 500ZM709 271Q709 292 694 307T657 322 621 307 606 271 621 235 657 220 694 235 709 271ZM429 148Q425 148 386 148T327 148 273 150 216 155 176 166Q148 177 127 198T94 247Q88 263 84 287T78 345 77 398 77 457 77 500 77 543 77 602 78 655 84 713 94 753Q106 781 127 802T176 834Q192 840 216 845T273 850 327 852 386 852 429 852 471 852 530 852 584 850 642 845 681 834Q709 823 731 802T763 753Q769 737 773 713T779 655 780 602 780 543 780 500 780 457 780 398 779 345 773 287 763 247Q752 219 731 198T681 166Q665 160 642 155T584 150 530 148 471 148 429 148ZM857 500Q857 628 854 677 849 793 785 857T606 926Q556 929 429 929T252 926Q136 920 72 857T3 677Q0 628 0 500T3 323Q8 207 72 143T252 74Q301 71 429 71T606 74Q722 80 785 143T854 323Q857 372 857 500Z\";s:5:\"width\";d:857.10000000000002;}s:6:\"search\";a:1:{i:0;s:9:\"instagram\";}}i:26;a:7:{s:3:\"uid\";s:32:\"2bc6158ee2f95d76aafdebe32b2634a1\";s:3:\"css\";s:8:\"snapchat\";s:4:\"code\";i:62123;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:757:\"M714 641Q714 628 702 626 664 617 636 593T591 532Q587 522 587 518 587 510 598 504T622 494 646 483 657 463Q657 452 647 445T625 438Q618 438 607 442T590 447Q588 447 583 446 586 393 586 382 586 338 577 319 556 275 519 251T434 227Q323 227 281 319 271 338 271 382 271 393 274 446 272 447 266 447 260 447 248 443T232 439Q220 439 210 445T200 463Q200 475 211 483T235 494 259 504 270 518Q270 522 266 532 231 609 156 626 143 628 143 641 143 666 220 679 221 681 223 693T230 710 243 715Q249 715 264 713T286 710Q305 710 323 719T353 737 385 755 428 763Q452 763 472 755T504 737 534 719 571 710Q579 710 594 713T615 715Q624 715 628 709T634 692 637 679Q714 666 714 641ZM857 500Q857 617 800 715T644 871 429 929 213 871 58 715 0 500 58 285 213 129 429 71 644 129 800 285 857 500Z\";s:5:\"width\";d:857.10000000000002;}s:6:\"search\";a:1:{i:0;s:8:\"snapchat\";}}i:27;a:7:{s:3:\"uid\";s:32:\"77ff8146d2c683d86c7c66c0d63faf19\";s:3:\"css\";s:14:\"snapchat-ghost\";s:4:\"code\";i:62124;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:733:\"M473 71Q548 71 607 110T699 217Q714 249 714 317 714 343 709 423 717 427 724 427 734 427 753 420T781 412Q797 412 813 422T828 448Q828 466 810 478T772 496 733 512 715 538Q715 547 722 562 743 608 779 646T860 703Q876 709 905 715 920 719 920 735 920 774 798 792 794 798 792 814T784 840 766 850Q755 850 731 847T695 843Q675 843 661 846 643 849 626 859T593 880 561 902 518 921 463 929Q434 929 409 921T368 902 335 880 303 859 268 846Q254 843 233 843 220 843 197 847T164 852Q150 852 145 841T137 815 131 792Q8 774 8 735 8 719 24 715 53 709 69 703 112 685 149 646T207 562Q213 547 213 538 213 523 196 512T157 495 118 478 100 449Q100 434 115 423T146 413Q154 413 172 420T202 427Q212 427 220 423 215 344 215 317 215 249 230 217 266 141 326 107T473 71Z\";s:5:\"width\";d:928.60000000000002;}s:6:\"search\";a:1:{i:0;s:14:\"snapchat-ghost\";}}i:28;a:7:{s:3:\"uid\";s:32:\"e1d7409e31cd1d6e15e82a28646cc11d\";s:3:\"css\";s:15:\"snapchat-square\";s:4:\"code\";i:62125;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:761:\"M714 641Q714 628 702 626 665 618 636 593T592 532Q588 525 588 518 588 510 599 504T622 494 646 483 657 463Q657 452 647 445T625 438Q619 438 608 442T590 447Q588 447 583 446 586 411 586 382 586 338 577 318 556 275 519 250T434 226Q324 226 281 318 271 339 271 382 271 403 274 446 268 447 266 447 260 447 248 442T231 438Q220 438 210 445T200 463Q200 475 211 483T235 494 259 504 270 518Q270 525 266 532 230 609 155 626 143 628 143 641 143 667 220 679 221 682 223 694T229 711 242 716Q249 716 264 713T285 710Q305 710 323 719T353 737 385 755 428 763Q452 763 472 755T504 737 534 719 572 710Q579 710 594 713T616 715Q624 715 628 710T635 693 637 679Q714 667 714 641ZM857 232V768Q857 834 810 881T696 929H161Q94 929 47 881T0 768V232Q0 166 47 119T161 71H696Q763 71 810 119T857 232Z\";s:5:\"width\";d:857.10000000000002;}s:6:\"search\";a:1:{i:0;s:15:\"snapchat-square\";}}i:29;a:7:{s:3:\"uid\";s:32:\"9ef9a3b5902d6ff3fa714c7b698c6254\";s:3:\"css\";s:15:\"fira-sans-quote\";s:4:\"code\";i:59451;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:355:\"M262.4 1000.2C409.3 1000.2 528.2 891.8 528.2 748.4A246.7 246.7 0 0 0 416.3 538.5L559.7-0.2H307.8L80.5 475.5C21 604.9 0 671.4 0 748.4 0 891.8 115.5 1000.2 262.4 1000.2ZM937.4 1000.2C1084.4 1000.2 1203.3 891.8 1203.3 748.4A246.7 246.7 0 0 0 1091.4 538.5L1234.8-0.2H982.9L755.6 475.5C696.1 604.9 675.1 671.4 675.1 748.4 675.1 891.8 790.6 1000.2 937.4 1000.2Z\";s:5:\"width\";i:1235;}s:6:\"search\";a:1:{i:0;s:15:\"fira-sans-quote\";}}i:30;a:7:{s:3:\"uid\";s:32:\"58d52d05e0c4600ec06391ffd294b4e0\";s:3:\"css\";s:9:\"compass-2\";s:4:\"code\";i:59869;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:699:\"M500 0C224.3 0 0 224.3 0 500S224.3 1000 500 1000C655 1000 798.7 929.9 894.2 807.6 901.1 798.7 899.6 786 890.7 779 881.8 772.1 869.1 773.7 862.1 782.5 774.4 894.9 642.4 959.3 500 959.3 246.7 959.3 40.7 753.3 40.7 500S246.7 40.7 500 40.7 959.3 246.7 959.3 500C959.3 511.2 968.4 520.3 979.6 520.3S1000 511.2 1000 500C1000 224.3 775.7 0 500 0ZM491.8 810.3C493.1 810.5 494.4 810.7 495.7 810.7 503.8 810.7 511.3 805.8 514.5 798.1L729 280.3C732.2 272.7 730.4 263.9 724.6 258.1S710 250.6 702.4 253.7L184.6 468.2C175.7 471.9 170.6 481.4 172.5 491 174.4 500.5 182.7 507.3 192.4 507.3H475.4V790.3C475.4 800 482.2 808.4 491.8 810.3ZM294.7 466.6L672.6 310.1 516.1 688V487C516.1 475.8 507 466.6 495.7 466.6H294.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:9:\"compass-2\";}}i:31;a:7:{s:3:\"uid\";s:32:\"dc4adaa7ebc9fec8e7b75b40570d4daf\";s:3:\"css\";s:7:\"folders\";s:4:\"code\";i:59870;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:874:\"M20.3 138.3C31.6 138.3 40.7 129.2 40.7 117.9 40.7 86.5 66.2 61 97.6 61H279.7L423 217.5C426.8 221.7 432.3 224.1 438 224.1H902.4C933.8 224.1 959.3 249.7 959.3 281.1 959.3 292.3 968.4 301.4 979.7 301.4S1000 292.3 1000 281.1C1000 227.2 956.2 183.4 902.4 183.4H446.9L303.6 26.9C299.8 22.7 294.3 20.3 288.6 20.3H97.6C43.8 20.3 0 64.1 0 117.9 0 129.2 9.1 138.3 20.3 138.3ZM902.4 319.2H446.9L303.6 162.7C299.8 158.4 294.3 156 288.6 156H97.6C43.8 156 0 199.8 0 253.7V656C0 667.3 9.1 676.4 20.3 676.4S40.7 667.3 40.7 656V253.7C40.7 222.3 66.2 196.7 97.6 196.7H279.7L423 353.3C426.8 357.5 432.3 359.9 438 359.9H902.4C933.8 359.9 959.3 385.4 959.3 416.8V882.1C959.3 913.5 933.8 939 902.4 939H97.6C66.2 939 40.7 913.5 40.7 882.1 40.7 870.8 31.6 861.7 20.3 861.7S0 870.8 0 882.1C0 935.9 43.8 979.7 97.6 979.7H902.4C956.2 979.7 1000 935.9 1000 882.1V416.8C1000 363 956.2 319.2 902.4 319.2Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"folders\";}}i:32;a:7:{s:3:\"uid\";s:32:\"6a720aff8bb32ac5a6d7fa4b639cf8b9\";s:3:\"css\";s:7:\"glasses\";s:4:\"code\";i:59871;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1160:\"M265.7 305.4C197.8 305.4 137.9 340.4 103.1 393.3H20.5C9.2 393.3 0 402.5 0 413.8S9.2 434.3 20.5 434.3H82.6C75.2 454.8 71.1 476.9 71.1 500 71.1 607.3 158.4 694.6 265.7 694.6S460.3 607.3 460.3 500 373 305.4 265.7 305.4ZM265.7 653.7C181 653.7 112 584.7 112 500S181 346.3 265.7 346.3 419.4 415.3 419.4 500 350.4 653.7 265.7 653.7ZM979.5 393.3H887.3C877.4 378.3 865.5 364.5 851.6 352.6 816.3 322.2 771.2 305.4 724.6 305.4 654.9 305.4 593.7 342.2 559.3 397.4 544.4 378.4 521.2 366.1 495.1 366.1 481.5 366.1 468 369.5 456.1 376 446.2 381.5 442.5 393.9 448 403.8 453.4 413.7 465.8 417.3 475.7 411.9 481.7 408.6 488.2 407 495.1 407 517.5 407 535.7 425.2 535.7 447.5 535.7 448.9 535.8 450.3 536.1 451.6 532.1 467.1 530 483.3 530 500 530 607.3 617.3 694.6 724.6 694.6 805.1 694.6 878.3 644 906.7 568.6 910.7 558 905.4 546.2 894.8 542.2 884.2 538.3 872.4 543.6 868.4 554.2 846 613.7 788.2 653.7 724.6 653.7 639.9 653.7 570.9 584.7 570.9 500S639.9 346.3 724.6 346.3C800.7 346.3 864.6 400.8 876.4 475.9 878.1 487.1 888.6 494.7 899.8 492.9 910.9 491.2 918.6 480.7 916.8 469.6 914.9 457.5 911.8 445.7 907.7 434.3H979.5C990.8 434.3 1000 425.1 1000 413.8S990.8 393.3 979.5 393.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:7:\"glasses\";}}i:33;a:7:{s:3:\"uid\";s:32:\"8b53e009dfeb8f0e9854d790de5d5e4c\";s:3:\"css\";s:4:\"note\";s:4:\"code\";i:59872;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1395:\"M979.7 0H20.3C9.1 0 0 9.1 0 20.3V979.7C0 990.9 9.1 1000 20.3 1000H835.8C847 1000 856.1 990.9 856.1 979.7S847 959.3 835.8 959.3H40.7V40.7H959.3V979.7C959.3 990.9 968.4 1000 979.7 1000S1000 990.9 1000 979.7V20.3C1000 9.1 990.9 0 979.7 0ZM223.2 211.7C180.2 211.7 145.2 246.7 145.2 289.7S180.2 367.7 223.2 367.7 301.2 332.7 301.2 289.7 266.2 211.7 223.2 211.7ZM223.2 327C202.7 327 185.9 310.3 185.9 289.7S202.7 252.4 223.2 252.4 260.5 269.1 260.5 289.7 243.8 327 223.2 327ZM837.1 269.4H362.3C351 269.4 341.9 278.5 341.9 289.7S351 310.1 362.3 310.1H837.1C848.3 310.1 857.5 301 857.5 289.7S848.3 269.4 837.1 269.4ZM223.2 422C212 422 202.9 431.1 202.9 442.3S212 462.7 223.2 462.7C243.8 462.7 260.5 479.4 260.5 500S243.8 537.3 223.2 537.3 185.9 520.6 185.9 500C185.9 488.8 176.8 479.7 165.6 479.7S145.2 488.8 145.2 500C145.2 543 180.2 578 223.2 578S301.2 543 301.2 500 266.2 422 223.2 422ZM837.1 479.7H362.3C351 479.7 341.9 488.8 341.9 500S351 520.3 362.3 520.3H837.1C848.3 520.3 857.5 511.2 857.5 500S848.3 479.7 837.1 479.7ZM223.2 632.3C180.2 632.3 145.2 667.3 145.2 710.3S180.2 788.3 223.2 788.3 301.2 753.3 301.2 710.3 266.2 632.3 223.2 632.3ZM223.2 747.6C202.7 747.6 185.9 730.9 185.9 710.3S202.7 673 223.2 673 260.5 689.7 260.5 710.3 243.8 747.6 223.2 747.6ZM837.1 689.9H362.3C351 689.9 341.9 699 341.9 710.3S351 730.6 362.3 730.6H837.1C848.3 730.6 857.5 721.5 857.5 710.3S848.3 689.9 837.1 689.9Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"note\";}}i:34;a:7:{s:3:\"uid\";s:32:\"43af21794c875650f0ea9df38701af6f\";s:3:\"css\";s:11:\"play-button\";s:4:\"code\";i:59873;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:727:\"M944.7 271.1C909.6 203.2 858.6 143.3 797 97.7 788 91 775.2 93 768.5 102S763.8 123.8 772.8 130.5C829.4 172.3 876.3 227.4 908.5 289.8 942.2 355.2 959.3 425.9 959.3 500 959.3 753.3 753.3 959.3 500 959.3S40.7 753.3 40.7 500 246.7 40.7 500 40.7C511.2 40.7 520.3 31.6 520.3 20.3S511.2 0 500 0C224.3 0 0 224.3 0 500S224.3 1000 500 1000 1000 775.7 1000 500C1000 420.5 980.9 341.4 944.7 271.1ZM372.1 267.8C365.7 271.5 361.8 278.2 361.8 285.5V732.1C361.8 743.4 370.9 752.5 382.1 752.5S402.5 743.4 402.5 732.1V321.3L703.8 500.7 482.2 643.4C472.8 649.5 470 662.1 476.1 671.6 482.2 681 494.8 683.7 504.2 677.6L753.4 517.1C759.3 513.3 762.9 506.7 762.7 499.6 762.6 492.6 758.9 486.1 752.8 482.5L392.5 268C386.2 264.3 378.4 264.2 372.1 267.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"play-button\";}}i:35;a:7:{s:3:\"uid\";s:32:\"b0610d669706cdc10fdc4d1e984f1753\";s:3:\"css\";s:8:\"settings\";s:4:\"code\";i:59874;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:3431:\"M814.5 685C806.6 677 793.7 677 785.7 685 777.8 692.9 777.8 705.8 785.7 713.8L825.3 753.3C834.8 762.8 840 775.4 840 788.8 840 802.2 834.8 814.8 825.3 824.3L824.3 825.3C814.8 834.7 802.2 840 788.8 840 775.4 840 762.8 834.7 753.3 825.3L713.8 785.7C706.9 778.9 696.2 777.8 688.1 783.2 651.2 807.7 610.5 824.6 567.2 833.3 557.7 835.2 550.9 843.5 550.9 853.2V909.1C550.9 936.8 528.4 959.3 500.7 959.3H499.3C471.6 959.3 449.1 936.8 449.1 909.1V853.2C449.1 843.5 442.3 835.2 432.8 833.3 389.5 824.6 348.8 807.7 311.9 783.2 303.8 777.8 293.1 778.9 286.2 785.7L246.7 825.3C237.2 834.7 224.6 840 211.2 840 197.8 840 185.2 834.7 175.7 825.3L174.7 824.3C165.3 814.8 160 802.2 160 788.8 160 775.4 165.3 762.8 174.7 753.3L214.3 713.8C221.1 706.9 222.2 696.2 216.8 688.1 192.3 651.2 175.4 610.5 166.7 567.2 164.8 557.7 156.4 550.9 146.8 550.9H90.9C63.2 550.9 40.7 528.4 40.7 500.7V499.3C40.7 471.6 63.2 449.1 90.9 449.1H146.8C156.5 449.1 164.8 442.3 166.7 432.8 175.4 389.5 192.3 348.8 216.8 311.9 222.2 303.8 221.1 293.1 214.3 286.2L174.7 246.7C165.3 237.2 160 224.6 160 211.2S165.3 185.2 174.7 175.7L175.7 174.7C185.2 165.2 197.8 160 211.2 160 224.6 160 237.2 165.2 246.7 174.7L286.2 214.3C294.2 222.2 307.1 222.2 315 214.3 323 206.3 323 193.4 315 185.5L275.5 145.9C258.3 128.8 235.5 119.3 211.2 119.3 186.9 119.3 164.1 128.8 147 145.9L145.9 147C128.8 164.1 119.3 186.9 119.3 211.2S128.8 258.3 145.9 275.5L174 303.5C154.2 336.2 139.6 371.4 130.5 408.4H90.9C40.8 408.4 0 449.2 0 499.3V500.7C0 550.8 40.8 591.6 90.9 591.6H130.5C139.6 628.6 154.2 663.8 174 696.5L145.9 724.5C128.8 741.7 119.3 764.5 119.3 788.8S128.8 835.9 145.9 853L147 854C164.1 871.2 186.9 880.7 211.2 880.7 235.5 880.7 258.3 871.2 275.5 854.1L303.5 826C336.2 845.8 371.4 860.4 408.4 869.5V909.1C408.4 959.2 449.2 1000 499.3 1000H500.7C550.8 1000 591.6 959.2 591.6 909.1V869.5C628.6 860.4 663.8 845.8 696.5 826L724.6 854C741.7 871.2 764.5 880.7 788.8 880.7S835.9 871.2 853 854L854.1 853C871.2 835.9 880.7 813.1 880.7 788.8S871.2 741.7 854.1 724.5L814.5 685ZM909.1 408.4H869.5C860.4 371.4 845.8 336.2 826 303.5L854.1 275.5C889.5 240 889.5 182.4 854.1 147L853 145.9C835.9 128.8 813.1 119.3 788.8 119.3S741.7 128.8 724.6 145.9L696.5 174C663.8 154.2 628.6 139.6 591.6 130.5V90.9C591.6 40.8 550.8 0 500.7 0H499.3C449.2 0 408.4 40.8 408.4 90.9V146.8C408.4 158 417.5 167.1 428.8 167.1 440 167.1 449.1 158 449.1 146.8V90.9C449.1 63.2 471.6 40.7 499.3 40.7H500.7C528.4 40.7 550.9 63.2 550.9 90.9V146.8C550.9 156.4 557.7 164.8 567.2 166.7 610.5 175.4 651.2 192.3 688.1 216.8 696.2 222.2 706.9 221.1 713.8 214.3L753.3 174.7C762.8 165.3 775.4 160 788.8 160 802.2 160 814.8 165.3 824.3 174.7L825.3 175.7C834.7 185.2 840 197.8 840 211.2S834.7 237.2 825.3 246.7L785.7 286.2C778.9 293.1 777.8 303.8 783.2 311.9 807.7 348.8 824.6 389.5 833.3 432.8 835.2 442.3 843.5 449.1 853.2 449.1H909.1C936.8 449.1 959.3 471.6 959.3 499.3V500.7C959.3 528.4 936.8 550.9 909.1 550.9H853.2C842 550.9 832.9 560 832.9 571.2S842 591.6 853.2 591.6H909.1C959.2 591.6 1000 550.8 1000 500.7V499.3C1000 449.2 959.2 408.4 909.1 408.4ZM500 576.7C482.2 576.7 465.5 570.8 451.8 559.6 443 552.5 430.2 553.9 423.1 562.6 416.1 571.3 417.4 584.1 426.1 591.2 446.9 608.1 473.2 617.4 500 617.4 564.7 617.4 617.4 564.7 617.4 500 617.4 435.3 564.7 382.6 500 382.6 435.3 382.6 382.6 435.3 382.6 500 382.6 511.2 391.8 520.3 403 520.3S423.3 511.2 423.3 500C423.3 457.7 457.7 423.3 500 423.3S576.7 457.7 576.7 500 542.3 576.7 500 576.7Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:8:\"settings\";}}i:36;a:7:{s:3:\"uid\";s:32:\"b79938997b14f60f812b57df786c8fec\";s:3:\"css\";s:4:\"shop\";s:4:\"code\";i:59875;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:444:\"M979.7 308.8H721.6 298.8V295.3C298.8 185.5 388 96.2 497.8 96.2H502.2C572.6 96.2 638.5 134 674.1 194.9 679.8 204.6 692.2 207.8 701.9 202.1 711.6 196.5 714.9 184 709.2 174.3 666.3 101 587 55.5 502.2 55.5H497.8C365.6 55.5 258.1 163.1 258.1 295.3V308.8H20.3C9.1 308.8 0 317.9 0 329.1V924.1C0 935.3 9.1 944.4 20.3 944.4H979.7C990.9 944.4 1000 935.3 1000 924.1V329.1C1000 317.9 990.9 308.8 979.7 308.8ZM959.3 903.8H40.7V349.5H278.4 721.6 959.3V903.8Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"shop\";}}i:37;a:7:{s:3:\"uid\";s:32:\"9584b14c9ca3dab93035ed3d21f81680\";s:3:\"css\";s:15:\"upload-to-cloud\";s:4:\"code\";i:59876;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:1098:\"M771.7 368C762.3 226.1 643.9 113.5 499.6 113.5 355.3 113.5 236.8 226.1 227.5 368.1 98.5 384.4 0 494.3 0 626.1 0 769.7 116.8 886.5 260.4 886.5H656.4C667.6 886.5 676.8 877.4 676.8 866.1S667.6 845.7 656.4 845.7H260.4C139.3 845.7 40.8 747.2 40.8 626.1 40.8 509.6 132 413.4 248.5 407.2 259.3 406.6 267.8 397.6 267.8 386.8 267.8 386.4 267.8 386 267.7 385.6 268 258 371.9 154.3 499.6 154.3 627.3 154.3 731.2 258 731.5 385.6 731.5 386 731.5 386.5 731.5 386.8 731.5 397.6 740 406.6 750.8 407.1 867.7 413.1 959.2 509.3 959.2 626.1 959.2 692.5 929.6 754.6 878.1 796.6 869.3 803.7 868 816.5 875.1 825.3 882.2 834 895.1 835.3 903.8 828.2 964.9 778.5 1000 704.9 1000 626.1 1000 493.9 901.2 383.9 771.7 368ZM479.2 479.6V739.7C479.2 751 488.4 760.1 499.6 760.1S520 751 520 739.7V479.6C520 468.3 510.9 459.2 499.6 459.2S479.2 468.3 479.2 479.6ZM616.3 517.4C621.5 517.4 626.7 515.4 630.7 511.5 638.7 503.5 638.7 490.6 630.7 482.6L514 365.9C506.1 358 493.2 358 485.2 365.9L368.5 482.6C360.6 490.6 360.6 503.5 368.5 511.5 376.5 519.4 389.4 519.4 397.4 511.5L499.6 409.2 601.9 511.5C605.8 515.4 611.1 517.4 616.3 517.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:15:\"upload-to-cloud\";}}i:38;a:7:{s:3:\"uid\";s:32:\"2045ba024bb9c2c3f56dfb759d4e2875\";s:3:\"css\";s:4:\"user\";s:4:\"code\";i:59877;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:6043:\"M853.6 146.4C658.6-48.6 341.4-48.6 146.4 146.4 78 214.8 31.2 300.8 11.1 394.9-8.5 486.7-2.1 581.7 29.7 669.7 33.5 680.3 45.1 685.8 55.7 682 66.3 678.1 71.8 666.5 68 655.9 38.8 575 32.9 487.7 50.9 403.4 69.4 317 112.4 238 175.2 175.2 354.3-3.9 645.7-3.9 824.8 175.2 910.1 260.5 957.9 373.9 959.3 494.4 960.7 614.8 915.8 729.1 833 816.2 832 817.3 831 818.3 830 819.3 828.3 821.2 826.6 823 824.8 824.8 645.7 1003.9 354.3 1003.9 175.2 824.8 174.3 823.9 173.3 822.9 172.4 821.9 172.4 820 172.3 818.2 172.3 816.4 172.3 812.3 172.4 808.2 172.5 804.1 172.6 802.8 172.7 801.4 172.8 800 172.9 797.3 173 794.6 173.2 792 173.3 790.3 173.5 788.8 173.7 787.2 173.9 784.7 174.1 782.3 174.3 779.9 174.5 778.2 174.8 776.5 175 774.8 175.3 772.5 175.5 770.2 175.9 767.9 176.1 766.2 176.4 764.5 176.7 762.8 177.1 760.5 177.4 758.3 177.9 756.1 178.2 754.4 178.5 752.6 178.9 750.9 179.3 748.7 179.8 746.6 180.3 744.4 180.6 742.7 181.1 740.9 181.5 739.2 182 737.1 182.5 734.9 183.1 732.8 183.5 731.1 184 729.4 184.5 727.6 185.1 725.6 185.6 723.5 186.3 721.4 186.8 719.7 187.3 718 187.9 716.3 188.5 714.2 189.2 712.2 189.9 710.2 190.5 708.4 191.1 706.8 191.7 705.1 192.4 703 193.1 701 193.9 699 194.5 697.4 195.2 695.7 195.9 694 196.7 692 197.5 690.1 198.3 688.1 199 686.5 199.7 684.8 200.5 683.2 201.3 681.2 202.2 679.3 203.1 677.4 203.8 675.7 204.6 674.1 205.4 672.5 206.3 670.6 207.3 668.7 208.2 666.8 209.1 665.2 209.9 663.6 210.7 662.1 211.7 660.2 212.8 658.3 213.8 656.5 214.7 654.9 215.5 653.4 216.4 651.8 217.5 650 218.6 648.2 219.7 646.3 220.6 644.8 221.5 643.3 222.5 641.8 223.6 640 224.8 638.2 225.9 636.4 226.9 634.9 227.9 633.4 228.9 632 230.1 630.2 231.3 628.5 232.6 626.7 233.6 625.3 234.6 623.8 235.7 622.4 236.9 620.7 238.2 619 239.5 617.3 240.6 615.9 241.7 614.5 242.8 613.1 244.1 611.4 245.5 609.7 246.8 608.1 248 606.7 249.1 605.4 250.2 604 251.6 602.4 253 600.7 254.5 599.1 255.6 597.8 256.8 596.5 258 595.2 259.5 593.6 261 592 262.5 590.5 263.7 589.2 264.9 587.9 266.1 586.7 267.6 585.1 269.2 583.6 270.8 582 272 580.8 273.2 579.6 274.5 578.4 276.1 576.9 277.8 575.4 279.4 573.9 280.7 572.8 281.9 571.6 283.2 570.5 284.9 569 286.7 567.5 288.4 566 289.7 565 290.9 563.9 292.2 562.8 294 561.3 295.9 559.9 297.7 558.5 299 557.5 300.3 556.5 301.6 555.5 303.5 554 305.5 552.6 307.4 551.2 308.7 550.3 309.9 549.3 311.2 548.5 313.3 546.9 315.6 545.4 317.8 544 318.9 543.2 320 542.5 321.1 541.8 324 539.9 326.9 538.1 329.9 536.3 330.3 536 330.8 535.7 331.3 535.4 334.7 533.3 338.2 531.4 341.7 529.4 342.9 528.8 344.1 528.1 345.3 527.5 347.7 526.2 350 525 352.4 523.8 353.9 523 355.5 522.3 357 521.6 359 520.6 360.9 519.7 362.9 518.8 399.7 554 448.9 573.9 500 573.9 551.1 573.9 600.3 554 637.2 518.8 709.2 552.1 768.1 611.9 800.1 684.6 804.7 694.9 816.7 699.6 827 695 837.3 690.5 841.9 678.5 837.4 668.2 802.4 588.7 741.5 525.1 664.3 486.7 686.7 453.9 698.8 415.1 698.8 375.1 698.8 265.5 609.6 176.3 500 176.3 488.8 176.3 479.7 185.5 479.7 196.7S488.8 217 500 217C587.2 217 658.1 288 658.1 375.1 658.1 414.1 643.6 451.7 617.3 480.8 617.3 480.8 617.3 480.8 617.3 480.8 587.3 514.1 544.5 533.2 500 533.2S412.7 514.1 382.7 480.8C382.7 480.8 382.7 480.8 382.7 480.8 356.4 451.6 341.9 414.1 341.9 375.1 341.9 332.6 358.6 292.7 388.8 262.8 396.8 254.9 396.9 242 389 234 381.1 226 368.2 225.9 360.2 233.8 322.2 271.4 301.2 321.6 301.2 375.1 301.2 415.1 313.3 453.8 335.6 486.6 335.4 486.7 335.2 486.8 335 486.9 333.5 487.7 331.9 488.6 330.3 489.4 327.9 490.6 325.5 491.9 323.1 493.2 321.4 494.1 319.8 495.1 318.1 496 315.9 497.3 313.7 498.5 311.5 499.8 309.8 500.8 308.1 501.9 306.4 502.9 304.3 504.2 302.2 505.5 300.2 506.8 298.5 507.9 296.8 509 295.1 510.1 293.1 511.5 291.1 512.8 289.1 514.2 287.5 515.4 285.8 516.5 284.2 517.7 282.2 519.1 280.3 520.5 278.4 521.9 276.8 523.2 275.2 524.4 273.6 525.7 271.7 527.1 269.8 528.6 268 530.1 266.4 531.3 264.9 532.6 263.3 533.9 261.5 535.4 259.7 537 257.9 538.5 256.4 539.8 254.9 541.2 253.3 542.5 251.6 544.1 249.9 545.7 248.2 547.3 246.7 548.7 245.2 550.1 243.8 551.5 242.1 553.1 240.4 554.8 238.7 556.4 237.3 557.9 235.9 559.3 234.5 560.7 232.9 562.4 231.2 564.2 229.6 565.9 228.3 567.3 226.9 568.8 225.6 570.3 224 572.1 222.4 573.9 220.9 575.7 219.6 577.2 218.3 578.6 217.1 580.1 215.5 582 213.9 584 212.4 585.9 211.2 587.4 210 588.8 208.9 590.2 207.3 592.3 205.7 594.5 204.1 596.6 203.1 598 202.1 599.3 201.1 600.6 199.1 603.4 197.1 606.2 195.2 609.1 194.7 609.8 194.2 610.6 193.7 611.3 191.3 614.9 188.9 618.5 186.7 622.2 185.9 623.4 185.2 624.7 184.4 626 182.9 628.4 181.4 630.9 180 633.3 179.2 634.9 178.3 636.5 177.5 638 176.2 640.3 175 642.5 173.8 644.8 172.9 646.4 172.1 648.1 171.2 649.8 170.1 652 169 654.2 167.9 656.4 167.1 658.2 166.3 659.9 165.5 661.7 164.5 663.9 163.5 666.1 162.5 668.3 161.7 670.1 160.9 671.9 160.2 673.7 159.3 675.9 158.3 678.1 157.5 680.3 156.7 682.2 156 684.1 155.3 685.9 154.5 688.2 153.7 690.4 152.9 692.6 152.2 694.5 151.6 696.4 150.9 698.3 150.1 700.6 149.4 702.8 148.7 705.1 148.1 707 147.5 708.9 146.9 710.9 146.3 713.1 145.6 715.4 145 717.7 144.4 719.7 143.9 721.6 143.4 723.6 142.8 725.9 142.2 728.2 141.7 730.6 141.2 732.5 140.7 734.5 140.3 736.4 139.8 738.8 139.3 741.2 138.8 743.6 138.4 745.5 138 747.5 137.7 749.4 137.2 751.9 136.8 754.3 136.4 756.8 136.1 758.7 135.8 760.6 135.5 762.6 135.2 765.1 134.8 767.7 134.5 770.2 134.3 772.1 134 774 133.8 775.9 133.5 778.5 133.3 781.2 133.1 783.9 132.9 785.7 132.7 787.5 132.6 789.3 132.4 792.3 132.2 795.3 132.1 798.3 132 799.8 131.9 801.3 131.9 802.8 131.7 807.3 131.6 811.8 131.6 816.4 131.6 821.3 131.8 825.9 132 831.1 132 832.2 132.2 833.4 132.4 834.5 132.4 834.6 132.5 834.7 132.5 834.8 132.7 835.9 133.1 837 133.5 838 133.5 838.1 133.6 838.2 133.6 838.3 134.1 839.3 134.6 840.3 135.2 841.2 135.2 841.3 135.3 841.4 135.4 841.6 136 842.5 136.7 843.3 137.4 844.1 137.5 844.2 137.5 844.2 137.6 844.3L140.2 847.2C142.3 849.3 144.3 851.5 146.4 853.6 243.9 951.1 372 999.8 500 999.8S756.1 951.1 853.6 853.6C855.7 851.5 857.7 849.3 859.8 847.2L862.5 844.3C952.6 749.4 1001.5 625 1000 494 998.4 362.7 946.5 239.3 853.6 146.4Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:4:\"user\";}}i:39;a:7:{s:3:\"uid\";s:32:\"1cdf3cd4bd4929ec67911b9f06bb1635\";s:3:\"css\";s:11:\"tripadvisor\";s:4:\"code\";i:59431;s:3:\"src\";s:12:\"custom_icons\";s:8:\"selected\";b:1;s:3:\"svg\";a:2:{s:4:\"path\";s:2636:\"M612.8 213C640.7 217 668 224 695 232.3 742.2 246.8 786.7 267 828.5 293.1 831.4 294.9 835.3 296.1 838.7 296.1 887.9 296.3 937 296.2 986.1 296.2 990.1 296.2 994 296.7 998 296.9 998 297.9 998.1 298.3 997.9 298.5 995.6 302 993.3 305.5 991 309 974.4 334.6 960.1 361.3 951.7 390.9 950.8 394.1 950.6 396.7 952.7 399.8 996.5 462.7 1010.4 531.6 992.2 606 976.1 671.2 938.8 722 882 758 841.4 783.7 796.5 796 748.6 796.3 728.5 796.4 708.5 793.7 688.8 788.6 640.9 776.2 599.8 752.3 566 716.1 561.5 711.4 557.3 706.4 552.6 701 534.7 727.7 517.1 753.9 499 780.9 481 754 463.7 728 446.4 702.2 445.2 702.8 444.8 702.9 444.6 703.1 444.2 703.4 443.8 703.8 443.5 704.2 402.6 752.5 351.1 782.2 288.4 792.1 253.5 797.6 218.9 795.6 185 786.3 137 773.1 96.1 747.7 63.1 710.3 30.9 673.8 10.9 631.3 3.3 583.1-5.3 538 5.2 494.6 7.8 484 15.4 453.4 28.7 425.3 46.8 399.4 48.1 397.6 48.5 394.3 47.9 392.1 40.5 365 27.8 340.2 12.8 316.6 9 310.6 4.5 305 0.3 299.2 0.3 298.6 0.3 297.9 0.3 297.2 1.1 297.3 1.9 297.5 2.8 297.5 53.1 297.5 103.3 297.5 153.6 297.4 155.8 297.4 158.2 296.5 160.1 295.3 195.4 272.7 233.1 254.7 272.6 240.7 301.1 230.7 330.2 222.8 359.9 217.1 388.7 211.5 417.6 207.6 446.8 205.6 518 200.2 574.9 207.7 612.8 213ZM549.8 545.1C549.8 655.5 639.3 745.7 749.4 745.3 859.8 744.9 949 657.2 948.9 545.6 948.8 430.5 855.5 344.1 745.1 346.3 636.1 348.6 550.8 436.4 549.8 545.1ZM250.4 345.5C143 344.6 49.3 434.2 51.2 548.4 52.9 654.9 140.7 745.2 252.6 744.2 362 743.3 449.9 653.9 450.1 545.7 450.3 434.6 361.3 345.5 250.4 345.5ZM260.3 293.5C320.9 297.2 374.2 318.3 419.3 359.3 464.2 400.1 490.5 451.1 500.1 511 509.9 451.8 535.6 401.3 579.7 360.8 623.8 320.3 676.4 299.1 736.1 294.6 665.3 263.1 590.6 249.7 513.7 248.3 426.4 246.5 341.4 259.4 260.3 293.5ZM749 419.1C817.3 419 872.6 474.1 872.6 542.3 872.6 610.8 818.2 663.8 754.1 666.3 682.4 669 625 611.9 625 542.6 625.1 472.6 682.9 418 749 419.1ZM829.6 542.6C829.5 498.1 793.5 461.9 749.3 461.9 704.5 461.9 668.1 497.9 667.9 542.3 667.8 586.5 704.4 623.3 748.7 623.4 793.1 623.6 829.6 587.1 829.6 542.6ZM247.7 419.1C316 419 371.4 474.2 371.3 542.4 371.1 611.5 316.6 663.3 253.6 666.2 181.6 669.5 123.5 612.1 123.7 542.5 123.8 471.9 182 417.9 247.7 419.1ZM328.2 542.3C328.1 497.5 291.9 461.8 246.6 461.9 203 462 166.4 498.8 166.5 542.6 166.6 586.9 203.2 623.3 247.6 623.5 291.8 623.6 328.3 586.8 328.2 542.3ZM749 501.6C771.7 501.6 790.2 520.2 790 542.7 789.8 565.3 771.5 583.5 749.3 583.5 726.3 583.5 707.9 565.4 708 543 708 519.7 725.9 501.6 749 501.6ZM247.5 501.3C270.5 501.2 289 519.6 289.1 542.5 289.2 565.2 270.5 583.9 247.6 584 224.2 584 206.1 565.9 206.2 542.4 206.2 519.2 224.2 501.3 247.5 501.3Z\";s:5:\"width\";i:1000;}s:6:\"search\";a:1:{i:0;s:11:\"tripadvisor\";}}}}\";','yes'),(186,'cmsmasters_style_dir_writable_start-it','false','yes'),(187,'cmsmasters_style_exists_start-it','false','yes'),(188,'cmsmasters_plugin_activation','false','yes'),(189,'cmsmasters_active_theme','start-it','yes'),(193,'_site_transient_timeout_popular_importers_d7763e7ff295fb24db1c332c51c6fac1','1570961197','no'),(194,'_site_transient_popular_importers_d7763e7ff295fb24db1c332c51c6fac1','a:2:{s:9:\"importers\";a:8:{s:7:\"blogger\";a:4:{s:4:\"name\";s:7:\"Blogger\";s:11:\"description\";s:54:\"Import posts, comments, and users from a Blogger blog.\";s:11:\"plugin-slug\";s:16:\"blogger-importer\";s:11:\"importer-id\";s:7:\"blogger\";}s:9:\"wpcat2tag\";a:4:{s:4:\"name\";s:29:\"Categories and Tags Converter\";s:11:\"description\";s:71:\"Convert existing categories to tags or tags to categories, selectively.\";s:11:\"plugin-slug\";s:18:\"wpcat2tag-importer\";s:11:\"importer-id\";s:10:\"wp-cat2tag\";}s:11:\"livejournal\";a:4:{s:4:\"name\";s:11:\"LiveJournal\";s:11:\"description\";s:46:\"Import posts from LiveJournal using their API.\";s:11:\"plugin-slug\";s:20:\"livejournal-importer\";s:11:\"importer-id\";s:11:\"livejournal\";}s:11:\"movabletype\";a:4:{s:4:\"name\";s:24:\"Movable Type and TypePad\";s:11:\"description\";s:62:\"Import posts and comments from a Movable Type or TypePad blog.\";s:11:\"plugin-slug\";s:20:\"movabletype-importer\";s:11:\"importer-id\";s:2:\"mt\";}s:4:\"opml\";a:4:{s:4:\"name\";s:8:\"Blogroll\";s:11:\"description\";s:28:\"Import links in OPML format.\";s:11:\"plugin-slug\";s:13:\"opml-importer\";s:11:\"importer-id\";s:4:\"opml\";}s:3:\"rss\";a:4:{s:4:\"name\";s:3:\"RSS\";s:11:\"description\";s:30:\"Import posts from an RSS feed.\";s:11:\"plugin-slug\";s:12:\"rss-importer\";s:11:\"importer-id\";s:3:\"rss\";}s:6:\"tumblr\";a:4:{s:4:\"name\";s:6:\"Tumblr\";s:11:\"description\";s:53:\"Import posts & media from Tumblr using their API.\";s:11:\"plugin-slug\";s:15:\"tumblr-importer\";s:11:\"importer-id\";s:6:\"tumblr\";}s:9:\"wordpress\";a:4:{s:4:\"name\";s:9:\"WordPress\";s:11:\"description\";s:96:\"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.\";s:11:\"plugin-slug\";s:18:\"wordpress-importer\";s:11:\"importer-id\";s:9:\"wordpress\";}}s:10:\"translated\";b:0;}','no'),(197,'theme_mods_twentyfifteen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1570789673;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'),(199,'_transient_twentyfifteen_categories','1','yes'),(200,'_site_transient_timeout_browser_aa85875f04b862b5846ba56fa9828c59','1571394417','no'),(201,'_site_transient_browser_aa85875f04b862b5846ba56fa9828c59','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"77.0.3865.90\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(202,'_site_transient_timeout_theme_roots','1570791466','no'),(203,'_site_transient_theme_roots','a:4:{s:7:\"startit\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(204,'theme_switch_menu_locations','a:0:{}','yes'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT '0', `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (1,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://demo.it-s.com/demo/?p=1',0,'post','',1),(2,1,'2018-02-06 17:51:13','2018-02-06 17:51:13','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://demo.it-s.com/demo/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2018-02-06 17:51:13','2018-02-06 17:51:13','',0,'http://demo.it-s.com/demo/?page_id=2',0,'page','',0),(3,1,'2019-10-11 07:43:38','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-10-11 07:43:38','0000-00-00 00:00:00','',0,'http://demo.it-s.com/demo/?p=3',0,'post','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', `term_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (1,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','31407532'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy'),(15,1,'default_password_nag','1'),(16,1,'show_welcome_panel','1'),(17,1,'session_tokens','a:2:{s:64:\"e5515808eb7e33bd6cd670c439275c6df4d9ac5adf4e181fb532662c06cb98ac\";a:4:{s:10:\"expiration\";i:1570952607;s:2:\"ip\";s:11:\"39.40.97.13\";s:2:\"ua\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:5:\"login\";i:1570779807;}s:64:\"423ad26747b81b860cef59d88f500e9a5c61677d01e8082b088ad3d04a324f97\";a:4:{s:10:\"expiration\";i:1570962414;s:2:\"ip\";s:11:\"39.40.97.13\";s:2:\"ua\";s:101:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36\";s:5:\"login\";i:1570789614;}}'),(18,1,'wp_dashboard_quick_press_last_post_id','3'),(19,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"39.40.97.0\";}'),(20,1,'wp_user-settings','edit_element_vcUIPanelWidth=622&edit_element_vcUIPanelLeft=512px&edit_element_vcUIPanelTop=75px&editor=html&libraryContent=browse'),(21,1,'wp_user-settings-time','1570789612'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'31407532','$P$ByBmrdKYXDyPQNycY087x0u8No4ymc0','31407532','tariq@it-s.com','','2018-02-06 17:51:13','',0,'31407532'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_00e13bb_5' -- /*!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 2019-10-11 7:37:21