-- MySQL dump 10.13  Distrib 5.6.27-75.0, for Linux (x86_64)
--
-- Host: localhost    Database: annieluc_avs
-- ------------------------------------------------------
-- Server version	5.6.40-84.0-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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_failed_jobs`
--

DROP TABLE IF EXISTS `wp_failed_jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_failed_jobs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `failed_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_failed_jobs`
--

LOCK TABLES `wp_failed_jobs` WRITE;
/*!40000 ALTER TABLE `wp_failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_mailchimp_carts`
--

DROP TABLE IF EXISTS `wp_mailchimp_carts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailchimp_carts` (
  `id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `cart` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mailchimp_carts`
--

LOCK TABLES `wp_mailchimp_carts` WRITE;
/*!40000 ALTER TABLE `wp_mailchimp_carts` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_mailchimp_carts` 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) DEFAULT NULL,
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=66718 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://www.oneseventwelve.com/','yes'),(2,'blogname','Annieversal Studios','yes'),(3,'blogdescription','Darling designs and wood crafts powered by love and the Golden Rule.','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','annieluciapaul@gmail.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','','yes'),(8,'use_smilies','','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','1','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','closed','yes'),(19,'default_ping_status','closed','yes'),(20,'default_pingback_flag','','yes'),(21,'posts_per_page','3','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i A','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(28,'comment_moderation','','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','/%year%/%monthnum%/%postname%/','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:16:{i:0;s:19:\"akismet/akismet.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:59:\"genesis-connect-woocommerce/genesis-connect-woocommerce.php\";i:3;s:33:\"genesis-enews-extended/plugin.php\";i:4;s:31:\"genesis-simple-edits/plugin.php\";i:5;s:43:\"instagram-slider-widget/instaram_slider.php\";i:6;s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";i:8;s:27:\"quick-setup/quick-setup.php\";i:9;s:43:\"simple-social-icons/simple-social-icons.php\";i:10;s:45:\"welcome-to-wordpress/welcome-to-wordpress.php\";i:11;s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";i:12;s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";i:13;s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:14;s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";i:15;s:27:\"woocommerce/woocommerce.php\";i:16;s:35:\"wordpress-https/wordpress-https.php\";}','yes'),(36,'home','http://www.oneseventwelve.com/','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'comment_max_links','2','yes'),(41,'gmt_offset','','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','a:5:{i:0;s:86:\"/home/annieluc/public_html/annieversalstudios.com/wp-content/themes/boss-pro/style.css\";i:2;s:73:\"/home/content/63/11905463/html/AS/wp-content/themes/minimum-pro/style.css\";i:3;s:96:\"/home/content/63/11905463/html/AS/wp-content/plugins/simple-social-icons/simple-social-icons.php\";i:4;s:72:\"/home/content/63/11905463/html/AS/wp-content/plugins/akismet/akismet.php\";i:5;s:86:\"/home/content/63/11905463/html/AS/wp-content/plugins/simple-social-icons/css/style.css\";}','no'),(44,'template','genesis','yes'),(45,'stylesheet','boss-pro','yes'),(46,'comment_whitelist','1','yes'),(47,'blacklist_keys','','no'),(48,'comment_registration','','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','44719','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','wp-content/uploads','yes'),(55,'blog_public','1','yes'),(56,'default_link_category','0','yes'),(57,'show_on_front','posts','yes'),(58,'tag_base','','yes'),(59,'show_avatars','1','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','500','yes'),(66,'medium_size_h','500','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','asc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'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'),(83,'widget_text','a:11:{i:3;a:4:{s:5:\"title\";s:22:\"–Delilah from Denver\";s:4:\"text\";s:174:\"Your ornament made my day! My husband loved seeing his favorite childhood memory come \"alive\"; I\'ll never forget his reaction! It\'ll hang proudly on our tree for generations.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:10:\"Learn More\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:327:\"<span class=\"huge\">1</span>\r\n\r\n<img src=\"https://annieversalstudios.com/wp-content/uploads/2019/01/AnnieversalStudios-Homepage-SunflowerPyro.jpg\" />\r\n<h5>Pyrography</h5>\r\nI hand-draw most of my designs and hand-burn them with meticulous attention.\r\n\r\n<a class=\"button\" href=\"https://annieversalstudios.com/faqs/\">Learn More</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:310:\"<span class=\"huge\">2</span>\r\n\r\n<img src=\"https://annieversalstudios.com/wp-content/uploads/2019/01/AnnieversalStudios-Homepage-Painting2.jpg\" />\r\n<h5>Dollhouses</h5>\r\nI also make tiny paintings for you to beautify your dollhouses.\r\n\r\n<a class=\"button\" href=\"https://annieversalstudios.com/faqs/\">Learn More</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:7;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:309:\"<span class=\"huge\">3</span>\r\n\r\n<img src=\"https://annieversalstudios.com/wp-content/uploads/2019/01/AnnieversalStudios-Homepage-Ornaments.jpg\" />\r\n<h5>Ornaments</h5>\r\nIf you\'re looking for something to make your tree pop, look no further.\r\n\r\n<a class=\"button\" href=\"annieversalstudios.com/faqs/\">Learn More</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:8;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:10;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:9:\"Something\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:11;a:4:{s:5:\"title\";s:24:\"Meet ANNIEVERSAL STUDIOS\";s:4:\"text\";s:700:\"Hello! I\'m a Utah-based wife and pup mom dedicated to making<span class=\"text white-space-pre-wrap\" data-edit-text=\"\"> lovely products meant to adorn lives and spaces. Catholic designs coming soon.</span>\r\n\r\n<span class=\"text white-space-pre-wrap\" data-edit-text=\"\"> <strong>WELCOME! </strong><a href=\"http://annieversalstudios.com/about/\" target=\"_blank\" rel=\"noopener\">Find out more about my story</a> and </span><span class=\"text white-space-pre-wrap\" data-edit-text=\"\"><a href=\"https://instagram.com/annieversalstudios\" target=\"_blank\" rel=\"noopener\">let\'s connect on Instagram!</a> </span>\r\n\r\n<span class=\"text white-space-pre-wrap\" data-edit-text=\"\"><em>Powered by the Golden Rule.</em></span>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:13;a:4:{s:5:\"title\";s:76:\"Sign up below to join Annieverse for exclusive freebies, discounts, and MORE\";s:4:\"text\";s:2496:\"<!-- Begin Mailchimp Signup Form -->\r\n<link href=\"//cdn-images.mailchimp.com/embedcode/classic-10_7.css\" rel=\"stylesheet\" type=\"text/css\">\r\n<style type=\"text/css\">\r\n#mc_embed_signup{background:#fff; clear:left; font:14px Raleway,Helvetica,sans-serif;  width:300px;}\r\n/* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.\r\n  We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */\r\n</style>\r\n<div id=\"mc_embed_signup\">\r\n<form action=\"https://annieversalstudios.us7.list-manage.com/subscribe/post?u=949cfc647f2977272972842d6&amp;id=f703d7a685\" method=\"post\" id=\"mc-embedded-subscribe-form\" name=\"mc-embedded-subscribe-form\" class=\"validate\" target=\"_blank\" novalidate>\r\n    <div id=\"mc_embed_signup_scroll\">\r\n<div class=\"indicates-required\"><span class=\"asterisk\">*</span> indicates required</div>\r\n<div class=\"mc-field-group\">\r\n<label for=\"mce-EMAIL\">Email Address  <span class=\"asterisk\">*</span>\r\n</label>\r\n<input type=\"email\" value=\"\" name=\"EMAIL\" class=\"required email\" id=\"mce-EMAIL\">\r\n</div>\r\n<div class=\"mc-field-group\">\r\n<label for=\"mce-FNAME\">First Name  <span class=\"asterisk\">*</span>\r\n</label>\r\n<input type=\"text\" value=\"\" name=\"FNAME\" class=\"required\" id=\"mce-FNAME\">\r\n</div>\r\n<div class=\"mc-field-group size1of2\">\r\n<label for=\"mce-MMERGE2-month\">Birthday </label>\r\n<div class=\"datefield\">\r\n<span class=\"subfield monthfield\"><input class=\"birthday \" type=\"text\" pattern=\"[0-9]*\" value=\"\" placeholder=\"MM\" size=\"2\" maxlength=\"2\" name=\"MMERGE2[month]\" id=\"mce-MMERGE2-month\"></span> / \r\n<span class=\"subfield dayfield\"><input class=\"birthday \" type=\"text\" pattern=\"[0-9]*\" value=\"\" placeholder=\"DD\" size=\"2\" maxlength=\"2\" name=\"MMERGE2[day]\" id=\"mce-MMERGE2-day\"></span> \r\n<span class=\"small-meta nowrap\">( mm / dd )</span>\r\n</div>\r\n</div>	<div id=\"mce-responses\" class=\"clear\">\r\n<div class=\"response\" id=\"mce-error-response\" style=\"display:none\"></div>\r\n<div class=\"response\" id=\"mce-success-response\" style=\"display:none\"></div>\r\n</div>    <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->\r\n    <div style=\"position: absolute; left: -5000px;\" aria-hidden=\"true\"><input type=\"text\" name=\"b_949cfc647f2977272972842d6_f703d7a685\" tabindex=\"-1\" value=\"\"></div>\r\n    <div class=\"clear\"><input type=\"submit\" value=\"Subscribe\" name=\"subscribe\" id=\"mc-embedded-subscribe\" class=\"button\"></div>\r\n    </div>\r\n</form>\r\n</div>\r\n\r\n<!--End mc_embed_signup-->\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:14;a:4:{s:5:\"title\";s:10:\"Newsletter\";s:4:\"text\";s:2599:\"<!-- Begin Mailchimp Signup Form -->\r\n<link href=\"//cdn-images.mailchimp.com/embedcode/classic-10_7.css\" rel=\"stylesheet\" type=\"text/css\">\r\n<style type=\"text/css\">\r\n#mc_embed_signup{background:#fff; clear:left; font:14px Raleway,Helvetica,sans-serif;  width:100%;}\r\n/* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.\r\n  We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */\r\n</style>\r\n<div id=\"mc_embed_signup\">\r\n<center><form action=\"https://annieversalstudios.us7.list-manage.com/subscribe/post?u=949cfc647f2977272972842d6&amp;id=f703d7a685\" method=\"post\" id=\"mc-embedded-subscribe-form\" name=\"mc-embedded-subscribe-form\" class=\"validate\" target=\"_blank\" novalidate>\r\n    <div id=\"mc_embed_signup_scroll\">\r\n<h3>Sign up below to join Annieverse for exclusive freebies, discounts, and MORE</h3>\r\n<div class=\"indicates-required\"><span class=\"asterisk\">*</span> indicates required</div>\r\n<div class=\"mc-field-group\">\r\n<label for=\"mce-EMAIL\">Email Address  <span class=\"asterisk\">*</span>\r\n</label>\r\n<input type=\"email\" value=\"\" name=\"EMAIL\" class=\"required email\" id=\"mce-EMAIL\">\r\n</div>\r\n<div class=\"mc-field-group\">\r\n<label for=\"mce-FNAME\">First Name  <span class=\"asterisk\">*</span>\r\n</label>\r\n<input type=\"text\" value=\"\" name=\"FNAME\" class=\"required\" id=\"mce-FNAME\">\r\n</div>\r\n<div class=\"mc-field-group size1of2\">\r\n<label for=\"mce-MMERGE2-month\">Birthday </label>\r\n<div class=\"datefield\">\r\n<span class=\"subfield monthfield\"><input class=\"birthday \" type=\"text\" pattern=\"[0-9]*\" value=\"\" placeholder=\"MM\" size=\"2\" maxlength=\"2\" name=\"MMERGE2[month]\" id=\"mce-MMERGE2-month\"></span> / \r\n<span class=\"subfield dayfield\"><input class=\"birthday \" type=\"text\" pattern=\"[0-9]*\" value=\"\" placeholder=\"DD\" size=\"2\" maxlength=\"2\" name=\"MMERGE2[day]\" id=\"mce-MMERGE2-day\"></span> \r\n<span class=\"small-meta nowrap\">( mm / dd )</span>\r\n</div>\r\n</div>	<div id=\"mce-responses\" class=\"clear\">\r\n<div class=\"response\" id=\"mce-error-response\" style=\"display:none\"></div>\r\n<div class=\"response\" id=\"mce-success-response\" style=\"display:none\"></div>\r\n</div>    <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->\r\n    <div style=\"position: absolute; left: -5000px;\" aria-hidden=\"true\"><input type=\"text\" name=\"b_949cfc647f2977272972842d6_f703d7a685\" tabindex=\"-1\" value=\"\"></div>\r\n    <div class=\"clear\"><input type=\"submit\" value=\"Subscribe\" name=\"subscribe\" id=\"mc-embedded-subscribe\" class=\"button\"></div>\r\n    </div>\r\n</form></center>\r\n</div>\r\n\r\n<!--End mc_embed_signup-->\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(84,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(85,'uninstall_plugins','a:3:{s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:43:\"simple-social-icons/simple-social-icons.php\";a:2:{i:0;s:26:\"Simple_Social_Icons_Widget\";i:1;s:16:\"plugin_uninstall\";}s:45:\"woocommerce-services/woocommerce-services.php\";a:2:{i:0;s:17:\"WC_Connect_Loader\";i:1;s:16:\"plugin_uninstall\";}}','no'),(86,'timezone_string','America/Denver','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','0','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','26691','yes'),(92,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:114:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(93,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'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'),(95,'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'),(96,'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'),(97,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:16:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:7:\"text-10\";i:1;s:10:\"archives-2\";i:2;s:6:\"meta-2\";i:3;s:8:\"search-2\";i:4;s:12:\"categories-2\";i:5;s:14:\"recent-posts-2\";i:6;s:17:\"recent-comments-2\";}s:7:\"sidebar\";a:5:{i:0;s:13:\"media_image-2\";i:1;s:7:\"text-11\";i:2;s:8:\"search-3\";i:3;s:7:\"text-13\";i:4;s:17:\"jr_insta_slider-2\";}s:12:\"front-page-1\";a:1:{i:0;s:13:\"custom_html-3\";}s:12:\"front-page-2\";a:1:{i:0;s:6:\"text-3\";}s:12:\"front-page-3\";a:4:{i:0;s:6:\"text-4\";i:1;s:6:\"text-5\";i:2;s:6:\"text-6\";i:3;s:6:\"text-7\";}s:12:\"front-page-4\";a:1:{i:0;s:13:\"custom_html-4\";}s:12:\"front-page-5\";a:1:{i:0;s:7:\"text-14\";}s:12:\"front-page-6\";a:0:{}s:12:\"front-page-7\";a:1:{i:0;s:13:\"custom_html-6\";}s:11:\"before-blog\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:19:\"jr-insta-shortcodes\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(155,'theme_mods_blissful','a:6:{i:0;b:0;s:12:\"header_image\";s:73:\"http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-Header.png\";s:17:\"header_image_data\";a:5:{s:13:\"attachment_id\";i:9;s:3:\"url\";s:73:\"http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-Header.png\";s:13:\"thumbnail_url\";s:73:\"http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-Header.png\";s:5:\"width\";i:1080;s:6:\"height\";i:150;}s:16:\"header_textcolor\";s:5:\"blank\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387476417;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:12:\"header-right\";a:0:{}s:7:\"sidebar\";a:0:{}s:11:\"sidebar-alt\";a:0:{}s:8:\"home-top\";a:1:{i:0;s:21:\"simple-social-icons-2\";}s:18:\"sidebar-split-left\";a:0:{}s:19:\"sidebar-split-right\";a:0:{}s:20:\"sidebar-split-bottom\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}}}}','yes'),(113,'wtwp_show_help','Y','yes'),(101,'wtwp_options','a:7:{s:11:\"first_login\";i:1387135596;s:4:\"plid\";i:1;s:3:\"isc\";s:10:\"WPHosting1\";s:7:\"api_url\";s:33:\"https://wpqs.secureserver.net/v1/\";s:8:\"help_url\";s:29:\"https://help.securepaynet.net\";s:17:\"control_panel_url\";s:50:\"https://hostingmanager.secureserver.net/Login.aspx\";s:3:\"key\";s:64:\"KLBY6hTnDXNCIuArl3e9f3I7UJaiID7u5bVcyOwPEDCp1OtwLhMBcsa0gukvu+uV\";}','yes'),(102,'gd_quicksetup_last_post','a:0:{}','yes'),(103,'gd_quicksetup_options','a:2:{s:3:\"key\";s:64:\"KLBY6hTnDXNCIuArl3e9f3I7UJaiID7u5bVcyOwPEDCp1OtwLhMBcsa0gukvu+uV\";s:7:\"api_url\";s:33:\"https://wpqs.secureserver.net/v1/\";}','yes'),(104,'cron','a:18:{i:1553559247;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1553559396;a:1:{s:16:\"http_worker_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:25:\"http_worker_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:180;}}}i:1553560084;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:1553580000;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553582960;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1553585183;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:1553599588;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1553603379;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553614084;a:1:{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;}}}i:1553614405;a:1:{s:26:\"pum_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553621188;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553621198;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553628266;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553628396;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553631988;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1553700805;a:1:{s:27:\"pum_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1554163200;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(60515,'fresh_site','0','yes'),(34572,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34573,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34574,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'wtwp_use_hardening_rules','','yes'),(115,'wtwp_version','1.0','yes'),(116,'wtwp_use_object_cache','','yes'),(117,'wtwp_use_caching_rules','','yes'),(121,'gd_quicksetup_version','1.04','yes'),(64897,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1553145972','no'),(60789,'jr_insta_439bae66c62b23a546c009361902ec9c','a:7:{i:0;b:0;s:6:\"search\";s:4:\"user\";s:13:\"search_string\";s:18:\"annieversalstudios\";s:13:\"blocked_users\";b:0;s:11:\"cache_hours\";i:5;s:9:\"nr_images\";i:5;s:10:\"attachment\";b:0;}','yes'),(60406,'jetpack_constants_sync_checksum','a:17:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:687052696;s:14:\"WP_CONTENT_DIR\";i:1394529720;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:1206389815;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:1761172046;}','yes'),(60409,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(60410,'jetpack_sync_https_history_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(60411,'jetpack_sync_https_history_home_url','a:1:{i:0;s:4:\"http\";}','yes'),(3147,'stats_cache','a:2:{s:32:\"e68d2983730e79814aa9e36944ff1fa0\";a:1:{i:1469815593;a:2:{i:0;a:4:{s:7:\"post_id\";s:1:\"2\";s:10:\"post_title\";s:8:\"Welcome!\";s:14:\"post_permalink\";s:30:\"http://annieversalstudios.com/\";s:5:\"views\";s:1:\"1\";}i:1;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:30:\"http://annieversalstudios.com/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"faa5bf119c277ea8ecca56663e0d5c1f\";a:1:{i:1469815593;a:0:{}}}','yes'),(12668,'WPLANG','','yes'),(12661,'akismet_strictness','0','yes'),(12662,'akismet_show_user_comments_approved','0','yes'),(12663,'wordpress_api_key','4df12f8b9c2c','yes'),(189,'_transient_random_seed','e7f3a14258bedb9dce10edaa0a550e9f','yes'),(192,'jetpack_holiday_snow_enabled','','yes'),(147,'current_theme','Boss Pro','yes'),(148,'theme_mods_genesis','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387323024;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:21:\"simple-social-icons-2\";}s:12:\"header-right\";a:0:{}s:7:\"sidebar\";a:0:{}s:11:\"sidebar-alt\";a:0:{}s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;}}}','yes'),(149,'theme_switched','','yes'),(150,'genesis-settings','a:41:{s:13:\"theme_version\";s:5:\"2.9.0\";s:10:\"db_version\";i:2900;s:13:\"first_version\";s:5:\"2.0.2\";s:6:\"update\";i:1;s:20:\"update_email_address\";s:0:\"\";s:8:\"feed_uri\";s:0:\"\";s:17:\"comments_feed_uri\";s:0:\"\";s:10:\"adsense_id\";s:0:\"\";s:11:\"site_layout\";s:15:\"content-sidebar\";s:14:\"comments_posts\";i:1;s:16:\"trackbacks_posts\";i:1;s:15:\"content_archive\";s:4:\"full\";s:21:\"content_archive_limit\";i:300;s:25:\"content_archive_thumbnail\";i:1;s:10:\"image_size\";s:12:\"boss_archive\";s:15:\"image_alignment\";s:0:\"\";s:9:\"posts_nav\";s:7:\"numeric\";s:8:\"blog_cat\";i:0;s:16:\"blog_cat_exclude\";s:0:\"\";s:12:\"blog_cat_num\";i:3;s:14:\"header_scripts\";s:325:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-136580985-1\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-136580985-1\');\r\n</script>\r\n\";s:14:\"footer_scripts\";s:0:\"\";s:21:\"breadcrumb_front_page\";i:0;s:15:\"breadcrumb_home\";i:0;s:17:\"breadcrumb_single\";i:0;s:15:\"breadcrumb_page\";i:0;s:21:\"breadcrumb_posts_page\";i:0;s:18:\"breadcrumb_archive\";i:0;s:14:\"breadcrumb_404\";i:0;s:21:\"breadcrumb_attachment\";i:0;s:14:\"comments_pages\";i:0;s:9:\"superfish\";i:0;s:13:\"redirect_feed\";i:0;s:22:\"redirect_comments_feed\";i:0;s:16:\"trackbacks_pages\";i:0;s:12:\"update_email\";i:0;s:10:\"blog_title\";s:0:\"\";s:10:\"nav_extras\";s:0:\"\";s:21:\"nav_extras_twitter_id\";s:0:\"\";s:15:\"style_selection\";s:0:\"\";s:23:\"nav_extras_twitter_text\";s:0:\"\";}','yes'),(151,'genesis-seo-settings','a:28:{s:23:\"append_description_home\";i:1;s:12:\"doctitle_sep\";s:3:\"–\";s:20:\"doctitle_seplocation\";s:5:\"right\";s:10:\"home_h1_on\";s:5:\"title\";s:13:\"home_doctitle\";s:0:\"\";s:16:\"home_description\";s:0:\"\";s:13:\"home_keywords\";s:0:\"\";s:19:\"noindex_cat_archive\";i:1;s:19:\"noindex_tag_archive\";i:1;s:22:\"noindex_author_archive\";i:1;s:20:\"noindex_date_archive\";i:1;s:22:\"noindex_search_archive\";i:1;s:5:\"noodp\";i:1;s:6:\"noydir\";i:1;s:17:\"append_site_title\";i:0;s:12:\"home_noindex\";i:0;s:13:\"home_nofollow\";i:0;s:14:\"home_noarchive\";i:0;s:28:\"head_adjacent_posts_rel_link\";i:0;s:21:\"head_wlwmanifest_link\";i:0;s:14:\"head_shortlink\";i:0;s:9:\"noarchive\";i:0;s:21:\"noarchive_cat_archive\";i:0;s:21:\"noarchive_tag_archive\";i:0;s:24:\"noarchive_author_archive\";i:0;s:22:\"noarchive_date_archive\";i:0;s:24:\"noarchive_search_archive\";i:0;s:11:\"home_author\";i:0;}','yes'),(220,'theme_mods_forever','a:9:{i:0;b:0;s:16:\"header_textcolor\";s:6:\"1982d1\";s:16:\"background_color\";s:3:\"fff\";s:16:\"background_image\";s:74:\"http://annieversalstudios.com/wp-content/themes/forever/images/body-bg.png\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387323022;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:1:{i:0;s:21:\"simple-social-icons-2\";}s:9:\"sidebar-5\";a:0:{}}}}','yes'),(230,'genesis-term-meta','a:2:{i:0;b:0;i:2;a:0:{}}','yes'),(278,'forever_theme_options','a:2:{s:10:\"link_color\";s:7:\"#e7309f\";s:16:\"posts_in_columns\";s:3:\"off\";}','yes'),(389,'theme_mods_minimum-pro','a:12:{i:0;b:0;s:16:\"background_color\";s:6:\"ffffff\";s:16:\"background_image\";s:71:\"http://annieversalstudios.com/wp-content/uploads/2013/12/Workplace3.jpg\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_position_x\";s:6:\"center\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:0;s:9:\"secondary\";i:0;}s:12:\"header_image\";s:80:\"http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-HeaderSmaller.png\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:42;s:3:\"url\";s:80:\"http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-HeaderSmaller.png\";s:13:\"thumbnail_url\";s:80:\"http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-HeaderSmaller.png\";s:6:\"height\";i:60;s:5:\"width\";i:320;}s:22:\"background_image_thumb\";s:79:\"http://annieversalstudios.com/wp-content/uploads/2013/12/Workplace3-150x150.jpg\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1546462159;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:12:\"header-right\";a:1:{i:0;s:10:\"nav_menu-3\";}s:7:\"sidebar\";a:1:{i:0;s:21:\"simple-social-icons-2\";}s:18:\"site-tagline-right\";a:0:{}s:15:\"home-featured-1\";a:0:{}s:15:\"home-featured-2\";a:0:{}s:15:\"home-featured-3\";a:0:{}s:15:\"home-featured-4\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}}}}','yes'),(161,'category_children','a:0:{}','yes'),(60441,'jetpack_callables_sync_checksum','a:27:{s:18:\"wp_max_upload_size\";i:3564436882;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:3123862365;s:8:\"site_url\";i:3123862365;s:8:\"home_url\";i:2295699838;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:3341906422;s:10:\"post_types\";i:2962136353;s:18:\"post_type_features\";i:3506745885;s:10:\"shortcodes\";i:1112680462;s:27:\"rest_api_allowed_post_types\";i:503776097;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:3587531037;s:11:\"get_plugins\";i:2328523754;s:14:\"active_modules\";i:1416494735;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;}','yes'),(60442,'jpsq_sync_checkout','0:0','no'),(60595,'widget_jr_insta_slider','a:2:{i:2;a:23:{s:5:\"title\";s:19:\"Latest on Instagram\";s:10:\"search_for\";s:8:\"username\";s:8:\"username\";s:18:\"annieversalstudios\";s:7:\"hashtag\";s:0:\"\";s:13:\"blocked_users\";s:0:\"\";s:10:\"attachment\";N;s:8:\"template\";s:6:\"slider\";s:11:\"images_link\";s:9:\"image_url\";s:10:\"custom_url\";s:0:\"\";s:7:\"orderby\";s:8:\"date-ASC\";s:13:\"images_number\";s:1:\"5\";s:7:\"columns\";s:1:\"4\";s:12:\"refresh_hour\";s:1:\"5\";s:10:\"image_size\";s:3:\"low\";s:14:\"image_link_rel\";s:0:\"\";s:16:\"image_link_class\";s:0:\"\";s:6:\"no_pin\";N;s:8:\"controls\";s:4:\"none\";s:9:\"animation\";s:4:\"fade\";s:13:\"caption_words\";s:3:\"100\";s:10:\"slidespeed\";s:4:\"7000\";s:11:\"description\";a:3:{i:0;s:8:\"username\";i:1;s:4:\"time\";i:2;s:7:\"caption\";}s:14:\"support_author\";N;}s:12:\"_multiwidget\";i:1;}','yes'),(60579,'widget_enews-ext','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(65921,'woocommerce_catalog_columns','3','yes'),(60359,'_transient_timeout_feed_4cce267bfbad95b56b41e67b8ddfce5e','1546486020','no'),(202,'recently_activated','a:3:{s:27:\"popup-maker/popup-maker.php\";i:1553117688;s:45:\"woocommerce-services/woocommerce-services.php\";i:1552957699;s:23:\"etsy-shop/etsy-shop.php\";i:1552854046;}','yes'),(203,'gse-settings','a:5:{s:9:\"post_info\";s:39:\"[post_date] [post_comments] [post_edit]\";s:9:\"post_meta\";s:29:\"[post_categories] [post_tags]\";s:17:\"footer_creds_text\";s:152:\"Copyright [footer_copyright] [footer_childtheme_link] · [footer_genesis_link] [footer_studiopress_link] · [footer_wordpress_link] · [footer_loginout]\";s:16:\"footer_output_on\";s:1:\"1\";s:13:\"footer_output\";s:405:\"<div class=\"gototop\"><p>[footer_backtotop]</p></div><div class=\"creds\"><p>♥/© ANNIE PAUL-MURPHY <a href=\"https://annieversalstudios.com/terms-conditions/\"> • Terms & Conditions </a> <a href=\"https://annieversalstudios.com/privacy-policy/\">• Privacy Policy •</a><br>CREATED BY ME ON THE\r\n<a href=\"http://www.shareasale.com/r.cfm?B=346198&U=866639&M=28169&urllink=\">GENESIS FRAMEWORK.</a></p></div>\";}','yes'),(2250,'etsy_shop_api_key','nwf9acf2l5enslwrt5e3ez6t','yes'),(2251,'etsy_shop_debug_mode','0','yes'),(214,'widget_simple-social-icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(223,'theme_mods_runway','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387322031;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:12:\"header-right\";a:0:{}s:7:\"sidebar\";a:0:{}s:11:\"sidebar-alt\";a:0:{}s:13:\"home-featured\";a:1:{i:0;s:21:\"simple-social-icons-2\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";N;s:8:\"footer-3\";N;}}}','yes'),(231,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(235,'theme_mods_runway 2','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387306660;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:21:\"simple-social-icons-2\";}s:12:\"header-right\";a:0:{}s:7:\"sidebar\";a:0:{}s:11:\"sidebar-alt\";N;s:13:\"home-featured\";N;s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;}}}','yes'),(234,'theme_mods_twentythirteen','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387224290;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:21:\"simple-social-icons-2\";}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:{}}}}','yes'),(294,'theme_mods_twentyfourteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387322039;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:21:\"simple-social-icons-2\";}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:{}}}}','yes'),(1422,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"annieluciapaul@gmail.com\";s:7:\"version\";s:5:\"5.0.3\";s:9:\"timestamp\";i:1547063076;}','no'),(2249,'etsy_shop_version','2.0','yes'),(2252,'etsy_shop_target_blank','1','yes'),(380,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(371,'theme_mods_stretch','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1387485327;s:4:\"data\";a:3:{s:18:\"orphaned_widgets_1\";a:0:{}s:19:\"wp_inactive_widgets\";a:6:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:12:\"header-right\";a:2:{i:0;s:10:\"nav_menu-2\";i:1;s:21:\"simple-social-icons-2\";}}}}','yes'),(24357,'rewrite_rules','a:156:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";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:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";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:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";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:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";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:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";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:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";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:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";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:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/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}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/embed/?$\";s:75:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:64:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:52:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:49:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&wc-api=$matches[5]\";s:51:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:36:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(60539,'boss-page-header-image','https://annieversalstudios.com/wp-content/uploads/2019/01/chastagner-thierry-1118352-unsplash.jpg','yes'),(60540,'boss-front-page-image-2','https://annieversalstudios.com/wp-content/uploads/2019/01/Annieversal-AWeddingHead.jpg','yes'),(60541,'boss-front-page-image-3','https://annieversalstudios.com/wp-content/uploads/2019/01/IMG_6296-1.jpg','yes'),(434,'widget_featured-page','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3777,'db_upgraded','','yes'),(23419,'finished_splitting_shared_terms','1','yes'),(60457,'widget_custom_html','a:4:{i:3;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:353:\"<h1 style=\"max-width: 500px; text-align: center;\">Lovely designs, <span class=\"handwritten\">powered</span> by the <span class=\"handwritten\"> Golden Rule</span></h1>\r\n<br><br>\r\n<a class=\"button-white\" href=\"#\">SHOP NOW - COMING SOON!</a>\r\n<h3-homepage>OR</h3-homepage>\r\n<a class=\"button-white\" href=\"https://boss.designbybloom.co/about/\">LEARN MORE</a>\r\n\";}i:4;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:337:\"<div class=\"card two-fifths right\">\r\n<h6 class=\"card-title\">About</h6>\r\n<span class=\"huge\">Hi,</span>\r\n<h5>I\'m Annie.</h5>\r\nA maker, blogger, and an unshakable optimist dedicated to helping you adorn your spaces with the loveliest pieces.\r\n<br><br>\r\n<a class=\"button\" href=\"https://annieversalstudios.com/about/\">Learn More</a>\r\n\r\n</div>\";}i:6;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:451:\"<h1 style=\"max-width: 500px; text-align: center;\">Lovely crafts, <span class=\"handwritten\">handmade</span> in <span class=\"handwritten\"> beautiful Utah</span></h1>\r\n<div style=\"text-align:left; padding-left: 20%\"> \r\n<a class=\"button\" href=\"#\">SHOP NOW - COMING SOON</a>\r\n</div>\r\n<br><br><br><br>\r\n<div style=\"text-align:right\">\r\n<sub><i>I took this picture in Salt Lake City while on a fun hike with my husband before we got married!</i></sub>\r\n</div>\";}s:12:\"_multiwidget\";i:1;}','yes'),(60458,'wp_page_for_privacy_policy','238','yes'),(60459,'show_comments_cookies_opt_in','0','yes'),(60493,'akismet_comment_form_privacy_notice','display','yes'),(60523,'theme_mods_boss-pro','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:190;}','yes'),(41656,'ssl_host','','yes'),(41657,'ssl_port','','yes'),(41658,'secure_external_urls','a:0:{}','yes'),(41659,'unsecure_external_urls','a:0:{}','yes'),(41660,'ssl_host_diff','0','yes'),(41661,'ssl_host_subdomain','0','yes'),(41662,'exclusive_https','0','yes'),(41663,'remove_unsecure','0','yes'),(41664,'ssl_admin','0','yes'),(41665,'ssl_proxy','0','yes'),(41666,'debug','0','yes'),(41667,'admin_menu','side','yes'),(41668,'secure_filter','a:0:{}','yes'),(41651,'soliloquy_review','a:2:{s:4:\"time\";i:1485565466;s:9:\"dismissed\";b:0;}','yes'),(63418,'can_compress_scripts','0','no'),(63421,'woocommerce_store_address','1912 Sidewinder Dr.','yes'),(63422,'woocommerce_store_address_2','Suite 211','yes'),(63423,'woocommerce_store_city','Park City','yes'),(63424,'woocommerce_default_country','US:UT','yes'),(63425,'woocommerce_store_postcode','84060','yes'),(63426,'woocommerce_allowed_countries','specific','yes'),(63427,'woocommerce_all_except_countries','a:0:{}','yes'),(63428,'woocommerce_specific_allowed_countries','a:1:{i:0;s:2:\"US\";}','yes'),(63429,'woocommerce_ship_to_countries','specific','yes'),(63430,'woocommerce_specific_ship_to_countries','a:1:{i:0;s:2:\"US\";}','yes'),(63431,'woocommerce_default_customer_address','geolocation','yes'),(63432,'woocommerce_calc_taxes','yes','yes'),(63433,'woocommerce_enable_coupons','yes','yes'),(63434,'woocommerce_calc_discounts_sequentially','no','no'),(63435,'woocommerce_currency','USD','yes'),(63436,'woocommerce_currency_pos','left','yes'),(63437,'woocommerce_price_thousand_sep',',','yes'),(63438,'woocommerce_price_decimal_sep','.','yes'),(63439,'woocommerce_price_num_decimals','2','yes'),(63440,'woocommerce_shop_page_id','219','yes'),(63441,'woocommerce_cart_redirect_after_add','no','yes'),(63442,'woocommerce_enable_ajax_add_to_cart','no','yes'),(63443,'woocommerce_placeholder_image','https://annieversalstudios.com/wp-content/uploads/2019/01/chastagner-thierry-1118352-unsplash.jpg','yes'),(63444,'woocommerce_weight_unit','oz','yes'),(63445,'woocommerce_dimension_unit','in','yes'),(63446,'woocommerce_enable_reviews','no','yes'),(63447,'woocommerce_review_rating_verification_label','yes','no'),(63448,'woocommerce_review_rating_verification_required','no','no'),(63449,'woocommerce_enable_review_rating','yes','yes'),(63450,'woocommerce_review_rating_required','yes','no'),(63451,'woocommerce_manage_stock','yes','yes'),(63452,'woocommerce_hold_stock_minutes','600','no'),(63453,'woocommerce_notify_low_stock','no','no'),(63454,'woocommerce_notify_no_stock','no','no'),(63455,'woocommerce_stock_email_recipient','annieluciapaul@gmail.com','no'),(63456,'woocommerce_notify_low_stock_amount','2','no'),(63457,'woocommerce_notify_no_stock_amount','0','yes'),(63458,'woocommerce_hide_out_of_stock_items','no','yes'),(63459,'woocommerce_stock_format','low_amount','yes'),(63460,'woocommerce_file_download_method','force','no'),(63461,'woocommerce_downloads_require_login','no','no'),(63462,'woocommerce_downloads_grant_access_after_payment','yes','no'),(63463,'woocommerce_prices_include_tax','no','yes'),(63464,'woocommerce_tax_based_on','shipping','yes'),(63465,'woocommerce_shipping_tax_class','','yes'),(63466,'woocommerce_tax_round_at_subtotal','no','yes'),(63467,'woocommerce_tax_classes','Reduced rate\r\nZero rate','yes'),(63468,'woocommerce_tax_display_shop','excl','yes'),(63469,'woocommerce_tax_display_cart','incl','yes'),(63470,'woocommerce_price_display_suffix','','yes'),(63471,'woocommerce_tax_total_display','single','no'),(63472,'woocommerce_enable_shipping_calc','yes','no'),(63473,'woocommerce_shipping_cost_requires_address','no','yes'),(63474,'woocommerce_ship_to_destination','billing','no'),(63475,'woocommerce_shipping_debug_mode','no','yes'),(63476,'woocommerce_enable_guest_checkout','yes','no'),(63477,'woocommerce_enable_checkout_login_reminder','yes','no'),(63478,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(63479,'woocommerce_enable_myaccount_registration','yes','no'),(63480,'woocommerce_registration_generate_username','yes','no'),(63481,'woocommerce_registration_generate_password','no','no'),(63482,'woocommerce_erasure_request_removes_order_data','no','no'),(63483,'woocommerce_erasure_request_removes_download_data','no','no'),(63484,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(63485,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(63486,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(63487,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(63488,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(63489,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(63490,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(63491,'woocommerce_email_from_name','Annieversal Studios','no'),(63492,'woocommerce_email_from_address','annie@annieversalstudios.com','no'),(63493,'woocommerce_email_header_image','https://annieversalstudios.com/wp-content/uploads/2019/01/Annieversal-SiteHeader.png','no'),(63494,'woocommerce_email_footer_text','{site_title}<br />Find darling designs powered by the Golden Rule at <a href=\"https://annieversalstudios.com/\">AnnieversalStudios.com</a>','no'),(63495,'woocommerce_email_base_color','#17c2c8','no'),(63496,'woocommerce_email_background_color','#f7f7f7','no'),(63497,'woocommerce_email_body_background_color','#ffffff','no'),(63498,'woocommerce_email_text_color','#3c3c3c','no'),(63499,'woocommerce_cart_page_id','222','yes'),(63500,'woocommerce_checkout_page_id','223','yes'),(63501,'woocommerce_myaccount_page_id','224','yes'),(63502,'woocommerce_terms_page_id','233','no'),(63503,'woocommerce_force_ssl_checkout','no','yes'),(63504,'woocommerce_unforce_ssl_checkout','no','yes'),(63505,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(63506,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(63507,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(63508,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(63509,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(63510,'woocommerce_myaccount_orders_endpoint','orders','yes'),(63511,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(63512,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(63513,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(63514,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(63515,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(63516,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(63517,'woocommerce_logout_endpoint','customer-logout','yes'),(63518,'woocommerce_api_enabled','no','yes'),(63519,'woocommerce_single_image_width','600','yes'),(63520,'woocommerce_thumbnail_image_width','300','yes'),(63521,'woocommerce_checkout_highlight_required_fields','yes','yes'),(63522,'woocommerce_demo_store','yes','yes'),(60503,'wordpress-https_path_cache','a:49:{s:7:\"/about/\";i:17;s:11:\"/portfolio/\";i:20;s:13:\"/get-started/\";i:22;s:28:\"/get-started/design-options/\";i:34;s:19:\"/blog-consultation/\";i:117;s:30:\"/get-started/terms-conditions/\";i:36;s:9:\"/contact/\";i:24;s:26:\"/portfolio/belleza-kisses/\";i:0;s:44:\"/portfolio/adventures-of-a-misfit-librarian/\";i:0;s:30:\"/portfolio/the-ranting-latina/\";i:0;s:29:\"/portfolio/calantha-organics/\";i:0;s:37:\"/portfolio/for-the-love-of-tailoring/\";i:0;s:27:\"/portfolio/alter-creations/\";i:0;s:18:\"/wp-admin/post.php\";i:0;s:19:\"/wp-admin/about.php\";i:0;s:10:\"/wp-admin/\";i:0;s:20:\"/wp-admin/themes.php\";i:0;s:21:\"/wp-admin/widgets.php\";i:0;s:23:\"/wp-admin/nav-menus.php\";i:0;s:23:\"/wp-admin/customize.php\";i:0;s:25:\"/wp-admin/update-core.php\";i:0;s:27:\"/wp-admin/edit-comments.php\";i:0;s:22:\"/wp-admin/post-new.php\";i:0;s:23:\"/wp-admin/media-new.php\";i:0;s:22:\"/wp-admin/user-new.php\";i:0;s:21:\"/wp-admin/profile.php\";i:0;s:13:\"/wp-login.php\";i:0;s:6:\"/feed/\";i:0;s:21:\"/wp-comments-post.php\";i:0;s:15:\"/comments/feed/\";i:0;s:28:\"/frequently-asked-questions/\";i:175;s:6:\"/faqs/\";i:175;s:11:\"/xmlrpc.php\";i:0;s:9:\"/wp-json/\";i:0;s:16:\"/portfolio/feed/\";i:0;s:12:\"/investment/\";i:0;s:26:\"/search/%7Bs%7D/feed/rss2/\";i:0;s:12:\"/my-account/\";i:224;s:19:\"/my-account/orders/\";i:0;s:22:\"/my-account/downloads/\";i:0;s:25:\"/my-account/edit-address/\";i:0;s:25:\"/my-account/edit-account/\";i:0;s:28:\"/my-account/customer-logout/\";i:0;s:26:\"/my-account/lost-password/\";i:0;s:16:\"/privacy-policy/\";i:238;s:9:\"/returns/\";i:235;s:10:\"/shipping/\";i:243;s:18:\"/terms-conditions/\";i:233;s:10:\"/checkout/\";i:223;}','yes'),(60504,'wordpress-https_blog_cache','a:0:{}','yes'),(34575,'site_icon','155','yes'),(34576,'medium_large_size_w','768','yes'),(34577,'medium_large_size_h','0','yes'),(60453,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(60454,'widget_media_image','a:2:{i:2;a:15:{s:13:\"attachment_id\";i:166;s:3:\"url\";s:97:\"https://annieversalstudios.com/wp-content/uploads/2019/01/170916_ChristopherAnnie_294-333x500.jpg\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:3265;s:6:\"height\";i:4898;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(60455,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(60456,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34580,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34581,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34582,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34583,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34584,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34585,'widget_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34586,'widget_jetpack_readmill_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34587,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34588,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34589,'widget_featured-post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(34590,'widget_user-profile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(35717,'soliloquy_upgrade_cpts','1','yes'),(63606,'wc_stripe_version','4.1.15','yes'),(63609,'_transient_shipping-transient-version','1553191782','yes'),(63610,'woocommerce_flat_rate_1_settings','a:3:{s:5:\"title\";s:9:\"Flat rate\";s:10:\"tax_status\";s:4:\"none\";s:4:\"cost\";s:1:\"8\";}','yes'),(63828,'_transient_timeout_wc_shipping_method_count_0_1552792275','1555446424','no'),(63829,'_transient_wc_shipping_method_count_0_1552792275','1','no'),(41638,'etsy_shop_timeout','10','yes'),(41639,'etsy_shop_cache_life','21600','yes'),(41645,'do_activate','0','yes'),(41669,'ssl_host_mapping','a:0:{}','yes'),(41670,'network_defaults','a:0:{}','yes'),(41671,'wordpress-https_secure_external_urls','a:8:{i:0;s:91:\"https://secure.gravatar.com/avatar/94fd40f72c5d02adcb5f06e91f9a1758?s=64&#038;d=mm&#038;r=g\";i:1;s:91:\"https://secure.gravatar.com/avatar/94fd40f72c5d02adcb5f06e91f9a1758?s=26&#038;d=mm&#038;r=g\";i:2;s:86:\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps2_zpsf754eda5.png\";i:3;s:85:\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\";i:4;s:90:\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts2_zps91dd0a68.png\";i:5;s:89:\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\";i:6;s:59:\"https://secure.gravatar.com/avatar/?s=96&#038;d=mm&#038;r=g\";i:7;s:91:\"https://secure.gravatar.com/avatar/94fd40f72c5d02adcb5f06e91f9a1758?s=40&#038;d=mm&#038;r=g\";}','yes'),(41672,'wordpress-https_unsecure_external_urls','a:2:{i:0;s:74:\"http://bosspro.genesiswpsupport.com/wp-content/uploads/2017/06/demo-27.jpg\";i:1;s:102:\"https://chimpstatic.com/mcjs-connected/js/users/949cfc647f2977272972842d6/9e4d80b9f5eeace7de833f975.js\";}','yes'),(41673,'wordpress-https_ssl_host_mapping','a:2:{s:15:\"w.sharethis.com\";s:16:\"ws.sharethis.com\";s:15:\"\\d.gravatar.com\";s:19:\"secure.gravatar.com\";}','yes'),(41674,'wordpress-https_ssl_host_subdomain','0','yes'),(41675,'wordpress-https_ssl_host','https://annieversalstudios.com/','yes'),(41676,'wordpress-https_ssl_port','','yes'),(41677,'wordpress-https_ssl_host_diff','1','yes'),(41678,'wordpress-https_exclusive_https','0','yes'),(41679,'wordpress-https_remove_unsecure','0','yes'),(41680,'wordpress-https_ssl_admin','0','yes'),(41681,'wordpress-https_ssl_proxy','0','yes'),(41682,'wordpress-https_debug','0','yes'),(41683,'wordpress-https_admin_menu','side','yes'),(41685,'open_graph_protocol_site_type','','yes'),(41686,'facebook_admins','a:0:{}','yes'),(66628,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1553542073;s:7:\"checked\";a:13:{s:8:\"blissful\";s:5:\"1.0.1\";s:8:\"boss-pro\";s:5:\"1.0.1\";s:7:\"forever\";s:3:\"1.2\";s:7:\"genesis\";s:5:\"2.9.1\";s:11:\"minimum-pro\";s:5:\"3.0.0\";s:10:\"storefront\";s:5:\"2.4.5\";s:7:\"stretch\";s:5:\"1.0.1\";s:13:\"twentyfifteen\";s:3:\"1.0\";s:14:\"twentyfourteen\";s:3:\"1.0\";s:14:\"twentynineteen\";s:3:\"1.1\";s:15:\"twentyseventeen\";s:3:\"1.9\";s:14:\"twentythirteen\";s:3:\"1.1\";s:12:\"twentytwelve\";s:3:\"1.3\";}s:8:\"response\";a:7:{s:7:\"forever\";a:4:{s:5:\"theme\";s:7:\"forever\";s:11:\"new_version\";s:5:\"1.2.4\";s:3:\"url\";s:37:\"https://wordpress.org/themes/forever/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/forever.1.2.4.zip\";}s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.4.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.2.6.zip\";}s:14:\"twentynineteen\";a:4:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.3.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.1.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.2.8.zip\";}s:12:\"twentytwelve\";a:4:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.2.9.zip\";}}s:12:\"translations\";a:0:{}}','no'),(63301,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.1\";s:7:\"version\";s:5:\"5.1.1\";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:12:\"last_checked\";i:1553542073;s:15:\"version_checked\";s:5:\"5.1.1\";s:12:\"translations\";a:0:{}}','no'),(60494,'akismet_spam_count','3','yes'),(60473,'wordpress-https_hosts','a:2:{i:0;s:22:\"annieversalstudios.com\";i:1;s:22:\"annieversalstudios.com\";}','yes'),(65076,'pum_initial_version','1.8.3','yes'),(65077,'pum_ver_upgraded_from','0.0.0','yes'),(65078,'pum_db_ver','8','yes'),(65079,'pum_installed_on','2019-03-20 15:33:03','yes'),(65080,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:37:\"popup-maker/includes/pum-sdk/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.2.4\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1553117583;s:11:\"plugin_path\";s:27:\"popup-maker/popup-maker.php\";}}s:7:\"abspath\";s:50:\"/home/annieluc/public_html/annieversalstudios.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:27:\"popup-maker/popup-maker.php\";s:8:\"sdk_path\";s:37:\"popup-maker/includes/pum-sdk/freemius\";s:7:\"version\";s:5:\"2.2.4\";s:13:\"in_activation\";b:1;s:9:\"timestamp\";i:1553117583;}}','yes'),(65081,'fs_debug_mode','','yes'),(65082,'fs_accounts','a:5:{s:21:\"id_slug_type_path_map\";a:1:{i:147;a:3:{s:4:\"slug\";s:11:\"popup-maker\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:27:\"popup-maker/popup-maker.php\";}}s:11:\"plugin_data\";a:1:{s:11:\"popup-maker\";a:13:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:27:\"popup-maker/popup-maker.php\";}s:17:\"install_timestamp\";i:1553117583;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.2.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"1.8.3\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:21:\"is_plugin_new_install\";b:1;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:22:\"annieversalstudios.com\";s:9:\"server_ip\";s:12:\"73.63.64.112\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1553117583;s:7:\"version\";s:5:\"1.8.3\";}s:17:\"was_plugin_loaded\";b:1;}}s:13:\"file_slug_map\";a:1:{s:27:\"popup-maker/popup-maker.php\";s:11:\"popup-maker\";}s:7:\"plugins\";a:1:{s:11:\"popup-maker\";O:9:\"FS_Plugin\":20:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:11:\"Popup Maker\";s:4:\"slug\";s:11:\"popup-maker\";s:12:\"premium_slug\";s:19:\"popup-maker-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:4:\"file\";s:27:\"popup-maker/popup-maker.php\";s:7:\"version\";s:5:\"1.8.3\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:10:\"public_key\";s:32:\"pk_0a02cbd99443e0ab7211b19222fe3\";s:10:\"secret_key\";N;s:2:\"id\";s:3:\"147\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"aeb92d9f59221822d4edfd4f1eeb7662\";}','yes'),(65083,'pum_previously_opted_using_freemius','0','yes'),(65084,'fs_api_cache','a:0:{}','yes'),(65085,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(65088,'popmake_settings','a:2:{s:26:\"disable_popup_category_tag\";i:1;s:16:\"default_theme_id\";i:253;}','yes'),(65089,'pum_version','1.8.3','yes'),(65962,'_transient_timeout_wc_shipping_method_count_1_1553191782','1555786026','no'),(65963,'_transient_wc_shipping_method_count_1_1553191782','2','no'),(63523,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(63524,'current_theme_supports_woocommerce','yes','yes'),(63525,'woocommerce_queue_flush_rewrite_rules','no','yes'),(65558,'_transient_timeout_wc_shipping_method_count_0_1553184145','1555776378','no'),(65559,'_transient_wc_shipping_method_count_0_1553184145','2','no'),(63526,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(63527,'product_cat_children','a:0:{}','yes'),(63528,'default_product_cat','16','yes'),(64917,'woocommerce_version','3.5.7','yes'),(64918,'woocommerce_db_version','3.5.7','yes'),(63533,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"550\";s:6:\"height\";s:3:\"550\";s:4:\"crop\";i:1;}','yes'),(63534,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"750\";s:6:\"height\";s:3:\"750\";s:4:\"crop\";i:1;}','yes'),(63535,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"180\";s:6:\"height\";s:3:\"180\";s:4:\"crop\";i:1;}','yes'),(63536,'woocommerce_admin_notices','a:1:{i:0;s:20:\"no_secure_connection\";}','yes'),(63537,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(63538,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63539,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63540,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63541,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63542,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63543,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63544,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63545,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63546,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63547,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63548,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63549,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(63555,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(63556,'_transient_as_comment_count','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(63554,'woocommerce_meta_box_errors','a:0:{}','yes'),(66526,'genesis_expiring_setting_update_expiration','1553585328','no'),(66527,'genesis_expiring_setting_update','a:5:{s:5:\"theme\";s:7:\"genesis\";s:3:\"url\";s:41:\"https://my.studiopress.com/themes/genesis\";s:11:\"new_version\";s:5:\"2.9.1\";s:7:\"package\";s:61:\"https://api.genesistheme.com/download/?file=genesis.2.9.1.zip\";s:13:\"changelog_url\";s:63:\"https://studiopress.github.io/genesis/changelog/?TB_iframe=true\";}','no'),(66629,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1553542073;s:7:\"checked\";a:22:{s:19:\"akismet/akismet.php\";s:5:\"4.1.1\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.4\";s:23:\"etsy-shop/etsy-shop.php\";s:3:\"2.0\";s:59:\"genesis-connect-woocommerce/genesis-connect-woocommerce.php\";s:3:\"1.0\";s:33:\"genesis-enews-extended/plugin.php\";s:5:\"2.1.1\";s:31:\"genesis-simple-edits/plugin.php\";s:5:\"2.2.1\";s:27:\"quick-setup/quick-setup.php\";s:4:\"1.04\";s:9:\"hello.php\";s:3:\"1.6\";s:43:\"instagram-slider-widget/instaram_slider.php\";s:5:\"1.4.3\";s:19:\"jetpack/jetpack.php\";s:5:\"7.1.1\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:6:\"2.1.14\";s:27:\"popup-maker/popup-maker.php\";s:5:\"1.8.4\";s:33:\"soliloquy-lite/soliloquy-lite.php\";s:5:\"2.5.4\";s:43:\"simple-social-icons/simple-social-icons.php\";s:5:\"3.0.0\";s:45:\"welcome-to-wordpress/welcome-to-wordpress.php\";s:3:\"1.0\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.5.7\";s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";s:5:\"1.4.0\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:6:\"1.6.10\";s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";s:5:\"2.2.9\";s:45:\"woocommerce-services/woocommerce-services.php\";s:6:\"1.19.0\";s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";s:6:\"4.1.15\";s:35:\"wordpress-https/wordpress-https.php\";s:5:\"3.4.0\";}s:8:\"response\";a:2:{s:23:\"etsy-shop/etsy-shop.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/etsy-shop\";s:4:\"slug\";s:9:\"etsy-shop\";s:6:\"plugin\";s:23:\"etsy-shop/etsy-shop.php\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/etsy-shop/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/etsy-shop.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/etsy-shop/assets/icon-256x256.png?rev=1089359\";s:2:\"1x\";s:62:\"https://ps.w.org/etsy-shop/assets/icon-128x128.png?rev=1089359\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/etsy-shop/assets/banner-772x250.png?rev=618429\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:52:\"w.org/plugins/woocommerce-pdf-invoices-packing-slips\";s:4:\"slug\";s:38:\"woocommerce-pdf-invoices-packing-slips\";s:6:\"plugin\";s:80:\"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php\";s:11:\"new_version\";s:6:\"2.2.11\";s:3:\"url\";s:69:\"https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/\";s:7:\"package\";s:88:\"https://downloads.wordpress.org/plugin/woocommerce-pdf-invoices-packing-slips.2.2.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-256x256.png?rev=983013\";s:2:\"1x\";s:90:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-128x128.png?rev=983013\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:92:\"https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/banner-772x250.png?rev=840317\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:18:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.1.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:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:59:\"genesis-connect-woocommerce/genesis-connect-woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:41:\"w.org/plugins/genesis-connect-woocommerce\";s:4:\"slug\";s:27:\"genesis-connect-woocommerce\";s:6:\"plugin\";s:59:\"genesis-connect-woocommerce/genesis-connect-woocommerce.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/genesis-connect-woocommerce/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/genesis-connect-woocommerce.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/genesis-connect-woocommerce/assets/icon-256x256.png?rev=1335684\";s:2:\"1x\";s:80:\"https://ps.w.org/genesis-connect-woocommerce/assets/icon-128x128.png?rev=1335684\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/genesis-connect-woocommerce/assets/banner-1544x500.png?rev=1335684\";s:2:\"1x\";s:82:\"https://ps.w.org/genesis-connect-woocommerce/assets/banner-772x250.png?rev=1335684\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"genesis-enews-extended/plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/genesis-enews-extended\";s:4:\"slug\";s:22:\"genesis-enews-extended\";s:6:\"plugin\";s:33:\"genesis-enews-extended/plugin.php\";s:11:\"new_version\";s:5:\"2.1.1\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/genesis-enews-extended/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/genesis-enews-extended.2.1.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:66:\"https://s.w.org/plugins/geopattern-icon/genesis-enews-extended.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:31:\"genesis-simple-edits/plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/genesis-simple-edits\";s:4:\"slug\";s:20:\"genesis-simple-edits\";s:6:\"plugin\";s:31:\"genesis-simple-edits/plugin.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/genesis-simple-edits/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/genesis-simple-edits.2.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/genesis-simple-edits/assets/icon-256x256.png?rev=1335665\";s:2:\"1x\";s:73:\"https://ps.w.org/genesis-simple-edits/assets/icon-128x128.png?rev=1335665\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/genesis-simple-edits/assets/banner-1544x500.png?rev=1335665\";s:2:\"1x\";s:75:\"https://ps.w.org/genesis-simple-edits/assets/banner-772x250.png?rev=1335665\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{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:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s: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:43:\"instagram-slider-widget/instaram_slider.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/instagram-slider-widget\";s:4:\"slug\";s:23:\"instagram-slider-widget\";s:6:\"plugin\";s:43:\"instagram-slider-widget/instaram_slider.php\";s:11:\"new_version\";s:5:\"1.4.3\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/instagram-slider-widget/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/instagram-slider-widget.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/instagram-slider-widget/assets/icon-256x256.png?rev=1592009\";s:2:\"1x\";s:76:\"https://ps.w.org/instagram-slider-widget/assets/icon-128x128.png?rev=1592011\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/instagram-slider-widget/assets/banner-772x250.jpg?rev=850744\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"7.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.1.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}}s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:39:\"w.org/plugins/mailchimp-for-woocommerce\";s:4:\"slug\";s:25:\"mailchimp-for-woocommerce\";s:6:\"plugin\";s:51:\"mailchimp-for-woocommerce/mailchimp-woocommerce.php\";s:11:\"new_version\";s:6:\"2.1.14\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/mailchimp-for-woocommerce/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/mailchimp-for-woocommerce.2.1.14.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501\";s:2:\"1x\";s:78:\"https://ps.w.org/mailchimp-for-woocommerce/assets/icon-256x256.png?rev=1509501\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-1544x500.png?rev=1950415\";s:2:\"1x\";s:80:\"https://ps.w.org/mailchimp-for-woocommerce/assets/banner-772x250.jpg?rev=1950415\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"popup-maker/popup-maker.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/popup-maker\";s:4:\"slug\";s:11:\"popup-maker\";s:6:\"plugin\";s:27:\"popup-maker/popup-maker.php\";s:11:\"new_version\";s:5:\"1.8.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/popup-maker/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/popup-maker.1.8.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/popup-maker/assets/icon-256x256.jpg?rev=2045655\";s:2:\"1x\";s:64:\"https://ps.w.org/popup-maker/assets/icon-128x128.jpg?rev=2045655\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/popup-maker/assets/banner-1544x500.jpg?rev=2045655\";s:2:\"1x\";s:66:\"https://ps.w.org/popup-maker/assets/banner-772x250.jpg?rev=2045655\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"soliloquy-lite/soliloquy-lite.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/soliloquy-lite\";s:4:\"slug\";s:14:\"soliloquy-lite\";s:6:\"plugin\";s:33:\"soliloquy-lite/soliloquy-lite.php\";s:11:\"new_version\";s:5:\"2.5.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/soliloquy-lite/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/soliloquy-lite.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/soliloquy-lite/assets/icon-256x256.png?rev=979373\";s:2:\"1x\";s:67:\"https://ps.w.org/soliloquy-lite/assets/icon-128x128.png?rev=1100505\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/soliloquy-lite/assets/banner-772x250.png?rev=1450820\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"simple-social-icons/simple-social-icons.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/simple-social-icons\";s:4:\"slug\";s:19:\"simple-social-icons\";s:6:\"plugin\";s:43:\"simple-social-icons/simple-social-icons.php\";s:11:\"new_version\";s:5:\"3.0.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/simple-social-icons/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/simple-social-icons.3.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/simple-social-icons/assets/icon-256x256.png?rev=1335655\";s:2:\"1x\";s:72:\"https://ps.w.org/simple-social-icons/assets/icon-128x128.png?rev=1335655\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/simple-social-icons/assets/banner-1544x500.png?rev=1587503\";s:2:\"1x\";s:74:\"https://ps.w.org/simple-social-icons/assets/banner-772x250.png?rev=1587503\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.5.7\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.5.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=1440831\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=1440831\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=1629184\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=1629184\";}s:11:\"banners_rtl\";a:0:{}}s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:42:\"w.org/plugins/woo-gutenberg-products-block\";s:4:\"slug\";s:28:\"woo-gutenberg-products-block\";s:6:\"plugin\";s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/woo-gutenberg-products-block/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/woo-gutenberg-products-block.1.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/woo-gutenberg-products-block/assets/icon-256x256.png?rev=1863757\";s:2:\"1x\";s:81:\"https://ps.w.org/woo-gutenberg-products-block/assets/icon-128x128.png?rev=1863757\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:83:\"https://ps.w.org/woo-gutenberg-products-block/assets/banner-772x250.png?rev=1863757\";}s:11:\"banners_rtl\";a:0:{}}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:57:\"w.org/plugins/woocommerce-gateway-paypal-express-checkout\";s:4:\"slug\";s:43:\"woocommerce-gateway-paypal-express-checkout\";s:6:\"plugin\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:11:\"new_version\";s:6:\"1.6.10\";s:3:\"url\";s:74:\"https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/\";s:7:\"package\";s:93:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-paypal-express-checkout.1.6.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-256x256.png?rev=1900204\";s:2:\"1x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-128x128.png?rev=1900204\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:99:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-1544x500.png?rev=1948167\";s:2:\"1x\";s:98:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-772x250.png?rev=1948167\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"woocommerce-services/woocommerce-services.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-services\";s:4:\"slug\";s:20:\"woocommerce-services\";s:6:\"plugin\";s:45:\"woocommerce-services/woocommerce-services.php\";s:11:\"new_version\";s:6:\"1.19.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-services/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/woocommerce-services.1.19.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-256x256.png?rev=1910075\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-128x128.png?rev=1910075\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-services/assets/banner-1544x500.png?rev=1962920\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-services/assets/banner-772x250.png?rev=1962920\";}s:11:\"banners_rtl\";a:0:{}}s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/woocommerce-gateway-stripe\";s:4:\"slug\";s:26:\"woocommerce-gateway-stripe\";s:6:\"plugin\";s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";s:11:\"new_version\";s:6:\"4.1.15\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/woocommerce-gateway-stripe/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.1.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-256x256.png?rev=1917495\";s:2:\"1x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-128x128.png?rev=1917495\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-1544x500.png?rev=1917495\";s:2:\"1x\";s:81:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-772x250.png?rev=1917495\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"wordpress-https/wordpress-https.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/wordpress-https\";s:4:\"slug\";s:15:\"wordpress-https\";s:6:\"plugin\";s:35:\"wordpress-https/wordpress-https.php\";s:11:\"new_version\";s:5:\"3.4.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wordpress-https/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/wordpress-https.3.4.0.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:66:\"https://s.w.org/plugins/geopattern-icon/wordpress-https_bec2c9.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/wordpress-https/assets/banner-772x250.png?rev=533268\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(63577,'_transient_timeout_wc_low_stock_count','1555383914','no'),(63578,'_transient_wc_low_stock_count','0','no'),(63579,'_transient_timeout_wc_outofstock_count','1555383914','no'),(63580,'_transient_wc_outofstock_count','0','no'),(64894,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1553145972','no'),(65966,'woocommerce_checkout_phone_field','optional','yes'),(66626,'_site_transient_timeout_theme_roots','1553543873','no'),(66627,'_site_transient_theme_roots','a:13:{s:8:\"blissful\";s:7:\"/themes\";s:8:\"boss-pro\";s:7:\"/themes\";s:7:\"forever\";s:7:\"/themes\";s:7:\"genesis\";s:7:\"/themes\";s:11:\"minimum-pro\";s:7:\"/themes\";s:10:\"storefront\";s:7:\"/themes\";s:7:\"stretch\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}','no'),(63594,'woocommerce_product_type','both','yes'),(63595,'woocommerce_allow_tracking','yes','yes'),(63608,'woocommerce_tracker_last_send','1553454059','yes'),(63604,'wc_ppec_version','1.6.10','yes'),(63598,'woocommerce_stripe_settings','a:24:{s:7:\"enabled\";s:3:\"yes\";s:14:\"create_account\";b:0;s:5:\"email\";b:0;s:20:\"apple_pay_domain_set\";s:3:\"yes\";s:5:\"title\";s:20:\"Credit Card (Stripe)\";s:11:\"description\";s:37:\"Pay with your credit card via Stripe.\";s:8:\"testmode\";s:2:\"no\";s:20:\"test_publishable_key\";s:32:\"pk_test_LGNbJbihvJlwChg3nKgtqAyn\";s:15:\"test_secret_key\";s:32:\"sk_test_jZYE2CkD2SofmC31j63GKJ5y\";s:15:\"publishable_key\";s:32:\"pk_live_jLyICSNMzkyINctVfGtgW7Lo\";s:10:\"secret_key\";s:32:\"sk_live_MRoxRT5Eqy8IrRPtjz5nUWAm\";s:14:\"inline_cc_form\";s:2:\"no\";s:20:\"statement_descriptor\";s:0:\"\";s:7:\"capture\";s:3:\"yes\";s:14:\"three_d_secure\";s:3:\"yes\";s:15:\"stripe_checkout\";s:2:\"no\";s:21:\"stripe_checkout_image\";s:0:\"\";s:27:\"stripe_checkout_description\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:11:\"saved_cards\";s:3:\"yes\";s:7:\"logging\";s:2:\"no\";}','yes'),(63600,'woocommerce_ppec_paypal_settings','a:2:{s:16:\"reroute_requests\";b:0;s:5:\"email\";b:0;}','yes'),(63601,'woocommerce_cheque_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:14:\"Check payments\";s:11:\"description\";s:98:\"Please send a check to Store Name, Store Street, Store Town, Store State / County, Store Postcode.\";s:12:\"instructions\";s:0:\"\";}','yes'),(63602,'woocommerce_bacs_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(63603,'woocommerce_cod_settings','a:6:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:16:\"Cash on delivery\";s:11:\"description\";s:28:\"Pay with cash upon delivery.\";s:12:\"instructions\";s:28:\"Pay with cash upon delivery.\";s:18:\"enable_for_methods\";a:0:{}s:18:\"enable_for_virtual\";s:2:\"no\";}','yes'),(63834,'woocommerce_free_shipping_2_settings','a:3:{s:5:\"title\";s:13:\"Free shipping\";s:8:\"requires\";s:6:\"either\";s:10:\"min_amount\";s:2:\"50\";}','yes'),(63614,'wpo_wcpdf_settings_general','a:4:{s:16:\"download_display\";s:7:\"display\";s:13:\"template_path\";s:124:\"/home/annieluc/public_html/annieversalstudios.com/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/templates/Simple\";s:13:\"currency_font\";s:0:\"\";s:10:\"paper_size\";s:2:\"a4\";}','yes'),(63615,'wpo_wcpdf_documents_settings_invoice','a:1:{s:7:\"enabled\";i:1;}','yes'),(63616,'wpo_wcpdf_documents_settings_packing-slip','a:1:{s:7:\"enabled\";i:1;}','yes'),(63617,'wpo_wcpdf_settings_debug','a:2:{s:14:\"enable_cleanup\";i:1;s:12:\"cleanup_days\";i:7;}','yes'),(63620,'wpo_wcpdf_version','2.2.9','yes'),(63629,'gencwooc_products_per_page','5','yes'),(63628,'woocommerce_gateway_stripe_retention','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(64886,'_site_transient_timeout_browser_fdbdd5480805b9281774f4a83a2cb06e','1553707571','no'),(64887,'_site_transient_browser_fdbdd5480805b9281774f4a83a2cb06e','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"73.0.3683.75\";s:8:\"platform\";s:9:\"Macintosh\";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'),(63636,'_transient_timeout_wc_shipping_method_count_1_1552792275','1555384600','no'),(63637,'_transient_wc_shipping_method_count_1_1552792275','1','no'),(63718,'wc_stripe_show_style_notice','no','yes'),(63730,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:37:\"Pay with your credit card via PayPal.\";s:5:\"email\";s:27:\"oneseventwelvellc@gmail.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:24:\"annieluciapaul@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"AS-\";s:13:\"send_shipping\";s:2:\"no\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:10:\"page_style\";s:0:\"\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:29:\"hello_api1.oneseventwelve.com\";s:12:\"api_password\";s:16:\"SPT8656Q4MB5JVVK\";s:13:\"api_signature\";s:56:\"AJ0r1n.13i1ZVNE-D9unceImB8A2A-9zd0nHVYr2zrzVvkznwxnHxoxX\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";}','yes'),(65836,'mailchimp-woocommerce-store_updated_at','1553193484','yes'),(65853,'woocommerce_gateway_order','a:15:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;s:11:\"ppec_paypal\";i:4;s:6:\"stripe\";i:5;s:11:\"stripe_sepa\";i:6;s:17:\"stripe_bancontact\";i:7;s:13:\"stripe_sofort\";i:8;s:14:\"stripe_giropay\";i:9;s:10:\"stripe_eps\";i:10;s:12:\"stripe_ideal\";i:11;s:10:\"stripe_p24\";i:12;s:13:\"stripe_alipay\";i:13;s:17:\"stripe_multibanco\";i:14;}','yes'),(65861,'woocommerce_demo_store_notice','Welcome! The shop is currently under construction but feel free to browse around and learn more about my story :).','yes'),(65862,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(64881,'woocommerce_tracker_ua','a:1:{i:0;s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36\";}','yes'),(63763,'mailchimp_woocommerce_version','2.1.14','no'),(63764,'mailchimp-woocommerce','a:28:{s:17:\"mailchimp_api_key\";s:36:\"5b988bf3fba3b391de2f9c1a215eea6b-us7\";s:19:\"mailchimp_debugging\";b:0;s:25:\"mailchimp_account_info_id\";s:25:\"949cfc647f2977272972842d6\";s:31:\"mailchimp_account_info_username\";s:6:\"asetsy\";s:10:\"active_tab\";s:4:\"sync\";s:14:\"api_ping_error\";b:0;s:10:\"store_name\";s:19:\"Annieversal Studios\";s:12:\"store_street\";s:29:\"1912 Sidewinder Dr. SUITE 211\";s:10:\"store_city\";s:9:\"Park City\";s:11:\"store_state\";s:4:\"Utah\";s:17:\"store_postal_code\";s:5:\"84060\";s:13:\"store_country\";s:2:\"US\";s:11:\"store_phone\";s:10:\"8019107422\";s:12:\"store_locale\";s:2:\"en\";s:14:\"store_timezone\";s:14:\"America/Denver\";s:19:\"store_currency_code\";s:3:\"USD\";s:11:\"admin_email\";s:28:\"annie@annieversalstudios.com\";s:18:\"campaign_from_name\";s:19:\"ANNIEVERSAL STUDIOS\";s:19:\"campaign_from_email\";s:28:\"annie@annieversalstudios.com\";s:16:\"campaign_subject\";s:19:\"Annieversal Studios\";s:17:\"campaign_language\";s:2:\"en\";s:28:\"campaign_permission_reminder\";s:63:\"You were subscribed to the newsletter from Annieversal Studios.\";s:14:\"mailchimp_list\";s:10:\"f703d7a685\";s:16:\"newsletter_label\";s:69:\"Subscribe to Annieverse for exclusive coupons, freebies, and updates!\";s:24:\"mailchimp_auto_subscribe\";b:1;s:27:\"mailchimp_checkbox_defaults\";s:5:\"check\";s:25:\"mailchimp_checkbox_action\";s:39:\"woocommerce_after_checkout_billing_form\";s:27:\"mailchimp_product_image_key\";s:6:\"medium\";}','yes'),(63769,'mailchimp-woocommerce-test.can.remote_post','1','yes'),(63766,'mailchimp-woocommerce-store_id','5c8eaae452af6','yes'),(63767,'mailchimp_woocommerce_db_mailchimp_carts','1','no'),(63770,'mailchimp-woocommerce-validation.api.ping','1','yes'),(65829,'mailchimp-woocommerce-cached-api-ping-check','s:68:\"a:3:{s:2:\"at\";i:1553193423;s:4:\"till\";i:1553193543;s:5:\"value\";b:1;}\";','yes'),(65830,'mailchimp-woocommerce-cached-api-lists','s:131:\"a:3:{s:2:\"at\";i:1553193423;s:4:\"till\";i:1553193543;s:5:\"value\";a:1:{s:10:\"f703d7a685\";s:35:\"Annieversal Studios Sales & Updates\";}}\";','yes'),(63777,'mailchimp-woocommerce-validation.store_info','1','yes'),(63781,'mailchimp-woocommerce-validation.campaign_defaults','1','yes'),(63786,'mailchimp-woocommerce-validation.newsletter_settings','1','yes'),(63787,'mailchimp-woocommerce-store_created_at','1552853974','yes'),(63788,'mailchimp-woocommerce-script_url','https://chimpstatic.com/mcjs-connected/js/users/949cfc647f2977272972842d6/9e4d80b9f5eeace7de833f975.js','yes'),(63789,'mailchimp-woocommerce-script_fragment','<script id=\"mcjs\">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,\"script\",\"https://chimpstatic.com/mcjs-connected/js/users/949cfc647f2977272972842d6/9e4d80b9f5eeace7de833f975.js\");</script>','yes'),(63790,'mailchimp-woocommerce-script_updated_at','1552853975','yes'),(63791,'mailchimp-woocommerce-sync.orders.current_page','1','yes'),(63792,'mailchimp-woocommerce-sync.products.current_page','1','yes'),(63793,'mailchimp-woocommerce-sync.syncing','','yes'),(63794,'mailchimp-woocommerce-sync.started_at','1552853975','yes'),(63803,'mailchimp-woocommerce-sync.products.completed_at','1552853978','yes'),(66716,'_site_transient_timeout_http_worker_queue_listen','1553559295','no'),(66717,'_site_transient_http_worker_queue_listen','0.48406700 1553559245','no'),(63807,'etsy_shop_quickstart_shop_id','','yes'),(65831,'mailchimp-woocommerce-cached-api-account-name','s:4665:\"a:3:{s:2:\"at\";i:1553193423;s:4:\"till\";i:1553193543;s:5:\"value\";a:19:{s:10:\"account_id\";s:25:\"949cfc647f2977272972842d6\";s:8:\"login_id\";s:9:\"116967790\";s:12:\"account_name\";s:19:\"Annieversal Studios\";s:5:\"email\";s:24:\"annieluciapaul@gmail.com\";s:10:\"first_name\";s:5:\"Annie\";s:9:\"last_name\";s:11:\"Paul-Murphy\";s:8:\"username\";s:9:\"anstudios\";s:10:\"avatar_url\";s:151:\"https://secure.gravatar.com/avatar/94fd40f72c5d02adcb5f06e91f9a1758.jpg?s=300&d=https%3A%2F%2Fcdn-images.mailchimp.com%2Ficons%2Fletter-avatars%2Fa.png\";s:4:\"role\";s:5:\"owner\";s:12:\"member_since\";s:25:\"2019-01-03T19:29:32+00:00\";s:17:\"pricing_plan_type\";s:7:\"monthly\";s:13:\"first_payment\";s:0:\"\";s:16:\"account_timezone\";s:10:\"US/Eastern\";s:16:\"account_industry\";s:0:\"\";s:7:\"contact\";a:7:{s:7:\"company\";s:19:\"Annieversal Studios\";s:5:\"addr1\";s:26:\"1912 Sidewinder Dr Ste 211\";s:5:\"addr2\";s:0:\"\";s:4:\"city\";s:9:\"Park City\";s:5:\"state\";s:2:\"UT\";s:3:\"zip\";s:10:\"84060-7257\";s:7:\"country\";s:2:\"US\";}s:11:\"pro_enabled\";b:0;s:10:\"last_login\";s:25:\"2019-03-21T02:09:26+00:00\";s:17:\"total_subscribers\";i:1;s:6:\"_links\";a:14:{i:0;a:4:{s:3:\"rel\";s:4:\"self\";s:4:\"href\";s:34:\"https://us7.api.mailchimp.com/3.0/\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:50:\"https://us7.api.mailchimp.com/schema/3.0/Root.json\";}i:1;a:5:{s:3:\"rel\";s:5:\"lists\";s:4:\"href\";s:39:\"https://us7.api.mailchimp.com/3.0/lists\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:62:\"https://us7.api.mailchimp.com/schema/3.0/Lists/Collection.json\";s:6:\"schema\";s:67:\"https://us7.api.mailchimp.com/schema/3.0/CollectionLinks/Lists.json\";}i:2;a:5:{s:3:\"rel\";s:7:\"reports\";s:4:\"href\";s:41:\"https://us7.api.mailchimp.com/3.0/reports\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:64:\"https://us7.api.mailchimp.com/schema/3.0/Reports/Collection.json\";s:6:\"schema\";s:69:\"https://us7.api.mailchimp.com/schema/3.0/CollectionLinks/Reports.json\";}i:3;a:5:{s:3:\"rel\";s:13:\"conversations\";s:4:\"href\";s:47:\"https://us7.api.mailchimp.com/3.0/conversations\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:70:\"https://us7.api.mailchimp.com/schema/3.0/Conversations/Collection.json\";s:6:\"schema\";s:75:\"https://us7.api.mailchimp.com/schema/3.0/CollectionLinks/Conversations.json\";}i:4;a:5:{s:3:\"rel\";s:9:\"campaigns\";s:4:\"href\";s:43:\"https://us7.api.mailchimp.com/3.0/campaigns\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:66:\"https://us7.api.mailchimp.com/schema/3.0/Campaigns/Collection.json\";s:6:\"schema\";s:71:\"https://us7.api.mailchimp.com/schema/3.0/CollectionLinks/Campaigns.json\";}i:5;a:5:{s:3:\"rel\";s:11:\"automations\";s:4:\"href\";s:45:\"https://us7.api.mailchimp.com/3.0/automations\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:68:\"https://us7.api.mailchimp.com/schema/3.0/Automations/Collection.json\";s:6:\"schema\";s:73:\"https://us7.api.mailchimp.com/schema/3.0/CollectionLinks/Automations.json\";}i:6;a:5:{s:3:\"rel\";s:9:\"templates\";s:4:\"href\";s:43:\"https://us7.api.mailchimp.com/3.0/templates\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:66:\"https://us7.api.mailchimp.com/schema/3.0/Templates/Collection.json\";s:6:\"schema\";s:71:\"https://us7.api.mailchimp.com/schema/3.0/CollectionLinks/Templates.json\";}i:7;a:4:{s:3:\"rel\";s:12:\"file-manager\";s:4:\"href\";s:46:\"https://us7.api.mailchimp.com/3.0/file-manager\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:67:\"https://us7.api.mailchimp.com/schema/3.0/FileManager/Namespace.json\";}i:8;a:4:{s:3:\"rel\";s:15:\"authorized-apps\";s:4:\"href\";s:49:\"https://us7.api.mailchimp.com/3.0/authorized-apps\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:71:\"https://us7.api.mailchimp.com/schema/3.0/AuthorizedApps/Collection.json\";}i:9;a:4:{s:3:\"rel\";s:7:\"batches\";s:4:\"href\";s:41:\"https://us7.api.mailchimp.com/3.0/batches\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:64:\"https://us7.api.mailchimp.com/schema/3.0/Batches/Collection.json\";}i:10;a:4:{s:3:\"rel\";s:16:\"template-folders\";s:4:\"href\";s:50:\"https://us7.api.mailchimp.com/3.0/template-folders\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:72:\"https://us7.api.mailchimp.com/schema/3.0/TemplateFolders/Collection.json\";}i:11;a:4:{s:3:\"rel\";s:16:\"campaign-folders\";s:4:\"href\";s:50:\"https://us7.api.mailchimp.com/3.0/campaign-folders\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:72:\"https://us7.api.mailchimp.com/schema/3.0/CampaignFolders/Collection.json\";}i:12;a:4:{s:3:\"rel\";s:9:\"ecommerce\";s:4:\"href\";s:43:\"https://us7.api.mailchimp.com/3.0/ecommerce\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:65:\"https://us7.api.mailchimp.com/schema/3.0/Ecommerce/Namespace.json\";}i:13;a:4:{s:3:\"rel\";s:4:\"ping\";s:4:\"href\";s:38:\"https://us7.api.mailchimp.com/3.0/ping\";s:6:\"method\";s:3:\"GET\";s:12:\"targetSchema\";s:60:\"https://us7.api.mailchimp.com/schema/3.0/Ping/Namespace.json\";}}}}\";','yes'),(63804,'mailchimp-woocommerce-sync.orders.completed_at','1552853980','yes'),(63805,'mailchimp-woocommerce-sync.completed_at','1552853980','yes'),(63851,'_transient_timeout_wc_shipping_method_count_0_1552854651','1555446738','no'),(63852,'_transient_wc_shipping_method_count_0_1552854651','2','no'),(63843,'_transient_timeout_wc_shipping_method_count_0_1552854501','1555446610','no'),(63844,'_transient_wc_shipping_method_count_0_1552854501','2','no'),(64471,'_transient_timeout_wc_shipping_method_count_0_1552855060','1555554506','no'),(64472,'_transient_wc_shipping_method_count_0_1552855060','2','no'),(65092,'_pum_installed_themes','a:5:{i:0;s:8:\"lightbox\";i:1;s:15:\"enterprise-blue\";i:2;s:9:\"hello-box\";i:3;s:12:\"cutting-edge\";i:4;s:13:\"framed-border\";}','yes'),(65093,'pum_completed_upgrades','a:1:{i:0;s:16:\"core-v1_8-themes\";}','yes'),(65094,'pum_reviews_installed_on','2019-03-20 15:33:05','yes'),(65095,'_pum_installed','1','yes'),(65096,'pum_privacy_cookie_list','a:2:{s:7:\"cookies\";a:0:{}s:9:\"timestamp\";i:1553117585;}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=652 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','page_landing.php'),(6,2,'_edit_lock','1546542918:1'),(7,7,'_wp_attached_file','2013/12/IAITD2.gif'),(8,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:420;s:4:\"file\";s:18:\"2013/12/IAITD2.gif\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"IAITD2-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"IAITD2-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"IAITD2-600x280.gif\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"IAITD2-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"IAITD2-300x140.gif\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"mini-thumbnail\";a:4:{s:4:\"file\";s:16:\"IAITD2-75x75.gif\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"small-thumbnail\";a:4:{s:4:\"file\";s:18:\"IAITD2-110x110.gif\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9,7,'_wp_attachment_image_alt','It\'s All In The Details'),(10,2,'_edit_last','1'),(11,9,'_wp_attached_file','2013/12/WP-AS-Header.png'),(12,9,'_wp_attachment_context','custom-header'),(13,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2013/12/WP-AS-Header.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"WP-AS-Header-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"WP-AS-Header-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"WP-AS-Header-600x83.png\";s:5:\"width\";i:600;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"WP-AS-Header-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"WP-AS-Header-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"WP-AS-Header-1024x142.png\";s:5:\"width\";i:1024;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"mini-thumbnail\";a:4:{s:4:\"file\";s:22:\"WP-AS-Header-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"small-thumbnail\";a:4:{s:4:\"file\";s:24:\"WP-AS-Header-110x110.png\";s:5:\"width\";i:110;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14,9,'_wp_attachment_is_custom_header','blissful'),(15,10,'_edit_last','1'),(16,10,'_edit_lock','1387586705:1'),(114,36,'_wp_page_template','default'),(113,36,'_edit_lock','1552792448:1'),(112,36,'_edit_last','1'),(111,34,'_wp_page_template','default'),(110,34,'_edit_lock','1546543026:1'),(109,34,'_edit_last','1'),(397,183,'_wp_attachment_is_custom_header','boss-pro'),(40,17,'_edit_last','1'),(39,2,'_genesis_layout','full-width-content'),(41,17,'_edit_lock','1547863098:1'),(42,17,'_wp_page_template','default'),(43,20,'_edit_last','1'),(44,20,'_edit_lock','1546543038:1'),(45,20,'_wp_page_template','default'),(46,22,'_edit_last','1'),(47,22,'_edit_lock','1552792408:1'),(48,22,'_wp_page_template','default'),(49,24,'_edit_last','1'),(50,24,'_edit_lock','1546992463:1'),(51,24,'_wp_page_template','default'),(52,26,'_edit_last','1'),(53,26,'_edit_lock','1395532636:1'),(54,26,'_wp_page_template','default'),(55,28,'_menu_item_type','post_type'),(56,28,'_menu_item_menu_item_parent','0'),(57,28,'_menu_item_object_id','24'),(58,28,'_menu_item_object','page'),(59,28,'_menu_item_target',''),(60,28,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(61,28,'_menu_item_xfn',''),(62,28,'_menu_item_url',''),(394,183,'_wp_attachment_context','custom-header'),(395,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:150;s:4:\"file\";s:42:\"2019/01/cropped-Annieversal-SiteHeader.png\";s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"cropped-Annieversal-SiteHeader-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-Annieversal-SiteHeader-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-Annieversal-SiteHeader-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(396,183,'_wp_attachment_custom_header_last_used_boss-pro','1546562996'),(393,183,'_wp_attached_file','2019/01/cropped-Annieversal-SiteHeader.png'),(82,31,'_menu_item_type','post_type'),(83,31,'_menu_item_menu_item_parent','0'),(84,31,'_menu_item_object_id','17'),(85,31,'_menu_item_object','page'),(86,31,'_menu_item_target',''),(87,31,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(88,31,'_menu_item_xfn',''),(89,31,'_menu_item_url',''),(154,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1008;s:6:\"height\";i:668;s:4:\"file\";s:28:\"2013/12/screen-capture-2.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"screen-capture-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-540x340.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:28:\"screen-capture-2-115x115.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(153,51,'_wp_attached_file','2013/12/screen-capture-2.jpg'),(152,50,'_edit_lock','1477517768:1'),(151,50,'_edit_last','1'),(138,42,'_wp_attachment_context','custom-header'),(137,42,'_wp_attached_file','2013/12/WP-AS-HeaderSmaller.png'),(139,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:60;s:4:\"file\";s:31:\"2013/12/WP-AS-HeaderSmaller.png\";s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"WP-AS-HeaderSmaller-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"WP-AS-HeaderSmaller-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"WP-AS-HeaderSmaller-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"WP-AS-HeaderSmaller-300x56.png\";s:5:\"width\";i:300;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:30:\"WP-AS-HeaderSmaller-115x60.png\";s:5:\"width\";i:115;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(140,42,'_wp_attachment_is_custom_header','minimum-pro'),(363,117,'_genesis_scripts_body_position','bottom'),(391,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:150;s:4:\"file\";s:34:\"2019/01/Annieversal-SiteHeader.png\";s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"Annieversal-SiteHeader-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Annieversal-SiteHeader-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Annieversal-SiteHeader-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(390,181,'_wp_attached_file','2019/01/Annieversal-SiteHeader.png'),(388,179,'_menu_item_url',''),(387,179,'_menu_item_xfn',''),(155,51,'_wp_attachment_image_alt','Alter Creations Website'),(301,145,'_wp_attached_file','2013/12/Screen-Shot-2016-07-29-at-12.05.22-PM.png'),(157,54,'_edit_last','1'),(158,54,'_edit_lock','1477518313:1'),(159,55,'_wp_attached_file','2013/12/ForLoveTailoring.jpg'),(160,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:671;s:4:\"file\";s:28:\"2013/12/ForLoveTailoring.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"ForLoveTailoring-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"ForLoveTailoring-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"ForLoveTailoring-600x499.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ForLoveTailoring-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ForLoveTailoring-500x415.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"ForLoveTailoring-540x340.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:28:\"ForLoveTailoring-115x115.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(161,55,'_wp_attachment_image_alt','For The Love Of Tailoring Blog'),(162,57,'_edit_last','1'),(163,57,'_edit_lock','1477518291:1'),(164,58,'_wp_attached_file','2013/12/CalanthaOrganics.jpg'),(165,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:920;s:6:\"height\";i:625;s:4:\"file\";s:28:\"2013/12/CalanthaOrganics.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"CalanthaOrganics-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"CalanthaOrganics-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"CalanthaOrganics-600x408.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"CalanthaOrganics-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"CalanthaOrganics-500x339.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"CalanthaOrganics-540x340.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:28:\"CalanthaOrganics-115x115.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(166,58,'_wp_attachment_image_alt','Calantha Organics Website'),(167,57,'_thumbnail_id','58'),(168,60,'_edit_last','1'),(169,60,'_edit_lock','1469815822:1'),(170,61,'_wp_attached_file','2013/12/TRL.jpg'),(171,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:873;s:6:\"height\";i:591;s:4:\"file\";s:15:\"2013/12/TRL.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"TRL-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"TRL-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"TRL-600x406.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"TRL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"TRL-500x338.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:15:\"TRL-540x340.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:15:\"TRL-115x115.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(172,61,'_wp_attachment_image_alt','The Ranting Latina Blog'),(295,60,'_thumbnail_id','137'),(174,54,'_thumbnail_id','55'),(175,63,'_edit_last','1'),(176,63,'_edit_lock','1477518042:1'),(177,64,'_wp_attached_file','2013/12/Misfit1.jpg'),(178,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:939;s:6:\"height\";i:673;s:4:\"file\";s:19:\"2013/12/Misfit1.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Misfit1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Misfit1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Misfit1-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Misfit1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Misfit1-500x358.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:19:\"Misfit1-540x340.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:19:\"Misfit1-115x115.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(179,64,'_wp_attachment_image_alt','Adventures Of A Misfit Librarian-1'),(180,65,'_wp_attached_file','2013/12/Misfit2.jpg'),(181,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:821;s:6:\"height\";i:325;s:4:\"file\";s:19:\"2013/12/Misfit2.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Misfit2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Misfit2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Misfit2-600x238.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Misfit2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Misfit2-500x197.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:19:\"Misfit2-540x325.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:19:\"Misfit2-115x115.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(182,65,'_wp_attachment_image_alt','Adventures Of A Misfit Librarian-2'),(183,63,'_thumbnail_id','64'),(184,71,'_wp_attached_file','2013/12/CustomBlogDesign.png'),(185,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2013/12/CustomBlogDesign.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"CustomBlogDesign-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"CustomBlogDesign-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"CustomBlogDesign-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"CustomBlogDesign-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"CustomBlogDesign-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"CustomBlogDesign-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:28:\"CustomBlogDesign-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(186,72,'_wp_attached_file','2013/12/CustomBlogDesign1.png'),(187,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2013/12/CustomBlogDesign1.png\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"CustomBlogDesign1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"CustomBlogDesign1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"CustomBlogDesign1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:29:\"CustomBlogDesign1-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(188,73,'_wp_attached_file','2013/12/CustomBlogWidgets.png'),(189,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2013/12/CustomBlogWidgets.png\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"CustomBlogWidgets-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"CustomBlogWidgets-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"CustomBlogWidgets-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:29:\"CustomBlogWidgets-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(190,72,'_wp_attachment_image_alt','Custom Blog Design Options'),(191,73,'_wp_attachment_image_alt','Custom Blog Widgets'),(192,74,'_wp_attached_file','2013/12/BlogANDWidgets.png'),(193,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2013/12/BlogANDWidgets.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"BlogANDWidgets-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"BlogANDWidgets-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"BlogANDWidgets-600x212.png\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"BlogANDWidgets-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"BlogANDWidgets-500x176.png\";s:5:\"width\";i:500;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"BlogANDWidgets-540x300.png\";s:5:\"width\";i:540;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:26:\"BlogANDWidgets-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(194,74,'_wp_attachment_image_alt','Blog Design Packages'),(195,75,'_wp_attached_file','2013/12/BlogANDWidgets2.png'),(196,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2013/12/BlogANDWidgets2.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"BlogANDWidgets2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"BlogANDWidgets2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"BlogANDWidgets2-600x212.png\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"BlogANDWidgets2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"BlogANDWidgets2-500x176.png\";s:5:\"width\";i:500;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:27:\"BlogANDWidgets2-540x300.png\";s:5:\"width\";i:540;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:27:\"BlogANDWidgets2-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(197,75,'_wp_attachment_image_alt','AS-Blog Design Packages'),(198,77,'_wp_attached_file','2013/12/BlogExtras.png'),(199,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2013/12/BlogExtras.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"BlogExtras-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlogExtras-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"BlogExtras-600x141.png\";s:5:\"width\";i:600;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"BlogExtras-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlogExtras-500x117.png\";s:5:\"width\";i:500;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:22:\"BlogExtras-540x200.png\";s:5:\"width\";i:540;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:22:\"BlogExtras-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(200,77,'_wp_attachment_image_alt','Blog Design Extras'),(201,78,'_wp_attached_file','2013/12/SocialMediaExtras.png'),(202,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2013/12/SocialMediaExtras.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"SocialMediaExtras-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"SocialMediaExtras-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"SocialMediaExtras-600x141.png\";s:5:\"width\";i:600;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"SocialMediaExtras-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"SocialMediaExtras-500x117.png\";s:5:\"width\";i:500;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:29:\"SocialMediaExtras-540x200.png\";s:5:\"width\";i:540;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:29:\"SocialMediaExtras-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(203,78,'_wp_attachment_image_alt','Blog Design Social Media Extras'),(204,81,'_wp_attached_file','2013/12/LaptopBWSmaller.png'),(205,81,'_wp_attachment_context','custom-background'),(206,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1136;s:6:\"height\";i:646;s:4:\"file\";s:27:\"2013/12/LaptopBWSmaller.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"LaptopBWSmaller-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"LaptopBWSmaller-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"LaptopBWSmaller-600x341.png\";s:5:\"width\";i:600;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"LaptopBWSmaller-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"LaptopBWSmaller-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"LaptopBWSmaller-1024x582.png\";s:5:\"width\";i:1024;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:27:\"LaptopBWSmaller-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:27:\"LaptopBWSmaller-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(207,81,'_wp_attachment_is_custom_background','minimum-pro'),(208,82,'_wp_attached_file','2013/12/LaptopBWSmaller1.png'),(209,82,'_wp_attachment_context','custom-background'),(210,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1136;s:6:\"height\";i:646;s:4:\"file\";s:28:\"2013/12/LaptopBWSmaller1.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"LaptopBWSmaller1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"LaptopBWSmaller1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"LaptopBWSmaller1-600x341.png\";s:5:\"width\";i:600;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"LaptopBWSmaller1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"LaptopBWSmaller1-500x284.png\";s:5:\"width\";i:500;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"LaptopBWSmaller1-1024x582.png\";s:5:\"width\";i:1024;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"LaptopBWSmaller1-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:28:\"LaptopBWSmaller1-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(211,82,'_wp_attachment_is_custom_background','minimum-pro'),(212,83,'_wp_attached_file','2013/12/WorkplaceSmaller.png'),(213,83,'_wp_attachment_context','custom-background'),(214,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1096;s:4:\"file\";s:28:\"2013/12/WorkplaceSmaller.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"WorkplaceSmaller-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"WorkplaceSmaller-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"WorkplaceSmaller-600x411.png\";s:5:\"width\";i:600;s:6:\"height\";i:411;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"WorkplaceSmaller-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"WorkplaceSmaller-500x342.png\";s:5:\"width\";i:500;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"WorkplaceSmaller-1024x701.png\";s:5:\"width\";i:1024;s:6:\"height\";i:701;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"WorkplaceSmaller-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:28:\"WorkplaceSmaller-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(215,83,'_wp_attachment_is_custom_background','minimum-pro'),(216,84,'_wp_attached_file','2013/12/Workplace2Cropped.png'),(217,84,'_wp_attachment_context','custom-background'),(218,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:603;s:4:\"file\";s:29:\"2013/12/Workplace2Cropped.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Workplace2Cropped-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Workplace2Cropped-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Workplace2Cropped-600x226.png\";s:5:\"width\";i:600;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Workplace2Cropped-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Workplace2Cropped-500x188.png\";s:5:\"width\";i:500;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Workplace2Cropped-1024x385.png\";s:5:\"width\";i:1024;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:29:\"Workplace2Cropped-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:29:\"Workplace2Cropped-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(219,84,'_wp_attachment_is_custom_background','minimum-pro'),(220,85,'_wp_attached_file','2013/12/WorkplaceCropped2.png'),(221,85,'_wp_attachment_context','custom-background'),(222,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:871;s:4:\"file\";s:29:\"2013/12/WorkplaceCropped2.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"WorkplaceCropped2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"WorkplaceCropped2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"WorkplaceCropped2-600x261.png\";s:5:\"width\";i:600;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"WorkplaceCropped2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"WorkplaceCropped2-500x217.png\";s:5:\"width\";i:500;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"WorkplaceCropped2-1024x445.png\";s:5:\"width\";i:1024;s:6:\"height\";i:445;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:29:\"WorkplaceCropped2-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:29:\"WorkplaceCropped2-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(223,85,'_wp_attachment_is_custom_background','minimum-pro'),(224,86,'_wp_attached_file','2013/12/Workplace3.jpg'),(225,86,'_wp_attachment_context','custom-background'),(226,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2272;s:6:\"height\";i:1704;s:4:\"file\";s:22:\"2013/12/Workplace3.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"Workplace3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"Workplace3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"Workplace3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Workplace3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Workplace3-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Workplace3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:22:\"Workplace3-540x340.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:22:\"Workplace3-115x115.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:24:\"Canon PowerShot SX120 IS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:9:\"315532852\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(227,86,'_wp_attachment_is_custom_background','minimum-pro'),(228,22,'_thumbnail_id','83'),(365,2,'_genesis_scripts_body_position','bottom'),(230,87,'_wp_attached_file','2013/12/SOL-DesignOoptions.png'),(231,87,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:4:\"file\";s:30:\"2013/12/SOL-DesignOoptions.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"SOL-DesignOoptions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"SOL-DesignOoptions-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"SOL-DesignOoptions-600x212.png\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"SOL-DesignOoptions-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"SOL-DesignOoptions-500x176.png\";s:5:\"width\";i:500;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:30:\"SOL-DesignOoptions-540x300.png\";s:5:\"width\";i:540;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:30:\"SOL-DesignOoptions-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(250,92,'_soliloquy_image_link',''),(234,89,'_wp_attached_file','2013/12/SOL-Unique.png'),(235,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2013/12/SOL-Unique.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"SOL-Unique-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"SOL-Unique-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"SOL-Unique-600x212.png\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"SOL-Unique-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"SOL-Unique-500x176.png\";s:5:\"width\";i:500;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:22:\"SOL-Unique-540x300.png\";s:5:\"width\";i:540;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:22:\"SOL-Unique-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(236,87,'_soliloquy_image_link','http://annieversalstudios.com/get-started/design-options/'),(237,87,'_soliloquy_image_link_title','My Design Options'),(238,87,'_soliloquy_image_link_tab','0'),(239,87,'_wp_attachment_image_alt','Check Out My Design Options!'),(249,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2013/12/SOL-Espanol2.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"SOL-Espanol2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"SOL-Espanol2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"SOL-Espanol2-600x212.png\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"SOL-Espanol2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"SOL-Espanol2-500x176.png\";s:5:\"width\";i:500;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"SOL-Espanol2-540x300.png\";s:5:\"width\";i:540;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:24:\"SOL-Espanol2-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(248,92,'_wp_attached_file','2013/12/SOL-Espanol2.png'),(243,89,'_soliloquy_image_link',''),(244,89,'_soliloquy_image_link_title',''),(245,89,'_soliloquy_image_link_tab','0'),(246,89,'_wp_attachment_image_alt','Custom, Unique Blog Designs'),(247,10,'_soliloquy_settings','a:6:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:10:\"transition\";s:4:\"fade\";s:5:\"speed\";i:7000;s:8:\"duration\";i:600;s:9:\"preloader\";i:0;}'),(251,92,'_soliloquy_image_link_title',''),(252,92,'_soliloquy_image_link_tab','0'),(253,92,'_wp_attachment_image_alt','Designs in Spanish'),(254,93,'_wp_attached_file','2013/12/AnnieSmiles2.png'),(255,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:257;s:4:\"file\";s:24:\"2013/12/AnnieSmiles2.png\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"AnnieSmiles2-300x257.png\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"AnnieSmiles2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"AnnieSmiles2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:24:\"AnnieSmiles2-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(256,93,'_wp_attachment_image_alt','Annie - The Ranting Latina'),(272,117,'_wp_page_template','default'),(267,9,'_oembed_3d0151b99bc35b08d4701680c96f622f','{{unknown}}'),(271,117,'_edit_lock','1546542849:1'),(261,99,'_edit_last','1'),(262,99,'_edit_lock','1387604763:1'),(263,100,'_wp_attached_file','2013/12/TashaSigHLK.png'),(264,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2013/12/TashaSigHLK.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"TashaSigHLK-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"TashaSigHLK-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"TashaSigHLK-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"TashaSigHLK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"TashaSigHLK-500x250.png\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:23:\"TashaSigHLK-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:23:\"TashaSigHLK-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(265,100,'_wp_attachment_image_alt','Belleza Kisses Signature'),(266,99,'_thumbnail_id','100'),(270,117,'_edit_last','1'),(273,121,'_wp_attached_file','2014/03/StateBlog.png'),(274,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2014/03/StateBlog.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"StateBlog-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"StateBlog-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"StateBlog-600x212.png\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"StateBlog-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"StateBlog-500x176.png\";s:5:\"width\";i:500;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"StateBlog-540x300.png\";s:5:\"width\";i:540;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:21:\"StateBlog-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(275,123,'_wp_attached_file','2014/03/StarPlan.png'),(276,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:180;s:4:\"file\";s:20:\"2014/03/StarPlan.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"StarPlan-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"StarPlan-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"StarPlan-600x127.png\";s:5:\"width\";i:600;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"StarPlan-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"StarPlan-500x105.png\";s:5:\"width\";i:500;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:20:\"StarPlan-540x180.png\";s:5:\"width\";i:540;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:20:\"StarPlan-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(277,123,'_wp_attachment_image_alt','One (1) sixty minute video chat + a written recap of everything discussed + suggestions for goals + a marketing plan for your blog'),(278,124,'_wp_attached_file','2014/03/StellarPlan.png'),(279,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:180;s:4:\"file\";s:23:\"2014/03/StellarPlan.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"StellarPlan-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"StellarPlan-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"StellarPlan-600x127.png\";s:5:\"width\";i:600;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"StellarPlan-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"StellarPlan-500x105.png\";s:5:\"width\";i:500;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:23:\"StellarPlan-540x180.png\";s:5:\"width\";i:540;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"soliloquy-thumb\";a:4:{s:4:\"file\";s:23:\"StellarPlan-115x115.png\";s:5:\"width\";i:115;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(280,124,'_wp_attachment_image_alt','One (1) sixty minute video chat + a 60-minute follow-up call after a month + a written recap of everything discussed + suggestions for goals + a custom marketing plan for your blog'),(386,179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(385,179,'_menu_item_target',''),(384,179,'_menu_item_object','page'),(383,179,'_menu_item_object_id','175'),(382,179,'_menu_item_menu_item_parent','0'),(381,179,'_menu_item_type','post_type'),(293,137,'_wp_attached_file','2013/12/TRLASPortfolio.png'),(294,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1952;s:6:\"height\";i:1402;s:4:\"file\";s:26:\"2013/12/TRLASPortfolio.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"TRLASPortfolio-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"TRLASPortfolio-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"TRLASPortfolio-600x431.png\";s:5:\"width\";i:600;s:6:\"height\";i:431;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"TRLASPortfolio-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"TRLASPortfolio-500x359.png\";s:5:\"width\";i:500;s:6:\"height\";i:359;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"TRLASPortfolio-1024x735.png\";s:5:\"width\";i:1024;s:6:\"height\";i:735;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"TRLASPortfolio-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(296,139,'_wp_attached_file','2013/12/ACASPortfolip.png'),(297,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2232;s:6:\"height\";i:1404;s:4:\"file\";s:25:\"2013/12/ACASPortfolip.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"ACASPortfolip-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"ACASPortfolip-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"ACASPortfolip-600x377.png\";s:5:\"width\";i:600;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ACASPortfolip-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"ACASPortfolip-500x315.png\";s:5:\"width\";i:500;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"ACASPortfolip-1024x644.png\";s:5:\"width\";i:1024;s:6:\"height\";i:644;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:25:\"ACASPortfolip-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(298,143,'_wp_attached_file','2013/12/shot-20160729-26328-rvvx9o.png'),(299,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1816;s:4:\"file\";s:38:\"2013/12/shot-20160729-26328-rvvx9o.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"shot-20160729-26328-rvvx9o-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"shot-20160729-26328-rvvx9o-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"shot-20160729-26328-rvvx9o-600x851.png\";s:5:\"width\";i:600;s:6:\"height\";i:851;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"shot-20160729-26328-rvvx9o-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"shot-20160729-26328-rvvx9o-352x500.png\";s:5:\"width\";i:352;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"shot-20160729-26328-rvvx9o-768x1090.png\";s:5:\"width\";i:768;s:6:\"height\";i:1090;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"shot-20160729-26328-rvvx9o-722x1024.png\";s:5:\"width\";i:722;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:38:\"shot-20160729-26328-rvvx9o-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(300,143,'_wp_attachment_image_alt','Alter Creations 2016 Redesign'),(302,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1908;s:6:\"height\";i:806;s:4:\"file\";s:49:\"2013/12/Screen-Shot-2016-07-29-at-12.05.22-PM.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"Screen-Shot-2016-07-29-at-12.05.22-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2016-07-29-at-12.05.22-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2016-07-29-at-12.05.22-PM-600x253.png\";s:5:\"width\";i:600;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2016-07-29-at-12.05.22-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2016-07-29-at-12.05.22-PM-500x211.png\";s:5:\"width\";i:500;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2016-07-29-at-12.05.22-PM-768x324.png\";s:5:\"width\";i:768;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2016-07-29-at-12.05.22-PM-1024x433.png\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2016-07-29-at-12.05.22-PM-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(303,145,'_wp_attachment_image_alt','Alter Creations Site'),(304,50,'_thumbnail_id','145'),(305,147,'_wp_attached_file','2013/12/AC-Screenshot.jpeg'),(306,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:2502;s:4:\"file\";s:26:\"2013/12/AC-Screenshot.jpeg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"AC-Screenshot-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"AC-Screenshot-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"AC-Screenshot-600x1173.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:1173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"AC-Screenshot-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"AC-Screenshot-256x500.jpeg\";s:5:\"width\";i:256;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"AC-Screenshot-768x1501.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"AC-Screenshot-524x1024.jpeg\";s:5:\"width\";i:524;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"AC-Screenshot-540x340.jpeg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(307,147,'_wp_attachment_image_alt','AlterCreations.net'),(308,149,'_wp_attached_file','2013/12/BlogDesign.jpg'),(309,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2013/12/BlogDesign.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"BlogDesign-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"BlogDesign-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"BlogDesign-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"BlogDesign-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"BlogDesign-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BlogDesign-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"BlogDesign-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:22:\"BlogDesign-540x340.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(311,154,'_wp_attached_file','2019/01/Annieversal-Favi.png'),(312,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2019/01/Annieversal-Favi.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Annieversal-Favi-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Annieversal-Favi-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Annieversal-Favi-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Annieversal-Favi-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Annieversal-Favi-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"Annieversal-Favi-540x340.png\";s:5:\"width\";i:540;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(313,155,'_wp_attached_file','2019/01/cropped-Annieversal-Favi.png'),(314,155,'_wp_attachment_context','site-icon'),(315,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:36:\"2019/01/cropped-Annieversal-Favi.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-Annieversal-Favi-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"cropped-Annieversal-Favi-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:36:\"cropped-Annieversal-Favi-512x340.png\";s:5:\"width\";i:512;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:36:\"cropped-Annieversal-Favi-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:36:\"cropped-Annieversal-Favi-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:36:\"cropped-Annieversal-Favi-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:34:\"cropped-Annieversal-Favi-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(337,163,'_wp_attached_file','2019/01/AS-ReceiptBanner.jpg'),(338,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:760;s:6:\"height\";i:100;s:4:\"file\";s:28:\"2019/01/AS-ReceiptBanner.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"AS-ReceiptBanner-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"AS-ReceiptBanner-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"AS-ReceiptBanner-600x79.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:79;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"AS-ReceiptBanner-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AS-ReceiptBanner-500x66.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:28:\"AS-ReceiptBanner-600x100.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:28:\"AS-ReceiptBanner-600x100.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:28:\"AS-ReceiptBanner-700x100.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(339,164,'_wp_attached_file','2019/01/chastagner-thierry-1118352-unsplash.jpg'),(340,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:47:\"2019/01/chastagner-thierry-1118352-unsplash.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"chastagner-thierry-1118352-unsplash-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-600x700.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"boss_archive\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"boss_hero\";a:4:{s:4:\"file\";s:48:\"chastagner-thierry-1118352-unsplash-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:47:\"chastagner-thierry-1118352-unsplash-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(341,164,'_wp_attachment_image_alt','Annieversal Studios Home Sunflowers'),(343,166,'_wp_attached_file','2019/01/170916_ChristopherAnnie_294-e1546542824222.jpg'),(344,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:450;s:4:\"file\";s:54:\"2019/01/170916_ChristopherAnnie_294-e1546542824222.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"170916_ChristopherAnnie_294-e1546542824222-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"170916_ChristopherAnnie_294-e1546542824222-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"170916_ChristopherAnnie_294-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"170916_ChristopherAnnie_294-333x500.jpg\";s:5:\"width\";i:333;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"170916_ChristopherAnnie_294-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"170916_ChristopherAnnie_294-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:39:\"170916_ChristopherAnnie_294-600x700.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"boss_archive\";a:4:{s:4:\"file\";s:39:\"170916_ChristopherAnnie_294-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:39:\"170916_ChristopherAnnie_294-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"boss_hero\";a:4:{s:4:\"file\";s:40:\"170916_ChristopherAnnie_294-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:39:\"170916_ChristopherAnnie_294-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(345,166,'_wp_attachment_image_alt',''),(346,167,'_wp_attached_file','2019/01/Annieversal-AWeddingHead.jpg'),(347,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:2044;s:4:\"file\";s:36:\"2019/01/Annieversal-AWeddingHead.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-600x681.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-440x500.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-768x872.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:872;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Annieversal-AWeddingHead-902x1024.jpg\";s:5:\"width\";i:902;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-600x700.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"boss_archive\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"boss_hero\";a:4:{s:4:\"file\";s:37:\"Annieversal-AWeddingHead-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:36:\"Annieversal-AWeddingHead-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1505577275\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:23:\"christopheranniewedding\";}}}'),(348,168,'_wp_attached_file','2019/01/IMG_6296-1.jpg'),(349,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3264;s:6:\"height\";i:2448;s:4:\"file\";s:22:\"2019/01/IMG_6296-1.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"IMG_6296-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG_6296-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-600x700.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"boss_archive\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"boss_hero\";a:4:{s:4:\"file\";s:23:\"IMG_6296-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_6296-1-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1474125318\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00068306010928962\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(350,168,'_wp_attachment_image_alt',''),(361,166,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3265;s:6:\"height\";i:4898;s:4:\"file\";s:31:\"170916_ChristopherAnnie_294.jpg\";}}'),(362,17,'_genesis_scripts_body_position','bottom'),(364,24,'_genesis_scripts_body_position','bottom'),(366,175,'_edit_last','1'),(367,175,'_edit_lock','1553133917:1'),(368,175,'_oembed_759a5fd8192c127b008a706f682fb5be','{{unknown}}'),(369,175,'_oembed_3a9ac49857dc89190a013e79a871d3e1','{{unknown}}'),(370,175,'_wp_page_template','default'),(371,175,'_genesis_scripts_body_position','bottom'),(372,178,'_menu_item_type','custom'),(373,178,'_menu_item_menu_item_parent','0'),(374,178,'_menu_item_object_id','178'),(375,178,'_menu_item_object','custom'),(376,178,'_menu_item_target',''),(377,178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(378,178,'_menu_item_xfn',''),(379,178,'_menu_item_url','/shop'),(436,210,'_wp_attached_file','2019/01/AnnieversalStudios-Homepage-Ornaments.jpg'),(437,210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:49:\"2019/01/AnnieversalStudios-Homepage-Ornaments.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"AnnieversalStudios-Homepage-Ornaments-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-600x700.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"boss_archive\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"boss_hero\";a:4:{s:4:\"file\";s:50:\"AnnieversalStudios-Homepage-Ornaments-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Ornaments-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G965U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546964541\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(440,212,'_wp_attached_file','2019/01/AnnieversalStudios-Homepage-Painting2.jpg'),(441,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:891;s:4:\"file\";s:49:\"2019/01/AnnieversalStudios-Homepage-Painting2.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-600x446.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-500x371.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-768x570.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"AnnieversalStudios-Homepage-Painting2-1024x760.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-600x700.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"boss_archive\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"boss_hero\";a:4:{s:4:\"file\";s:50:\"AnnieversalStudios-Homepage-Painting2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:49:\"AnnieversalStudios-Homepage-Painting2-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G965U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(444,214,'_wp_attached_file','2019/01/AnnieversalStudios-Homepage-SunflowerPyro.jpg'),(445,214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:53:\"2019/01/AnnieversalStudios-Homepage-SunflowerPyro.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"AnnieversalStudios-Homepage-SunflowerPyro-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"boss_featured_posts\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-600x700.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"boss_archive\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-900x500.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"boss_entry_grid\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"boss_hero\";a:4:{s:4:\"file\";s:54:\"AnnieversalStudios-Homepage-SunflowerPyro-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"gts-thumbnail\";a:4:{s:4:\"file\";s:53:\"AnnieversalStudios-Homepage-SunflowerPyro-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G965U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"4.3\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0026737967914439\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(448,219,'_edit_last','1'),(449,219,'_wp_page_template','default'),(450,219,'_genesis_scripts_body_position','bottom'),(451,219,'_edit_lock','1552791733:1'),(452,22,'_wp_trash_meta_status','draft'),(453,22,'_wp_trash_meta_time','1552792565'),(454,22,'_wp_desired_post_slug','get-started'),(455,34,'_wp_trash_meta_status','draft'),(456,34,'_wp_trash_meta_time','1552792565'),(457,34,'_wp_desired_post_slug','design-options'),(458,20,'_wp_trash_meta_status','draft'),(459,20,'_wp_trash_meta_time','1552792565'),(460,20,'_wp_desired_post_slug','portfolio'),(461,26,'_wp_trash_meta_status','draft'),(462,26,'_wp_trash_meta_time','1552792565'),(463,26,'_wp_desired_post_slug','resources'),(464,2,'_wp_trash_meta_status','draft'),(465,2,'_wp_trash_meta_time','1552792565'),(466,2,'_wp_desired_post_slug','welcome'),(467,36,'_wp_trash_meta_status','draft'),(468,36,'_wp_trash_meta_time','1552792592'),(469,36,'_wp_desired_post_slug','terms-conditions'),(470,117,'_wp_trash_meta_status','draft'),(471,117,'_wp_trash_meta_time','1552792616'),(472,117,'_wp_desired_post_slug','blog-consultation'),(473,226,'_edit_last','1'),(474,226,'_edit_lock','1552854138:1'),(475,226,'discount_type','percent'),(476,226,'coupon_amount','10'),(477,226,'individual_use','yes'),(478,226,'product_ids',''),(479,226,'exclude_product_ids',''),(480,226,'usage_limit','0'),(481,226,'usage_limit_per_user','1'),(482,226,'limit_usage_to_x_items','0'),(483,226,'usage_count','0'),(484,226,'date_expires',NULL),(485,226,'expiry_date',''),(486,226,'free_shipping','no'),(487,226,'product_categories','a:0:{}'),(488,226,'exclude_product_categories','a:0:{}'),(489,226,'exclude_sale_items','yes'),(490,226,'minimum_amount',''),(491,226,'maximum_amount',''),(492,226,'customer_email','a:0:{}'),(493,227,'_edit_last','1'),(494,227,'_edit_lock','1552854198:1'),(495,227,'discount_type','percent'),(496,227,'coupon_amount','10'),(497,227,'individual_use','yes'),(498,227,'product_ids',''),(499,227,'exclude_product_ids',''),(500,227,'usage_limit','0'),(501,227,'usage_limit_per_user','1'),(502,227,'limit_usage_to_x_items','0'),(503,227,'usage_count','0'),(504,227,'date_expires',NULL),(505,227,'expiry_date',''),(506,227,'free_shipping','no'),(507,227,'product_categories','a:0:{}'),(508,227,'exclude_product_categories','a:0:{}'),(509,227,'exclude_sale_items','yes'),(510,227,'minimum_amount',''),(511,227,'maximum_amount',''),(512,227,'customer_email','a:0:{}'),(513,230,'_edit_last','1'),(514,230,'_edit_lock','1552940936:1'),(515,231,'_edit_last','1'),(516,231,'_edit_lock','1552955474:1'),(517,231,'discount_type','percent'),(518,231,'coupon_amount','10'),(519,231,'individual_use','yes'),(520,231,'product_ids',''),(521,231,'exclude_product_ids',''),(522,231,'usage_limit','0'),(523,231,'usage_limit_per_user','1'),(524,231,'limit_usage_to_x_items','0'),(525,231,'usage_count','0'),(526,231,'date_expires',NULL),(527,231,'expiry_date',''),(528,231,'free_shipping','no'),(529,231,'product_categories','a:0:{}'),(530,231,'exclude_product_categories','a:0:{}'),(531,231,'exclude_sale_items','yes'),(532,231,'minimum_amount',''),(533,231,'maximum_amount',''),(534,231,'customer_email','a:0:{}'),(535,232,'_edit_last','1'),(536,232,'_edit_lock','1552957503:1'),(537,232,'discount_type','percent'),(538,232,'coupon_amount','10'),(539,232,'individual_use','yes'),(540,232,'product_ids',''),(541,232,'exclude_product_ids',''),(542,232,'usage_limit','0'),(543,232,'usage_limit_per_user','1'),(544,232,'limit_usage_to_x_items','0'),(545,232,'usage_count','0'),(546,232,'date_expires',NULL),(547,232,'expiry_date',''),(548,232,'free_shipping','no'),(549,232,'product_categories','a:0:{}'),(550,232,'exclude_product_categories','a:0:{}'),(551,232,'exclude_sale_items','yes'),(552,232,'minimum_amount',''),(553,232,'maximum_amount',''),(554,232,'customer_email','a:0:{}'),(555,233,'_edit_last','1'),(556,233,'_edit_lock','1553117592:1'),(557,233,'_wp_page_template','default'),(558,233,'_genesis_scripts_body_position','bottom'),(559,235,'_edit_last','1'),(560,235,'_edit_lock','1552963067:1'),(561,235,'_wp_page_template','default'),(562,235,'_genesis_scripts_body_position','bottom'),(563,238,'_edit_last','1'),(564,238,'_edit_lock','1552963763:1'),(565,238,'_wp_page_template','default'),(566,238,'_genesis_scripts_body_position','bottom'),(567,240,'_edit_last','1'),(568,240,'_edit_lock','1552964103:1'),(569,240,'_wp_trash_meta_status','draft'),(570,240,'_wp_trash_meta_time','1552964130'),(571,240,'_wp_desired_post_slug',''),(572,243,'_edit_last','1'),(573,243,'_edit_lock','1553117358:1'),(574,243,'_wp_page_template','default'),(575,243,'_genesis_scripts_body_position','bottom'),(576,246,'_edit_last','1'),(577,246,'_edit_lock','1553114207:1'),(578,246,'_wp_trash_meta_status','draft'),(579,246,'_wp_trash_meta_time','1553114212'),(580,246,'_wp_desired_post_slug',''),(641,261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(640,261,'_menu_item_target',''),(639,261,'_menu_item_object','custom'),(638,261,'_menu_item_object_id','261'),(637,261,'_menu_item_menu_item_parent','0'),(636,261,'_menu_item_type','custom'),(590,250,'_menu_item_type','post_type'),(591,250,'_menu_item_menu_item_parent','261'),(592,250,'_menu_item_object_id','235'),(593,250,'_menu_item_object','page'),(594,250,'_menu_item_target',''),(595,250,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(596,250,'_menu_item_xfn',''),(597,250,'_menu_item_url',''),(608,253,'_pum_built_in','default-theme'),(599,251,'_menu_item_type','post_type'),(600,251,'_menu_item_menu_item_parent','261'),(601,251,'_menu_item_object_id','243'),(602,251,'_menu_item_object','page'),(603,251,'_menu_item_target',''),(604,251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(605,251,'_menu_item_xfn',''),(606,251,'_menu_item_url',''),(609,253,'_pum_default_theme','1'),(610,253,'popup_theme_data_version','3'),(611,253,'popup_theme_settings','a:67:{s:24:\"overlay_background_color\";s:7:\"#ffffff\";s:26:\"overlay_background_opacity\";i:100;s:13:\"atc_promotion\";N;s:17:\"container_padding\";i:18;s:23:\"container_border_radius\";N;s:26:\"container_background_color\";s:7:\"#f9f9f9\";s:28:\"container_background_opacity\";i:100;s:22:\"container_border_style\";s:4:\"none\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";i:1;s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";i:23;s:30:\"container_boxshadow_horizontal\";i:1;s:28:\"container_boxshadow_vertical\";i:1;s:24:\"container_boxshadow_blur\";i:3;s:26:\"container_boxshadow_spread\";N;s:25:\"container_boxshadow_inset\";s:2:\"no\";s:16:\"title_font_color\";s:7:\"#000000\";s:15:\"title_font_size\";i:32;s:17:\"title_line_height\";i:36;s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";i:400;s:16:\"title_font_style\";s:6:\"normal\";s:16:\"title_text_align\";s:4:\"left\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";i:23;s:27:\"title_textshadow_horizontal\";N;s:25:\"title_textshadow_vertical\";N;s:21:\"title_textshadow_blur\";N;s:18:\"content_font_color\";s:7:\"#8c8c8c\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";i:400;s:18:\"content_font_style\";s:7:\"inherit\";s:10:\"close_text\";s:5:\"CLOSE\";s:22:\"close_position_outside\";b:0;s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";N;s:21:\"close_position_bottom\";N;s:19:\"close_position_left\";N;s:20:\"close_position_right\";N;s:13:\"close_padding\";i:8;s:12:\"close_height\";N;s:11:\"close_width\";N;s:19:\"close_border_radius\";N;s:22:\"close_background_color\";s:7:\"#00b7cd\";s:24:\"close_background_opacity\";i:100;s:16:\"close_font_color\";s:7:\"#ffffff\";s:15:\"close_font_size\";i:12;s:17:\"close_line_height\";i:36;s:17:\"close_font_family\";s:7:\"inherit\";s:17:\"close_font_weight\";i:400;s:16:\"close_font_style\";s:7:\"inherit\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";i:1;s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";i:23;s:26:\"close_boxshadow_horizontal\";i:1;s:24:\"close_boxshadow_vertical\";i:1;s:20:\"close_boxshadow_blur\";i:3;s:22:\"close_boxshadow_spread\";N;s:21:\"close_boxshadow_inset\";s:2:\"no\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";i:23;s:27:\"close_textshadow_horizontal\";N;s:25:\"close_textshadow_vertical\";N;s:21:\"close_textshadow_blur\";N;}'),(612,254,'popup_theme_settings','a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"60\";s:17:\"container_padding\";s:2:\"18\";s:26:\"container_background_color\";s:7:\"#ffffff\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:5:\"solid\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";s:1:\"8\";s:23:\"container_border_radius\";s:1:\"3\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:1:\"0\";s:24:\"container_boxshadow_blur\";s:2:\"30\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:3:\"100\";s:16:\"title_font_color\";s:7:\"#000000\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"32\";s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#000000\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:7:\"&times;\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:3:\"-13\";s:19:\"close_position_left\";s:1:\"0\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:3:\"-13\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:2:\"26\";s:11:\"close_width\";s:2:\"26\";s:22:\"close_background_color\";s:7:\"#000000\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#ffffff\";s:17:\"close_line_height\";s:2:\"24\";s:15:\"close_font_size\";s:2:\"24\";s:17:\"close_font_family\";s:5:\"Arial\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:5:\"solid\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"2\";s:19:\"close_border_radius\";s:2:\"26\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:2:\"15\";s:22:\"close_boxshadow_spread\";s:1:\"1\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"75\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}'),(613,254,'popup_theme_data_version','3'),(614,254,'_pum_built_in','lightbox'),(615,255,'popup_theme_settings','a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"70\";s:17:\"container_padding\";s:2:\"28\";s:26:\"container_background_color\";s:7:\"#ffffff\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:4:\"none\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";s:1:\"1\";s:23:\"container_border_radius\";s:1:\"5\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:2:\"10\";s:24:\"container_boxshadow_blur\";s:2:\"25\";s:26:\"container_boxshadow_spread\";s:1:\"4\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:2:\"50\";s:16:\"title_font_color\";s:7:\"#315b7c\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"34\";s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#2d2d2d\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:1:\"8\";s:19:\"close_position_left\";s:1:\"0\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:1:\"8\";s:13:\"close_padding\";s:1:\"4\";s:12:\"close_height\";s:2:\"28\";s:11:\"close_width\";s:2:\"28\";s:22:\"close_background_color\";s:7:\"#315b7c\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#ffffff\";s:17:\"close_line_height\";s:2:\"20\";s:15:\"close_font_size\";s:2:\"20\";s:17:\"close_font_family\";s:15:\"Times New Roman\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:2:\"42\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:1:\"0\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"23\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}'),(616,255,'popup_theme_data_version','3'),(617,255,'_pum_built_in','enterprise-blue'),(618,256,'popup_theme_settings','a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"75\";s:17:\"container_padding\";s:2:\"30\";s:26:\"container_background_color\";s:7:\"#ffffff\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:5:\"solid\";s:22:\"container_border_color\";s:7:\"#81d742\";s:22:\"container_border_width\";s:2:\"14\";s:23:\"container_border_radius\";s:2:\"80\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:1:\"0\";s:24:\"container_boxshadow_blur\";s:1:\"0\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:1:\"0\";s:16:\"title_font_color\";s:7:\"#2d2d2d\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"32\";s:17:\"title_font_family\";s:10:\"Montserrat\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#2d2d2d\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:3:\"-30\";s:19:\"close_position_left\";s:3:\"-30\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:3:\"-30\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:1:\"0\";s:11:\"close_width\";s:1:\"0\";s:22:\"close_background_color\";s:7:\"#ffffff\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#2d2d2d\";s:17:\"close_line_height\";s:2:\"28\";s:15:\"close_font_size\";s:2:\"32\";s:17:\"close_font_family\";s:15:\"Times New Roman\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:2:\"28\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:1:\"0\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"23\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}'),(619,256,'popup_theme_data_version','3'),(620,256,'_pum_built_in','hello-box'),(621,257,'popup_theme_settings','a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"50\";s:17:\"container_padding\";s:2:\"18\";s:26:\"container_background_color\";s:7:\"#1e73be\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:4:\"none\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";s:1:\"1\";s:23:\"container_border_radius\";s:1:\"0\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:2:\"10\";s:24:\"container_boxshadow_blur\";s:2:\"25\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:2:\"50\";s:16:\"title_font_color\";s:7:\"#ffffff\";s:17:\"title_line_height\";s:2:\"28\";s:15:\"title_font_size\";s:2:\"26\";s:17:\"title_font_family\";s:10:\"Sans-Serif\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#ffffff\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:1:\"0\";s:19:\"close_position_left\";s:1:\"0\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:1:\"0\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:2:\"24\";s:11:\"close_width\";s:2:\"24\";s:22:\"close_background_color\";s:7:\"#eeee22\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#1e73be\";s:17:\"close_line_height\";s:2:\"24\";s:15:\"close_font_size\";s:2:\"32\";s:17:\"close_font_family\";s:15:\"Times New Roman\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:1:\"0\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:2:\"-1\";s:24:\"close_boxshadow_vertical\";s:1:\"1\";s:20:\"close_boxshadow_blur\";s:1:\"1\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"10\";s:27:\"close_textshadow_horizontal\";s:2:\"-1\";s:25:\"close_textshadow_vertical\";s:1:\"1\";s:21:\"close_textshadow_blur\";s:1:\"1\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"10\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}'),(622,257,'popup_theme_data_version','3'),(623,257,'_pum_built_in','cutting-edge'),(624,258,'popup_theme_settings','a:67:{s:24:\"overlay_background_color\";s:7:\"#ffffff\";s:26:\"overlay_background_opacity\";s:2:\"50\";s:17:\"container_padding\";s:2:\"18\";s:26:\"container_background_color\";s:7:\"#fffbef\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:6:\"outset\";s:22:\"container_border_color\";s:7:\"#dd3333\";s:22:\"container_border_width\";s:2:\"20\";s:23:\"container_border_radius\";s:1:\"0\";s:25:\"container_boxshadow_inset\";s:3:\"yes\";s:30:\"container_boxshadow_horizontal\";s:1:\"1\";s:28:\"container_boxshadow_vertical\";s:1:\"1\";s:24:\"container_boxshadow_blur\";s:1:\"3\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:2:\"97\";s:16:\"title_font_color\";s:7:\"#000000\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"32\";s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#2d2d2d\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:3:\"-20\";s:19:\"close_position_left\";s:3:\"-20\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:3:\"-20\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:2:\"20\";s:11:\"close_width\";s:2:\"20\";s:22:\"close_background_color\";s:7:\"#000000\";s:24:\"close_background_opacity\";s:2:\"55\";s:16:\"close_font_color\";s:7:\"#ffffff\";s:17:\"close_line_height\";s:2:\"18\";s:15:\"close_font_size\";s:2:\"16\";s:17:\"close_font_family\";s:6:\"Tahoma\";s:17:\"close_font_weight\";s:3:\"700\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:1:\"0\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:1:\"0\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"23\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}'),(625,258,'popup_theme_data_version','3'),(626,258,'_pum_built_in','framed-border'),(645,263,'_edit_lock','1553193967:1'),(642,261,'_menu_item_xfn',''),(643,261,'_menu_item_url','#'),(646,263,'_wp_trash_meta_status','publish'),(647,263,'_wp_trash_meta_time','1553194002'),(648,264,'_wp_trash_meta_status','publish'),(649,264,'_wp_trash_meta_time','1553194016'),(650,265,'_wp_trash_meta_status','publish'),(651,265,'_wp_trash_meta_time','1553194055');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=266 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (136,1,'2015-09-04 16:24:47','2015-09-04 22:24:47','<h4>NEW REDESIGN:</h4>\n...\n<h4>PREVIOUS REDESIGN:</h4>\n<img class=\"size-full wp-image-61 alignnone\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TRL.jpg\" alt=\"The Ranting Latina Blog\" width=\"873\" height=\"591\" />\n\nThis is my blog,<strong> <a href=\"http://therantinglatina.com/\">The Ranting Latina</a></strong>!!! It features interactive social media icons, plus a host of other things I\'m a fan of :). If you like what you see on it, feel free to ask for it and I shall make it happen on your design.\n\n(This IS a Wordpress site, but I\'ve been able to replicate many of the features here on Blogger sites.)','The Ranting Latina','','inherit','closed','closed','','60-autosave-v1','','','2015-09-04 16:24:47','2015-09-04 22:24:47','',60,'http://annieversalstudios.com/2015/09/60-autosave-v1/',0,'revision','',0),(2,1,'2013-12-15 19:24:15','2013-12-15 19:24:15','<center>\r\n<p style=\"text-align: center;\">[soliloquy id=\"10\"]</p>\r\n\r\n<h3 style=\"text-align: center;\">You\'re AWESOME and UNIQUE.</h3>\r\n<p style=\"text-align: left;\"><strong>So why settle for a so-so blog/website when you can have a design by me?</strong></p>\r\n<p style=\"text-align: left;\">After all, I <em>am</em> looking to expand my portfolio*!</p>\r\n<p style=\"text-align: left;\">*meaning I\'ll go above and beyond for much less than those others who charge an arm and a leg for blah designs...</p>\r\n<strong>So browse through my site, get inspired, and let\'s work together!</strong>\r\n\r\n</center>','Welcome!','','trash','open','open','','welcome__trashed','','','2019-03-16 21:16:05','2019-03-17 03:16:05','',0,'http://annieversalstudios.com/?page_id=2',0,'page','',0),(95,1,'2013-12-20 22:27:41','2013-12-21 05:27:41','','Welcome!','','inherit','closed','closed','','2-revision-v1','','','2013-12-20 22:27:41','2013-12-21 05:27:41','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(91,1,'2013-12-20 17:43:10','2013-12-21 00:43:10','<center>[soliloquy id=\"10\"]</center>','Welcome!','','inherit','closed','closed','','2-revision-v1','','','2013-12-20 17:43:10','2013-12-21 00:43:10','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(8,1,'2013-12-16 19:12:38','2013-12-16 19:12:38','<center><a href=\"http://annieversalstudios.com\"><img class=\"aligncenter size-full wp-image-7\" alt=\"It\'s All In The Details\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/IAITD2.gif\" width=\"900\" height=\"420\" /></a></center>','','','inherit','open','open','','2-revision-v1','','','2013-12-16 19:12:38','2013-12-16 19:12:38','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(9,1,'2013-12-16 19:21:34','2013-12-16 19:21:34','http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-Header.png','WP-AS-Header.png','','inherit','open','open','','wp-as-header-png','','','2013-12-16 19:21:34','2013-12-16 19:21:34','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-Header.png',0,'attachment','image/png',0),(7,1,'2013-12-16 19:10:57','2013-12-16 19:10:57','','IAITD2','','inherit','open','open','','iaitd2','','','2013-12-16 19:10:57','2013-12-16 19:10:57','',2,'http://annieversalstudios.com/wp-content/uploads/2013/12/IAITD2.gif',0,'attachment','image/gif',0),(82,1,'2013-12-20 12:41:12','2013-12-20 19:41:12','http://annieversalstudios.com/wp-content/uploads/2013/12/LaptopBWSmaller1.png','LaptopBWSmaller1.png','','inherit','closed','closed','','laptopbwsmaller1-png','','','2013-12-20 12:41:12','2013-12-20 19:41:12','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/LaptopBWSmaller1.png',0,'attachment','image/png',0),(10,1,'2013-12-20 17:38:09','2013-12-21 00:38:09','','Home 1','','publish','closed','closed','','home-1','','','2013-12-20 17:45:04','2013-12-21 00:45:04','',0,'http://annieversalstudios.com/?post_type=soliloquy&#038;p=10',0,'soliloquy','',0),(34,1,'2013-12-17 23:43:09','2013-12-18 06:43:09','<h3 style=\"text-align: center;\"><strong>PACKAGES</strong></h3>\r\n<img class=\"aligncenter size-full wp-image-75\" alt=\"AS-Blog Design Packages\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogANDWidgets2.png\" width=\"850\" height=\"300\" />\r\n<h3 style=\"text-align: center;\"><strong>BLOG EXTRAS</strong></h3>\r\n[caption id=\"attachment_77\" align=\"aligncenter\" width=\"850\"]<img class=\"size-full wp-image-77 \" alt=\"Blog Design Extras\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogExtras.png\" width=\"850\" height=\"200\" /> * You can even ask for them to be interactive, at NO extra cost![/caption]\r\n<h3 style=\"text-align: center;\"><strong>SOCIAL MEDIA EXTRAS</strong></h3>\r\n[caption id=\"attachment_78\" align=\"aligncenter\" width=\"850\"]<img class=\"size-full wp-image-78\" alt=\"Blog Design Social Media Extras\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/SocialMediaExtras.png\" width=\"850\" height=\"200\" /> * You can even ask for them to be interactive, at NO extra cost![/caption]','Design Options','','trash','closed','closed','','design-options__trashed','','','2019-03-16 21:16:05','2019-03-17 03:16:05','',22,'http://annieversalstudios.com/?page_id=34',0,'page','',0),(15,1,'2013-12-17 23:26:26','2013-12-17 23:26:26','<center><a href=\"http://annieversalstudios.com\"><img class=\"aligncenter size-full wp-image-7\" alt=\"It\'s All In The Details\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/IAITD2.gif\" width=\"900\" height=\"420\" /></a></center>','Welcome!','','inherit','open','open','','2-revision-v1','','','2013-12-17 23:26:26','2013-12-17 23:26:26','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(81,1,'2013-12-20 12:03:56','2013-12-20 19:03:56','http://annieversalstudios.com/wp-content/uploads/2013/12/LaptopBWSmaller.png','LaptopBWSmaller.png','','inherit','closed','closed','','laptopbwsmaller-png','','','2013-12-20 12:03:56','2013-12-20 19:03:56','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/LaptopBWSmaller.png',0,'attachment','image/png',0),(17,1,'2013-12-17 23:35:41','2013-12-17 23:35:41','<h1 class=\"huge\"><span class=\"handwritten\">Hi there!</span></h1>\r\n<p style=\"text-align: right;\">I\'m Annie, the proud gal behind Annieversal Studios.</p>\r\nI\'ve always loved crafting and I used to do it more when I was younger. I\'d mainly paint oil paintings and watercolors and make jewelry, clothes for my Barbies, and bookmarks. Then my growing passion for school began taking more of my time, and before I knew it, I wasn\'t crafting at all. The closest I\'d come to it was writing the occasional greeting card in pretty cursive, meticulously wrapping a gift, or decorating here and there.\r\n\r\nI missed crafting!\r\n\r\nIn early 2018 I realized I wanted to begin working with wood and create big, magical pieces to put around our home and gift to family and friends. But that same year, a seemingly random torso injury that began a couple years earlier began to worsen. After some research and work but without any help from doctors, this condition was found to have been likely caused by toxicity from a vaccine and prevented me from walking much or even standing for long periods of time.\r\n\r\nMy dreams of working with wood faded until I began a journey to improve my health and get out of that funk.\r\n\r\nI realized I didn\'t have to create big pieces (yet); instead, I could start small. Just like with my healing journey, it was all about the baby steps, and as my mood improved (with no drugs–never any drugs), so did my health!\r\n\r\nIn addition to knowing I could begin with small crafts, I took on more activities that enriched me and that I didn\'t have to stand or move around for, such as writing more (another passion) and hosting my very own podcast. Of course, our puppy ensures I DO have to move around so I have that part of my training covered :).\r\n\r\nAnd now here I am, having pivoted this years-old shop that I didn\'t maintain much from a place where you could buy custom designs for your blog to a place where you can get darling handmade decorations for your home or to gift to your loved ones.\r\n\r\n(Don\'t get me wrong: I still like digital marketing and design blogs and websites so contact me if you\'d like more info.)\r\n\r\nWoodworking is a lot of fun and I enjoy passing that passion on to the pieces I create. I hope you\'re able to feel that love!','About','','publish','closed','closed','','about','','','2019-01-18 19:00:38','2019-01-19 02:00:38','',0,'http://annieversalstudios.com/?page_id=17',0,'page','',0),(18,1,'2013-12-17 23:35:41','2013-12-17 23:35:41','&lt;&lt;&gt;&gt;','About','','inherit','closed','closed','','17-revision-v1','','','2013-12-17 23:35:41','2013-12-17 23:35:41','',17,'http://annieversalstudios.com/2013/12/17-revision-v1/',0,'revision','',0),(43,1,'2019-01-18 19:00:12','2019-01-19 02:00:12','<h1 class=\"huge\"><span class=\"handwritten\">Hi there!</span></h1>\n<p style=\"text-align: right;\">I\'m Annie, the proud gal behind Annieversal Studios.</p>\nI\'ve always loved crafting and I used to do it more when I was younger. I\'d mainly paint oil paintings and watercolors and make jewelry, clothes for my Barbies, and bookmarks. Then my growing passion for school began taking more of my time, and before I knew it, I wasn\'t crafting at all. The closest I\'d come to it was writing the occasional greeting card in pretty cursive, meticulously wrapping a gift, or decorating here and there.\n\nI missed crafting!\n\nIn early 2018 I realized I wanted to begin working with wood and create big, magical pieces to put around our home and gift to family and friends. But that same year, a seemingly random torso injury that began a couple years earlier began to worsen. After some research and work but without any help from doctors, this condition was found to have been likely caused by toxicity from a vaccine and prevented me from walking much or even standing for long periods of time.\n\nMy dreams of working with wood faded until I began a journey to improve my health and get out of that funk.\n\nI realized I didn\'t have to create big pieces (yet); instead, I could start small. Just like with my healing journey, it was all about the baby steps, and as my mood improved (with no drugs–never any drugs), so did my health!\n\nIn addition to knowing I could begin with small crafts, I took on more activities that enriched me and that I didn\'t have to stand or move around for, such as writing more (another passion) and hosting my very own podcast. Of course, our puppy ensures I DO have to move around so I have that part of my training covered :).\n\nAnd now here I am, having pivoted this years-old shop that I didn\'t maintain much from a place where you could buy custom designs for your blog to a place where you can get darling handmade decorations for your home or to gift to your loved ones. (Don\'t get me wrong: I still like digital marketing and design blogs and websites so contact me if you\'d like more info.)\n\nWoodworking is a lot of fun and I enjoy passing that passion on to the pieces I create. I hope you\'re able to feel that love!','About','','inherit','closed','closed','','17-autosave-v1','','','2019-01-18 19:00:12','2019-01-19 02:00:12','',17,'http://annieversalstudios.com/2013/12/17-autosave-v1/',0,'revision','',0),(20,1,'2013-12-17 23:36:14','2013-12-18 06:36:14','&lt;&lt;&gt;&gt;','Portfolio','','trash','closed','closed','','portfolio__trashed','','','2019-03-16 21:16:05','2019-03-17 03:16:05','',0,'http://annieversalstudios.com/?page_id=20',0,'page','',0),(21,1,'2013-12-17 23:36:14','2013-12-17 23:36:14','&lt;&lt;&gt;&gt;','Portfolio','','inherit','closed','closed','','20-revision-v1','','','2013-12-17 23:36:14','2013-12-17 23:36:14','',20,'http://annieversalstudios.com/2013/12/20-revision-v1/',0,'revision','',0),(22,1,'2013-12-17 23:36:31','2013-12-18 06:36:31','<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps2_zpsf754eda5.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\" border=\"0\" /></center>\r\n<h3>ONE: BROWSE</h3>\r\nBrowse through my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a> or through my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\" rel=\"noopener noreferrer\">Annieversal Studios</a></b>. Don\'t forget there are discounts with the purchase of more than one package!\r\n\r\n<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts2_zps91dd0a68.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\" border=\"0\" /></center>\r\n<div style=\"text-align: left;\"><b>W/the purchase of either a CUSTOM BLOG DESIGN or a CUSTOM BLOG WIDGETS package, you\'ll get...</b></div>\r\n<div style=\"text-align: left;\">\r\n<ul>\r\n	<li>$3 off a CUSTOM SIGNATURE</li>\r\n	<li>$3 off a TOP-OF-PAGE BUTTON</li>\r\n	<li>$5 off a FACEBOOK COVER</li>\r\n	<li>$5 off a TWITTER PAGE</li>\r\n	<li>$5 off a SOCIAL MEDIA BAR</li>\r\n</ul>\r\n</div>\r\n<h3><strong>TWO: PURCHASE</strong></h3>\r\nPurchase a package: Send an email to annie [at] annieversalstudios [dot] com to let me know you\'d like a spot and I\'ll send you my PayPal info.\r\n\r\nIf you\'d like the process to go down a bit quicker, then feel free to purchase your desired option on my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\" rel=\"noopener noreferrer\">Annieversal Studios</a></b>. If Etsy doesn\'t apply the discount automatically, let me know and I\'ll gladly refund the difference.\r\n<h3><strong>THREE: DIRECTION</strong></h3>\r\nWatch out for an email from me as it contains a very important form with questions to help us determine the direction of your design.\r\n<h3><strong>FOUR: REDESIGN</strong></h3>\r\nStand by as I redesign your blog. I\'ve delivered designs in just a few days, but I ask for up to three weeks, <i>just in case</i>. (Remember I\'ll also need to become an Admin so I can preview things as I go!)\r\n<h3><strong>FIVE: CHANGES?</strong></h3>\r\n<strong></strong>Propose any changes. (Keep in mind that five revisions are included w/the purchase of each option/package.)\r\n<h3><strong>SIX: DONE! </strong></h3>\r\nWe\'re finished! Feel free to remove me as an Admin and enjoy your design ;)! I\'d also love it if you submitted a testimonial. (I\'ll send you a Testimonial form.) YOU ROCK!!!','Get Started','','trash','closed','closed','','get-started__trashed','','','2019-03-16 21:16:05','2019-03-17 03:16:05','',0,'http://annieversalstudios.com/?page_id=22',0,'page','',0),(23,1,'2013-12-17 23:36:31','2013-12-17 23:36:31','&lt;&lt;&gt;&gt;','Get Started','','inherit','closed','closed','','22-revision-v1','','','2013-12-17 23:36:31','2013-12-17 23:36:31','',22,'http://annieversalstudios.com/2013/12/22-revision-v1/',0,'revision','',0),(24,1,'2013-12-17 23:36:50','2013-12-17 23:36:50','If your question isn\'t answered on my <em><a href=\"http://annieversalstudios.com/faqs/\">Frequently Asked Questions </a></em>page, feel free to <a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">drop me a line on Etsy</a>, <a href=\"https://instagram.com/annieversalstudios\">send me a direct message on Instagram</a>, or email me at <em>annie [at] annieversalstudios [dot] com</em>.\r\n\r\nDon\'t forget to <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to be among the first to receive sale and other cool updates.\r\n<p style=\"text-align: center;\"><strong>Make today great!</strong></p>','Contact','','publish','closed','closed','','contact','','','2019-01-03 18:01:07','2019-01-04 01:01:07','',0,'http://annieversalstudios.com/?page_id=24',0,'page','',0),(25,1,'2013-12-17 23:36:50','2013-12-17 23:36:50','&lt;&lt;&gt;&gt;','Contact','','inherit','closed','closed','','24-revision-v1','','','2013-12-17 23:36:50','2013-12-17 23:36:50','',24,'http://annieversalstudios.com/2013/12/24-revision-v1/',0,'revision','',0),(26,1,'2013-12-17 16:37:16','2013-12-17 23:37:16','&lt;&lt;&gt;&gt;','Resources','','trash','closed','closed','','resources__trashed','','','2019-03-16 21:16:05','2019-03-17 03:16:05','',0,'http://annieversalstudios.com/?page_id=26',0,'page','',0),(27,1,'2013-12-17 23:37:16','2013-12-17 23:37:16','&lt;&lt;&gt;&gt;','Resources','','inherit','closed','closed','','26-revision-v1','','','2013-12-17 23:37:16','2013-12-17 23:37:16','',26,'http://annieversalstudios.com/2013/12/26-revision-v1/',0,'revision','',0),(28,1,'2013-12-17 23:42:43','2013-12-17 23:42:43',' ','','','publish','closed','closed','','28','','','2019-03-20 15:43:26','2019-03-20 21:43:26','',0,'http://annieversalstudios.com/?p=28',7,'nav_menu_item','',0),(31,1,'2013-12-17 23:42:43','2013-12-17 23:42:43',' ','','','publish','closed','closed','','31','','','2019-03-20 15:43:26','2019-03-20 21:43:26','',0,'http://annieversalstudios.com/?p=31',2,'nav_menu_item','',0),(50,1,'2013-12-19 16:00:07','2013-12-19 16:00:07','<h4>NEW REDESIGNS FOR 2016:</h4>\r\n<img class=\"aligncenter size-full wp-image-147\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/AC-Screenshot.jpeg\" alt=\"AlterCreations.net\" width=\"1280\" height=\"2502\" />\r\n\r\nFrom earlier in 2016:\r\n\r\n[caption id=\"attachment_143\" align=\"aligncenter\" width=\"1280\"]<img class=\"wp-image-143 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/shot-20160729-26328-rvvx9o.png\" alt=\"Alter Creations 2016 Redesign\" width=\"1280\" height=\"1816\" /> The header/Nav menu stays with you as you scroll. This is something I try to incorporate in all of my designs to enhance usability and user experience.[/caption]\r\n<h4>PREVIOUS REDESIGNS:</h4>\r\n<img class=\"wp-image-139 alignleft\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ACASPortfolip.png\" alt=\"AlterCreations.net Redesign\" width=\"1008\" height=\"634\" />\r\n\r\n;\r\n<img class=\"alignnone wp-image-51 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg\" alt=\"Alter Creations Website\" width=\"1008\" height=\"668\" />\r\n\r\n<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\r\n\r\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in two counties.\r\n\r\n<strong>Here\'s what the owner\'s said about each of the sites I\'ve designed for the shop over the years:</strong>\r\n<blockquote>I get compliments on it <em>ALL </em>the time! People tell me it\'s SO pretty, clear, and useful, that the <em>Directions</em> tool [on the <em>Contact Us</em> page] is incredible, and that it definitely helps set the shop apart. It\'s also helped sales increase ~70%, and we\'re so grateful.</blockquote>','Alter Creations','','publish','closed','closed','','alter-creations','','','2016-10-26 14:41:59','2016-10-26 20:41:59','',0,'http://annieversalstudios.com/?post_type=portfolio&#038;p=50',0,'portfolio','',0),(35,1,'2013-12-17 23:43:09','2013-12-17 23:43:09','&lt;&lt;&gt;&gt;','Design Options','','inherit','closed','closed','','34-revision-v1','','','2013-12-17 23:43:09','2013-12-17 23:43:09','',34,'http://annieversalstudios.com/2013/12/34-revision-v1/',0,'revision','',0),(36,1,'2013-12-17 23:43:37','2013-12-18 06:43:37','<p style=\"text-align: center;\"><em>These are very important, so make sure you read them before purchasing a Design Package.</em></p>\r\n\r\n<h3>BLOGGING PLATFORMS</h3>\r\nIf you\'re on Blogger and you want a full design, then let\'s go for it!\r\n\r\nIf you\'re on Wordpress.com or self-hosted Wordpress* and want a <em>full</em> design, I\'m afraid I can\'t help ya <em>right now</em> because although all my blogs and websites are on Wordpress, my experience with the system isn\'t as extensive as I know it\'ll be in the near future.\r\n\r\n<strong>That doesn\'t mean I\'m completely useless if you\'re on WP, though!</strong> I <em>have</em> helped numerous Wordpress users with design and other behind-the-scene tasks, so take a look at my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a>* to see ALL the goodies I offer for both platforms. And if I don\'t know something, I\'ll study the heck out of it :).\r\n\r\n*I will be branching out into the full WP design world soon. If you\'d like me to help you out with your design and would like to know my WP design rates, simply <a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">contact me</a>.\r\n<h3><b>CREDIT</b></h3>\r\n<b></b>As a research lover, I\'m a fan of citations and saying where I got my stuff from, so I have a small/unobtrusive logo that I place at the bottom of my designs for credit purposes. It basically shows your visitors where you got your design from, so please don\'t remove it for as long as your blog features any Annieversal Studios elements.\r\n<h3><b>REVISIONS</b></h3>\r\nI strive to go above and beyond with every one of my designs. HOWEVER, in case you\'re not 110% satisfied, you are definitely entitled to five (5!) FREE revisions w/the purchase of your package. Any additional revisions are worth $15/hr.\r\n\r\n(Also, please don\'t change your design without my permission. I\'m relatively lenient, but a little heads-up is still nice.)\r\n\r\nPlease be as thorough as possible in the beginning stages so the design process doesn\'t last ages.\r\n<h3><b>WEB OR IMAGE HOSTING</b></h3>\r\nI don\'t offer hosting for your images or your website (if you\'re on Wordpress**). Therefore you should have your own photo-sharing site account. (If necessary, I\'ll ask you for links to your images after you\'ve purchased a design package.)\r\n\r\n**If you want me to work on your WP blog, please make sure you already have its hosting and domain all set.\r\n<h3><strong>COPYRIGHT</strong></h3>\r\nI retain full copyrights to all of my designs. Please do not copy, reproduce or resell in ANY form without my permission. I also retain the right to use the designs in my portfolio, on my website, and/or in my Etsy shop and/or for samples of previous work.\r\n<h3><strong>BACKUPS</strong></h3>\r\nPlease back up your site completely before I begin the redesign. You\'re responsible for saving a copy of your previous design.\r\n<h3>REFUNDS &amp; CANCELLATIONS</h3>\r\nDue to the nature of design work, refunds will not be issued under <em>any</em> circumstances. If you choose to terminate a project for any reason, you will get a design credit for up to one calendar year in the amount of any invoices you paid.\r\n<h3><strong>STANDARDS</strong></h3>\r\nI can refuse service to anyone not willing to comply with these terms, or whose ideas don\'t match my standard of design and/or ethics. (For instance, I don\'t do custom illustration work.)','Terms & Cond.','','trash','closed','closed','','terms-conditions__trashed','','','2019-03-16 21:16:32','2019-03-17 03:16:32','',22,'http://annieversalstudios.com/?page_id=36',0,'page','',0),(37,1,'2013-12-17 23:43:37','2013-12-17 23:43:37','&lt;&lt;&gt;&gt;','Terms & Cond.','','inherit','closed','closed','','36-revision-v1','','','2013-12-17 23:43:37','2013-12-17 23:43:37','',36,'http://annieversalstudios.com/2013/12/36-revision-v1/',0,'revision','',0),(180,1,'2019-01-03 16:50:40','2019-01-03 23:50:40','If your question isn\'t answered on my <em><a href=\"http://annieversalstudios.com/frequently-asked-questions/\">Frequently Asked Questions </a></em>page, feel free to <a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">drop me a line on Etsy</a>, <a href=\"https://instagram.com/annieversalstudios\">send me a direct message on Instagram</a>, or email me at <em>annie [at] annieversalstudios [dot] com</em>.\r\n<p style=\"text-align: center;\"><strong>Make today great!</strong></p>','Contact','','inherit','closed','closed','','24-revision-v1','','','2019-01-03 16:50:40','2019-01-03 23:50:40','',24,'http://annieversalstudios.com/2019/01/24-revision-v1/',0,'revision','',0),(42,1,'2013-12-19 20:41:00','2013-12-19 20:41:00','http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-HeaderSmaller.png','WP-AS-HeaderSmaller.png','','inherit','closed','closed','','wp-as-headersmaller-png','','','2013-12-19 20:41:00','2013-12-19 20:41:00','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/WP-AS-HeaderSmaller.png',0,'attachment','image/png',0),(44,1,'2013-12-19 22:27:07','2013-12-19 22:27:07','<h3><strong>WHO I AM</strong></h3>\r\nI\'m Annie Paul, or <a href=\"http://www.therantinglatina.com/\"><b><i>The Ranting Latina</i></b></a>, which is also my blog where I write about everything I value.\r\n\r\nAfter hearing/seeing the many compliments my blog (and blog design) received from others AND realizing that there are still many beginner and experienced bloggers out there who\'d like to (re)design their blogs, I decided to offer my pretty nifty blog and site design services!\r\n\r\nI\'m focused on providing these services with the highest levels of client satisfaction–<b>and I\'ll do everything I can to meet your expectations.</b>\r\n\r\n<b></b>Look around my website and if you have any comments or questions, please feel free to <a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\"><b>contact me</b></a>.\r\n<h3><strong>WHY WE SHOULD WORK TOGETHER</strong></h3>\r\nI may not have a Design degree, but I am a Writing tutor, marketer, and web designer who minored in Writing &amp; Rhetoric and has learned a few tricks that can help set ANY blog apart.\r\n\r\n<b>I\'m also savvy enough to strike the perfect balance between form and function.</b>\r\n\r\n<b></b>I\'m dedicated, honest, trustworthy, super detail-oriented, a go-above-and-beyond-er, and I\'d LOVE the chance to work with you, dear blogger!\r\n\r\nSo head on over to my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><b>STORE</b></a> and learn about my great (and affordable) design options!','About','','inherit','closed','closed','','17-revision-v1','','','2013-12-19 22:27:07','2013-12-19 22:27:07','',17,'http://annieversalstudios.com/2013/12/17-revision-v1/',0,'revision','',0),(45,1,'2019-01-03 17:59:12','2019-01-04 00:59:12','If your question isn\'t answered on my <em><a href=\"http://annieversalstudios.com/faqs/\">Frequently Asked Questions </a></em>page, feel free to <a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">drop me a line on Etsy</a>, <a href=\"https://instagram.com/annieversalstudios\">send me a direct message on Instagram</a>, or email me at <em>annie [at] annieversalstudios [dot] com</em>.\n\nDon\'t forget to subscribe to my newsletter to be among the first to receive sale and othe\n<p style=\"text-align: center;\"><strong>Make today great!</strong></p>','Contact','','inherit','closed','closed','','24-autosave-v1','','','2019-01-03 17:59:12','2019-01-04 00:59:12','',24,'http://annieversalstudios.com/2013/12/24-autosave-v1/',0,'revision','',0),(46,1,'2013-12-19 22:44:46','2013-12-19 22:44:46','I try to go and beyond for all my current and potential clients, so if you have any questions or comments whatsoever about design, tips, blogging resources, or just blogging in general, feel free to email me anytime at Annie[at] annieversalstudios [dot] com.\r\n<p style=\"text-align: center;\">You\'re awesome, so let\'s have your blog reflect that!</p>','Contact','','inherit','closed','closed','','24-revision-v1','','','2013-12-19 22:44:46','2013-12-19 22:44:46','',24,'http://annieversalstudios.com/2013/12/24-revision-v1/',0,'revision','',0),(47,1,'2014-02-24 18:35:32','2014-02-25 01:35:32','<p style=\"text-align: center;\"><em>These are very important, so make sure you read them before purchasing a Design Package.</em></p>\r\n\r\n<h3>BLOGGING PLATFORMS</h3>\r\nIf you\'re on Blogger and you want a full design, then let\'s go for it!\r\n\r\nIf you\'re on Wordpress.com or self-hosted Wordpress* and want a <em>full</em> design, I\'m afraid I can\'t help ya <em>right now</em> because although all my blogs and websites are on Wordpress, my experience with the system isn\'t as extensive as I know it\'ll be in the near future.\r\n\r\n<strong>That doesn\'t mean I\'m completely useless if you\'re on WP, though!</strong> I <em>have</em> helped numerous Wordpress users with design and other behind-the-scene tasks, so take a look at my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a>* to see ALL the goodies I offer for both platforms. And if I don\'t know something, I\'ll study the heck out of it :).\r\n\r\n*I will be branching out into the full WP design world soon. If you\'d like me to help you out with your design and would like to know my WP design rates, simply <a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">contact me</a>.\r\n<h3><b>CREDIT</b></h3>\r\n<b></b>As a research lover, I\'m a fan of citations and saying where I got my stuff from, so I have a small/unobtrusive logo that I place at the bottom of my designs for credit purposes. It basically shows your visitors where you got your design from, so please don\'t remove it for as long as your blog features any Annieversal Studios elements.\r\n<h3><b>REVISIONS</b></h3>\r\nI strive to go above and beyond with every one of my designs. HOWEVER, in case you\'re not 110% satisfied, you are definitely entitled to five (5!) FREE revisions w/the purchase of your package. Any additional revisions are worth $15/hr.\r\n\r\n(Also, please don\'t change your design without my permission. I\'m relatively lenient, but a little heads-up is still nice.)\r\n\r\nPlease be as thorough as possible in the beginning stages so the design process doesn\'t last ages.\r\n<h3><b>WEB OR IMAGE HOSTING</b></h3>\r\nI don\'t offer hosting for your images or your website (if you\'re on Wordpress**). Therefore you should have your own photo-sharing site account. (If necessary, I\'ll ask you for links to your images after you\'ve purchased a design package.)\r\n\r\n**If you want me to work on your WP blog, please make sure you already have its hosting and domain all set.\r\n<h3><strong>COPYRIGHT</strong></h3>\r\nI retain full copyrights to all of my designs. Please do not copy, reproduce or resell in ANY form without my permission. I also retain the right to use the designs in my portfolio, on my website, and/or in my Etsy shop and/or for samples of previous work.\r\n<h3><strong>BACKUPS</strong></h3>\r\nPlease back up your site completely before I begin the redesign. You\'re responsible for saving a copy of your previous design.\r\n<h3>REFUNDS &amp; CANCELLATIONS</h3>\r\nDue to the nature of design work, refunds will not be issued under <em>any</em> circumstances. If you choose to terminate a project for any reason, you will get a design credit for up to one calendar year in the amount of any invoices you paid.\r\n<h3><strong>STANDARDS</strong></h3>\r\nI can refuse service to anyone not willing to comply with these terms, or whose ideas don\'t match my standard of design and/or ethics. (For instance, I don\'t do custom illustration work.)','Terms & Cond.','','inherit','closed','closed','','36-autosave-v1','','','2014-02-24 18:35:32','2014-02-25 01:35:32','',36,'http://annieversalstudios.com/2013/12/36-autosave-v1/',0,'revision','',0),(48,1,'2013-12-19 22:51:42','2013-12-19 22:51:42','<h3>BLOGGING PLATFORMS</h3>\r\nIf you\'re on Blogger and you want a full design, then let\'s go for it!\r\n\r\nIf you\'re on Wordpress.com or self-hosted Wordpress and want a <em>full</em> design, I\'m afraid I can\'t help ya right now because although all my blogs and websites are on Wordpress, my experience with the system isn\'t as extensive as I know it\'ll be in the near future.\r\n\r\nThat doesn\'t mean I\'m completely useless if you\'re on WP, though! Take a look at my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a> to see ALL the goodies I offer for both platforms. And if I don\'t know something, I\'ll study the heck out of it :).\r\n<h3><b>CREDIT</b></h3>\r\n<b></b>As a research lover, I\'m a fan of citations and saying where I got my stuff from, so I have a small/unobtrusive logo that I place at the bottom of my designs for credit purposes. It basically shows your visitors where you got your design from, so please don\'t remove it :).\r\n<h3><b>REVISIONS</b></h3>\r\nI strive to go above and beyond with every one of my designs. HOWEVER, in case you\'re not 110% satisfied, you are definitely entitled to five (5!) FREE revisions w/the purchase of your package. Any additional revisions are worth $15/hr.\r\n\r\n(Also, please don\'t change your design without my permission. I\'m relatively lenient, but a little heads-up is still nice!)\r\n<h3><b>IMAGE HOSTING</b></h3>\r\nI don\'t offer hosting for your images. Therefore you should have your own photo-sharing site account. (If necessary, I\'ll ask you for links to your images after you\'ve purchased a design package.)','Terms & Cond.','','inherit','closed','closed','','36-revision-v1','','','2013-12-19 22:51:42','2013-12-19 22:51:42','',36,'http://annieversalstudios.com/2013/12/36-revision-v1/',0,'revision','',0),(51,1,'2013-12-19 22:58:52','2013-12-19 22:58:52','','AS-AlterCreations','','inherit','closed','closed','','screen-capture-2','','','2013-12-19 22:58:52','2013-12-19 22:58:52','',50,'http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg',0,'attachment','image/jpeg',0),(52,1,'2013-12-19 22:59:53','2013-12-19 22:59:53','<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\r\n\r\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in Park City and the nearby valley.\r\n\r\n(The owner gets compliments on it every time ;)!)','Alter Creations','','inherit','closed','closed','','50-revision-v1','','','2013-12-19 22:59:53','2013-12-19 22:59:53','',50,'http://annieversalstudios.com/2013/12/50-revision-v1/',0,'revision','',0),(53,1,'2013-12-19 23:04:51','2013-12-19 23:04:51','<img class=\"size-full wp-image-51 alignnone\" alt=\"Alter Creations Website\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg\" width=\"1008\" height=\"668\" />\r\n\r\n<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\r\n\r\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in Park City and the nearby valley.\r\n\r\n(The owner gets compliments on it every time ;)!)','Alter Creations','','inherit','closed','closed','','50-revision-v1','','','2013-12-19 23:04:51','2013-12-19 23:04:51','',50,'http://annieversalstudios.com/2013/12/50-revision-v1/',0,'revision','',0),(54,1,'2013-12-19 16:10:24','2013-12-19 23:10:24','<img class=\"size-full wp-image-55 alignnone\" alt=\"For The Love Of Tailoring Blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ForLoveTailoring.jpg\" width=\"807\" height=\"671\" />\r\n\r\n<b><a href=\"http://alteringcreating.blogspot.com/\" target=\"_blank\">For The Love of Tailoring</a></b> is <a title=\"AS Portfolio - Alter Creations\" href=\"http://annieversalstudios.com/portfolio/alter-creations/\">Alter Creations</a>\'s business blog (it\'s on Blogger), where the owner posts updates related to fashion and projects she\'s worked on. She wanted it to be as cute as the website, while giving it an \"approachable\" feel so that leads could follow genuine non-sales-like tips.\r\n\r\nI\'m actually working on redesigning it so that it better matches the aesthetic of the new website.','For The Love Of Tailoring','','publish','closed','closed','','for-the-love-of-tailoring','','','2013-12-20 22:50:07','2013-12-21 05:50:07','',0,'http://annieversalstudios.com/?post_type=portfolio&#038;p=54',0,'portfolio','',0),(55,1,'2013-12-19 16:07:33','2013-12-19 23:07:33','','AS-ForLoveTailoring','','inherit','closed','closed','','forlovetailoring','','','2013-12-19 16:07:33','2013-12-19 23:07:33','',54,'http://annieversalstudios.com/wp-content/uploads/2013/12/ForLoveTailoring.jpg',0,'attachment','image/jpeg',0),(56,1,'2013-12-19 16:10:24','2013-12-19 23:10:24','<img class=\"size-full wp-image-55 alignnone\" alt=\"For The Love Of Tailoring Blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ForLoveTailoring.jpg\" width=\"807\" height=\"671\" />\r\n\r\n<b><a href=\"http://alteringcreating.blogspot.com/\" target=\"_blank\">For The Love of Tailoring</a></b> is Alter Creations\'s business blog (it\'s on Blogger), where the owner posts updates related to fashion and projects she\'s worked on. She wanted it to be as cute as the website, while giving it an \"approachable\" feel so that leads could follow genuine non-sales-like tips.\r\n\r\nI\'m actually working on redesigning it so that it better matches the aesthetic of the new website.','For The Love Of Tailoring','','inherit','closed','closed','','54-revision-v1','','','2013-12-19 16:10:24','2013-12-19 23:10:24','',54,'http://annieversalstudios.com/2013/12/54-revision-v1/',0,'revision','',0),(57,1,'2013-12-19 16:12:22','2013-12-19 23:12:22','<img class=\"size-full wp-image-58 alignnone\" alt=\"Calantha Organics Website\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/CalanthaOrganics.jpg\" width=\"920\" height=\"625\" />\r\n\r\n<a href=\"http://calanthaorganics.com/\"><b>Calantha Organics</b></a> is Utah\'s premier organic soap manufacturer and retailer.\r\n\r\nThe owner needed an <b>e-commerce</b> site that was light, breezy, and professional, and that contained all that was necessary to allow customers to make a thoroughly informed decision.','Calantha Organics','','publish','closed','closed','','calantha-organics','','','2013-12-19 16:12:35','2013-12-19 23:12:35','',0,'http://annieversalstudios.com/?post_type=portfolio&#038;p=57',0,'portfolio','',0),(58,1,'2013-12-19 16:11:08','2013-12-19 23:11:08','','AS-CalanthaOrganics','','inherit','closed','closed','','calanthaorganics','','','2013-12-19 16:11:08','2013-12-19 23:11:08','',57,'http://annieversalstudios.com/wp-content/uploads/2013/12/CalanthaOrganics.jpg',0,'attachment','image/jpeg',0),(59,1,'2013-12-19 16:12:22','2013-12-19 23:12:22','<img class=\"size-full wp-image-58 alignnone\" alt=\"Calantha Organics Website\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/CalanthaOrganics.jpg\" width=\"920\" height=\"625\" />\r\n\r\n<a href=\"http://calanthaorganics.com/\"><b>Calantha Organics</b></a> is Utah\'s premier organic soap manufacturer and retailer.\r\n\r\nThe owner needed an <b>e-commerce</b> site that was light, breezy, and professional, and that contained all that was necessary to allow customers to make a thoroughly informed decision.','Calantha Organics','','inherit','closed','closed','','57-revision-v1','','','2013-12-19 16:12:22','2013-12-19 23:12:22','',57,'http://annieversalstudios.com/2013/12/57-revision-v1/',0,'revision','',0),(60,1,'2013-12-19 16:14:49','2013-12-19 23:14:49','<h4>NEW REDESIGN:</h4>\r\n<img class=\"aligncenter wp-image-137\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TRLASPortfolio.png\" alt=\"TRL 2015 Redesign\" width=\"873\" height=\"627\" />\r\n<h4>PREVIOUS REDESIGN:</h4>\r\n<img class=\"alignnone wp-image-61 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TRL.jpg\" alt=\"The Ranting Latina Blog\" width=\"873\" height=\"591\" />\r\n\r\nThis is my blog,<strong> <a href=\"http://therantinglatina.com/\">The Ranting Latina</a></strong>!!! It features interactive social media icons, plus a host of other things I\'m a fan of :). If you like what you see on it, feel free to ask for it and I shall make it happen on your design.\r\n\r\n(This IS a Wordpress site, but I\'ve been able to replicate many of the features here on Blogger sites.)','The Ranting Latina','','publish','closed','closed','','the-ranting-latina','','','2015-09-04 16:25:49','2015-09-04 22:25:49','',0,'http://annieversalstudios.com/?post_type=portfolio&#038;p=60',0,'portfolio','',0),(61,1,'2013-12-19 16:14:18','2013-12-19 23:14:18','','AS-TRL','','inherit','closed','closed','','trl','','','2013-12-19 16:14:18','2013-12-19 23:14:18','',60,'http://annieversalstudios.com/wp-content/uploads/2013/12/TRL.jpg',0,'attachment','image/jpeg',0),(62,1,'2013-12-19 16:14:49','2013-12-19 23:14:49','<img class=\"size-full wp-image-61 alignnone\" alt=\"The Ranting Latina Blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TRL.jpg\" width=\"873\" height=\"591\" />\r\n\r\nThis is my blog,<strong> <a href=\"http://therantinglatina.com/\">The Ranting Latina</a></strong>!!! It features interactive social media icons, plus a host of other things I\'m a fan of :). If you like what you see on it, feel free to ask for it and I shall make it happen on your design.\r\n\r\n(This IS a Wordpress site, but I\'ve been able to replicate many of the features here on Blogger sites.)','The Ranting Latina','','inherit','closed','closed','','60-revision-v1','','','2013-12-19 16:14:49','2013-12-19 23:14:49','',60,'http://annieversalstudios.com/2013/12/60-revision-v1/',0,'revision','',0),(63,1,'2013-12-19 16:18:30','2013-12-19 23:18:30','<img class=\"aligncenter size-full wp-image-64\" alt=\"Adventures Of A Misfit Librarian-1\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit1.jpg\" width=\"939\" height=\"673\" />\r\n\r\nShe-who-shall-be-known-as-\"Misfit\" to y\'all (of <i><b><a href=\"http://misfitlibrariansadventures.blogspot.com/\" target=\"_blank\">Adventures of A Misfit Librarian</a></b></i>) was \"tired of looking at\" her old design. She was a dream client who gave me wonderful ideas while also letting me be free to design whatever I thought\'d be cool as long as it was minimalist.\r\n\r\nOf course, I was happy to oblige!\r\n\r\n<img class=\"aligncenter size-full wp-image-65\" alt=\"Adventures Of A Misfit Librarian-2\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit2.jpg\" width=\"821\" height=\"325\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Here\'s what Misfit had to say about my work:</strong>\r\n<blockquote>I\'d highly recommend you because you do awesome work. Thank you for the amazing layout!</blockquote>','Adventures Of A Misfit Librarian','','publish','closed','closed','','adventures-of-a-misfit-librarian','','','2013-12-20 22:48:45','2013-12-21 05:48:45','',0,'http://annieversalstudios.com/?post_type=portfolio&#038;p=63',0,'portfolio','',0),(64,1,'2013-12-19 16:17:19','2013-12-19 23:17:19','','AS-Misfit1','','inherit','closed','closed','','misfit1','','','2013-12-19 16:17:19','2013-12-19 23:17:19','',63,'http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit1.jpg',0,'attachment','image/jpeg',0),(65,1,'2013-12-19 16:17:55','2013-12-19 23:17:55','','Misfit2','','inherit','closed','closed','','misfit2','','','2013-12-19 16:17:55','2013-12-19 23:17:55','',63,'http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit2.jpg',0,'attachment','image/jpeg',0),(66,1,'2013-12-19 16:18:30','2013-12-19 23:18:30','<img class=\"aligncenter size-full wp-image-64\" alt=\"Adventures Of A Misfit Librarian-1\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit1.jpg\" width=\"939\" height=\"673\" />\r\n\r\nShe-who-shall-be-known-as-\"Misfit\" to y\'all (of <i><b><a href=\"http://misfitlibrariansadventures.blogspot.com/\" target=\"_blank\">Adventures of A Misfit Librarian</a></b></i>) was \"tired of looking at\" her old design. She was a dream client who gave me wonderful ideas while also letting me be free to design whatever I thought\'d be cool as long as it was minimalist.\r\n\r\nOf course, I was happy to oblige!\r\n\r\n<img class=\"aligncenter size-full wp-image-65\" alt=\"Adventures Of A Misfit Librarian-2\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit2.jpg\" width=\"821\" height=\"325\" />','Adventures Of A Misfit Librarian','','inherit','closed','closed','','63-revision-v1','','','2013-12-19 16:18:30','2013-12-19 23:18:30','',63,'http://annieversalstudios.com/2013/12/63-revision-v1/',0,'revision','',0),(67,1,'2013-12-19 16:33:25','2013-12-19 23:33:25','<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps2_zpsf754eda5.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\" border=\"0\" /></center>\r\n<h3>ONE: BROWSE</h3>\r\nBrowse through my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a> or through my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\">Annieversal Studios</a></b>. Don\'t forget there are discounts with the purchase of more than one package!\r\n\r\n<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts2_zps91dd0a68.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\" border=\"0\" /></center>\r\n<div style=\"text-align: left;\"><b>W/the purchase of either a CUSTOM BLOG DESIGN or a CUSTOM BLOG WIDGETS package, you\'ll get...</b></div>\r\n<div style=\"text-align: left;\">\r\n<ul>\r\n	<li>$3 off a CUSTOM SIGNATURE</li>\r\n	<li>$3 off a TOP-OF-PAGE BUTTON</li>\r\n	<li>$5 off a FACEBOOK COVER</li>\r\n	<li>$5 off a TWITTER PAGE</li>\r\n	<li>$5 off a SOCIAL MEDIA BAR</li>\r\n</ul>\r\n</div>\r\n<h3><strong>TWO: PURCHASE</strong></h3>\r\nPurchase a package: Send an email to annie [at] annieversalstudios [dot] com to let me know you\'d like a spot and I\'ll send you my PayPal info.\r\n\r\nIf you\'d like the process to go down a bit quicker, then feel free to purchase your desired option on my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\">Annieversal Studios</a></b>. If Etsy doesn\'t apply the discount automatically, let me know and I\'ll gladly refund the difference.\r\n<h3><strong>THREE: DIRECTION</strong></h3>\r\nWatch out for an email from me as it contains a very important form with questions to help us determine the direction of your design.\r\n<h3><strong>FOUR: REDESIGN</strong></h3>\r\nStand by as I redesign your blog. I\'ve delivered designs in just a few days, but I ask for up to three weeks, <i>just in case</i>. (Remember I\'ll also need to become an Admin so I can preview things as I go!)\r\n<h3><strong>FIVE: CHANGES?</strong></h3>\r\n<strong></strong>Propose any changes. (Keep in mind that five revisions are included w/the purchase of each option/package.)\r\n<h3><strong>SIX: DONE! </strong></h3>\r\nWe\'re finished! Feel free to remove me as an Admin and enjoy your design ;)! I\'d also love it if you submitted a testimonial. (I\'ll send you a Testimonial form.) YOU ROCK!!!','Get Started','','inherit','closed','closed','','22-autosave-v1','','','2013-12-19 16:33:25','2013-12-19 23:33:25','',22,'http://annieversalstudios.com/2013/12/22-autosave-v1/',0,'revision','',0),(68,1,'2013-12-19 16:33:48','2013-12-19 23:33:48','<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps2_zpsf754eda5.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\" border=\"0\" /></center>\r\n<h3>ONE: BROWSE</h3>\r\nBrowse through my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a> or through my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\">Annieversal Studios</a></b>. Don\'t forget there are discounts with the purchase of more than one package!\r\n\r\n<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts2_zps91dd0a68.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\" border=\"0\" /></center>\r\n<div style=\"text-align: left;\"><b>W/the purchase of either a CUSTOM BLOG DESIGN or a CUSTOM BLOG WIDGETS package, you\'ll get...</b></div>\r\n<div style=\"text-align: left;\">\r\n<ul>\r\n	<li>$3 off a CUSTOM SIGNATURE</li>\r\n	<li>$3 off a TOP-OF-PAGE BUTTON</li>\r\n	<li>$5 off a FACEBOOK COVER</li>\r\n	<li>$5 off a TWITTER PAGE</li>\r\n	<li>$5 off a SOCIAL MEDIA BAR</li>\r\n</ul>\r\n</div>\r\n<h3><strong>TWO: PURCHASE</strong></h3>\r\nPurchase a package: Send an email to annie [at] annieversalstudios [dot] com to let me know you\'d like a spot and I\'ll send you my PayPal info.\r\n\r\nIf you\'d like the process to go down a bit quicker, then feel free to purchase your desired option on my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\">Annieversal Studios</a></b>. If Etsy doesn\'t apply the discount automatically, let me know and I\'ll gladly refund the difference.\r\n<h3><strong>THREE: DIRECTION</strong></h3>\r\nWatch out for an email from me as it contains a very important form with questions to help us determine the direction of your design.\r\n<h3><strong>FOUR: REDESIGN</strong></h3>\r\nStand by as I redesign your blog. I\'ve delivered designs in just a few days, but I ask for up to three weeks, <i>just in case</i>. (Remember I\'ll also need to become an Admin so I can preview things as I go!)\r\n<h3><strong>FIVE: CHANGES?</strong></h3>\r\n<strong></strong>Propose any changes. (Keep in mind that five revisions are included w/the purchase of each option/package.)\r\n<h3><strong>SIX: DONE! </strong></h3>\r\nWe\'re finished! Feel free to remove me as an Admin and enjoy your design ;)! I\'d also love it if you submitted a testimonial. (I\'ll send you a Testimonial form.) YOU ROCK!!!','Get Started','','inherit','closed','closed','','22-revision-v1','','','2013-12-19 16:33:48','2013-12-19 23:33:48','',22,'http://annieversalstudios.com/2013/12/22-revision-v1/',0,'revision','',0),(69,1,'2013-12-19 22:19:49','2013-12-20 05:19:49','<h3 style=\"text-align: center;\"><strong>PACKAGES</strong></h3>\n<img class=\"aligncenter size-full wp-image-75\" alt=\"AS-Blog Design Packages\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogANDWidgets2.png\" width=\"850\" height=\"300\" />\n<h3 style=\"text-align: center;\"><strong>BLOG EXTRAS</strong></h3>\n[caption id=\"attachment_77\" align=\"aligncenter\" width=\"850\"]<img class=\"size-full wp-image-77 \" alt=\"Blog Design Extras\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogExtras.png\" width=\"850\" height=\"200\" /> * You can even ask for them to be interactive, at NO extra cost![/caption]\n<h3 style=\"text-align: center;\"><strong>SOCIAL MEDIA EXTRAS</strong></h3>\n[caption id=\"attachment_78\" align=\"aligncenter\" width=\"850\"]<img class=\"size-full wp-image-78\" alt=\"Blog Design Social Media Extras\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/SocialMediaExtras.png\" width=\"850\" height=\"200\" /> * You can even ask for them to be interactive, at NO extra cost![/caption]','Design Options','','inherit','closed','closed','','34-autosave-v1','','','2013-12-19 22:19:49','2013-12-20 05:19:49','',34,'http://annieversalstudios.com/2013/12/34-autosave-v1/',0,'revision','',0),(70,1,'2013-12-19 16:42:47','2013-12-19 23:42:47','<h3>BLOGGING PLATFORMS</h3>\r\nIf you\'re on Blogger and you want a full design, then let\'s go for it!\r\n\r\nIf you\'re on Wordpress.com or self-hosted Wordpress and want a <em>full</em> design, I\'m afraid I can\'t help ya right now because although all my blogs and websites are on Wordpress, my experience with the system isn\'t as extensive as I know it\'ll be in the near future.\r\n\r\nThat doesn\'t mean I\'m completely useless if you\'re on WP, though! Take a look at my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a> to see ALL the goodies I offer for both platforms. And if I don\'t know something, I\'ll study the heck out of it :).\r\n<h3><b>CREDIT</b></h3>\r\n<b></b>As a research lover, I\'m a fan of citations and saying where I got my stuff from, so I have a small/unobtrusive logo that I place at the bottom of my designs for credit purposes. It basically shows your visitors where you got your design from, so please don\'t remove it :).\r\n<h3><b>REVISIONS</b></h3>\r\nI strive to go above and beyond with every one of my designs. HOWEVER, in case you\'re not 110% satisfied, you are definitely entitled to five (5!) FREE revisions w/the purchase of your package. Any additional revisions are worth $15/hr.\r\n\r\n(Also, please don\'t change your design without my permission. I\'m relatively lenient, but a little heads-up is still nice!)\r\n<h3><b>IMAGE HOSTING</b></h3>\r\nI don\'t offer hosting for your images. Therefore you should have your own photo-sharing site account. (If necessary, I\'ll ask you for links to your images after you\'ve purchased a design package.)\r\n<h3><strong>COPYRIGHT</strong></h3>\r\nI retain full copyrights to all of my designs. Please do not copy, reproduce or resell in ANY form without my permission. I also retain the right to use the designs in my portfolio, on my website, and/or in my Etsy shop and/or for samples of previous work.','Terms & Cond.','','inherit','closed','closed','','36-revision-v1','','','2013-12-19 16:42:47','2013-12-19 23:42:47','',36,'http://annieversalstudios.com/2013/12/36-revision-v1/',0,'revision','',0),(71,1,'2013-12-19 16:44:12','2013-12-19 23:44:12','','CustomBlogDesign','','inherit','closed','closed','','customblogdesign','','','2013-12-19 16:44:12','2013-12-19 23:44:12','',34,'http://annieversalstudios.com/wp-content/uploads/2013/12/CustomBlogDesign.png',0,'attachment','image/png',0),(72,1,'2013-12-19 17:14:11','2013-12-20 00:14:11','','CustomBlogDesign','','inherit','closed','closed','','customblogdesign-2','','','2013-12-19 17:14:11','2013-12-20 00:14:11','',34,'http://annieversalstudios.com/wp-content/uploads/2013/12/CustomBlogDesign1.png',0,'attachment','image/png',0),(73,1,'2013-12-19 17:14:12','2013-12-20 00:14:12','','CustomBlogWidgets','','inherit','closed','closed','','customblogwidgets','','','2013-12-19 17:14:12','2013-12-20 00:14:12','',34,'http://annieversalstudios.com/wp-content/uploads/2013/12/CustomBlogWidgets.png',0,'attachment','image/png',0),(75,1,'2013-12-19 18:40:36','2013-12-20 01:40:36','','BlogANDWidgets2','','inherit','closed','closed','','blogandwidgets2','','','2013-12-19 18:40:36','2013-12-20 01:40:36','',34,'http://annieversalstudios.com/wp-content/uploads/2013/12/BlogANDWidgets2.png',0,'attachment','image/png',0),(74,1,'2013-12-19 18:37:36','2013-12-20 01:37:36','','BlogANDWidgets','','inherit','closed','closed','','blogandwidgets','','','2013-12-19 18:37:36','2013-12-20 01:37:36','',34,'http://annieversalstudios.com/wp-content/uploads/2013/12/BlogANDWidgets.png',0,'attachment','image/png',0),(76,1,'2013-12-19 18:52:40','2013-12-20 01:52:40','<h3 style=\"text-align: center;\"><strong>PACKAGES</strong></h3>\r\n<img class=\"aligncenter size-full wp-image-75\" alt=\"AS-Blog Design Packages\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogANDWidgets2.png\" width=\"850\" height=\"300\" />\r\n<h3 style=\"text-align: center;\"><strong>EXTRAS</strong></h3>\r\nComing soon!','Design Options','','inherit','closed','closed','','34-revision-v1','','','2013-12-19 18:52:40','2013-12-20 01:52:40','',34,'http://annieversalstudios.com/2013/12/34-revision-v1/',0,'revision','',0),(77,1,'2013-12-19 22:08:21','2013-12-20 05:08:21','','BlogExtras','','inherit','closed','closed','','blogextras','','','2013-12-19 22:08:21','2013-12-20 05:08:21','',34,'http://annieversalstudios.com/wp-content/uploads/2013/12/BlogExtras.png',0,'attachment','image/png',0),(78,1,'2013-12-19 22:18:07','2013-12-20 05:18:07','','aS-SocialMediaExtras','','inherit','closed','closed','','socialmediaextras','','','2013-12-19 22:18:07','2013-12-20 05:18:07','',34,'http://annieversalstudios.com/wp-content/uploads/2013/12/SocialMediaExtras.png',0,'attachment','image/png',0),(79,1,'2013-12-19 22:20:40','2013-12-20 05:20:40','<h3 style=\"text-align: center;\"><strong>PACKAGES</strong></h3>\r\n<img class=\"aligncenter size-full wp-image-75\" alt=\"AS-Blog Design Packages\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogANDWidgets2.png\" width=\"850\" height=\"300\" />\r\n<h3 style=\"text-align: center;\"><strong>BLOG EXTRAS</strong></h3>\r\n[caption id=\"attachment_77\" align=\"aligncenter\" width=\"850\"]<img class=\"size-full wp-image-77 \" alt=\"Blog Design Extras\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogExtras.png\" width=\"850\" height=\"200\" /> * You can even ask for them to be interactive, at NO extra cost![/caption]\r\n<h3 style=\"text-align: center;\"><strong>SOCIAL MEDIA EXTRAS</strong></h3>\r\n[caption id=\"attachment_78\" align=\"aligncenter\" width=\"850\"]<img class=\"size-full wp-image-78\" alt=\"Blog Design Social Media Extras\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/SocialMediaExtras.png\" width=\"850\" height=\"200\" /> * You can even ask for them to be interactive, at NO extra cost![/caption]','Design Options','','inherit','closed','closed','','34-revision-v1','','','2013-12-19 22:20:40','2013-12-20 05:20:40','',34,'http://annieversalstudios.com/2013/12/34-revision-v1/',0,'revision','',0),(80,1,'2013-12-19 22:26:06','2013-12-20 05:26:06','<h3>BLOGGING PLATFORMS</h3>\r\nIf you\'re on Blogger and you want a full design, then let\'s go for it!\r\n\r\nIf you\'re on Wordpress.com or self-hosted Wordpress and want a <em>full</em> design, I\'m afraid I can\'t help ya right now because although all my blogs and websites are on Wordpress, my experience with the system isn\'t as extensive as I know it\'ll be in the near future.\r\n\r\nThat doesn\'t mean I\'m completely useless if you\'re on WP, though! Take a look at my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a> to see ALL the goodies I offer for both platforms. And if I don\'t know something, I\'ll study the heck out of it :).\r\n<h3><b>CREDIT</b></h3>\r\n<b></b>As a research lover, I\'m a fan of citations and saying where I got my stuff from, so I have a small/unobtrusive logo that I place at the bottom of my designs for credit purposes. It basically shows your visitors where you got your design from, so please don\'t remove it :).\r\n<h3><b>REVISIONS</b></h3>\r\nI strive to go above and beyond with every one of my designs. HOWEVER, in case you\'re not 110% satisfied, you are definitely entitled to five (5!) FREE revisions w/the purchase of your package. Any additional revisions are worth $15/hr.\r\n\r\n(Also, please don\'t change your design without my permission. I\'m relatively lenient, but a little heads-up is still nice!)\r\n<h3><b>IMAGE HOSTING</b></h3>\r\nI don\'t offer hosting for your images. Therefore you should have your own photo-sharing site account. (If necessary, I\'ll ask you for links to your images after you\'ve purchased a design package.)\r\n<h3><strong>COPYRIGHT</strong></h3>\r\nI retain full copyrights to all of my designs. Please do not copy, reproduce or resell in ANY form without my permission. I also retain the right to use the designs in my portfolio, on my website, and/or in my Etsy shop and/or for samples of previous work.\r\n<h3><strong>BACKUPS</strong></h3>\r\nPlease back up your site completely before I begin the redesign. You\'re responsible for saving a copy of your previous design.\r\n<h3><strong>STANDARDS</strong></h3>\r\nI can refuse service to anyone not willing to comply with these terms, or whose ideas don\'t match my standard of design and/or ethics. (E.g., I don\'t do illustration work.)','Terms & Cond.','','inherit','closed','closed','','36-revision-v1','','','2013-12-19 22:26:06','2013-12-20 05:26:06','',36,'http://annieversalstudios.com/2013/12/36-revision-v1/',0,'revision','',0),(83,1,'2013-12-20 12:42:04','2013-12-20 19:42:04','http://annieversalstudios.com/wp-content/uploads/2013/12/WorkplaceSmaller.png','WorkplaceSmaller.png','','inherit','closed','closed','','workplacesmaller-png','','','2013-12-20 12:42:04','2013-12-20 19:42:04','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/WorkplaceSmaller.png',0,'attachment','image/png',0),(84,1,'2013-12-20 12:52:21','2013-12-20 19:52:21','http://annieversalstudios.com/wp-content/uploads/2013/12/Workplace2Cropped.png','Workplace2Cropped.png','','inherit','closed','closed','','workplace2cropped-png','','','2013-12-20 12:52:21','2013-12-20 19:52:21','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/Workplace2Cropped.png',0,'attachment','image/png',0),(85,1,'2013-12-20 12:54:32','2013-12-20 19:54:32','http://annieversalstudios.com/wp-content/uploads/2013/12/WorkplaceCropped2.png','WorkplaceCropped2.png','','inherit','closed','closed','','workplacecropped2-png','','','2013-12-20 12:54:32','2013-12-20 19:54:32','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/WorkplaceCropped2.png',0,'attachment','image/png',0),(86,1,'2013-12-20 13:03:04','2013-12-20 20:03:04','http://annieversalstudios.com/wp-content/uploads/2013/12/Workplace3.jpg','Workplace3.jpg','','inherit','closed','closed','','workplace3-jpg','','','2013-12-20 13:03:04','2013-12-20 20:03:04','',0,'http://annieversalstudios.com/wp-content/uploads/2013/12/Workplace3.jpg',0,'attachment','image/jpeg',0),(87,1,'2013-12-20 17:36:06','2013-12-21 00:36:06','','SOL-DesignOoptions','','inherit','closed','closed','','sol-designooptions','','','2013-12-20 17:36:06','2013-12-21 00:36:06','',10,'http://annieversalstudios.com/wp-content/uploads/2013/12/SOL-DesignOoptions.png',1,'attachment','image/png',0),(89,1,'2013-12-20 17:36:12','2013-12-21 00:36:12','','SOL-Unique','','inherit','closed','closed','','sol-unique','','','2013-12-20 17:36:12','2013-12-21 00:36:12','',10,'http://annieversalstudios.com/wp-content/uploads/2013/12/SOL-Unique.png',2,'attachment','image/png',0),(92,1,'2013-12-20 17:44:36','2013-12-21 00:44:36','','SOL-Espanol2','','inherit','closed','closed','','sol-espanol2','','','2013-12-20 17:44:36','2013-12-21 00:44:36','',10,'http://annieversalstudios.com/wp-content/uploads/2013/12/SOL-Espanol2.png',3,'attachment','image/png',0),(90,1,'2013-12-21 12:50:22','2013-12-21 19:50:22','&nbsp;\n<p style=\"text-align: center;\">[soliloquy id=\"10\"]</p>\n\n<h3 style=\"text-align: center;\">You\'re AWESOME and UNIQUE.</h3>\n<p style=\"text-align: left;\"><strong>So why settle for a so-so blog/website when you can have a design by me?</strong></p>\n<p style=\"text-align: left;\">After all, I <em>am</em> looking to expand my portfolio*!</p>\n<p style=\"text-align: left;\">*meaning I\'ll go above and beyond for much less than those others who charge an arm and a leg for blah designs...</p>\n<strong>So browse through my site, get inspired, and let\'s work together!</strong>\n\n&nbsp;','Welcome!','','inherit','closed','closed','','2-autosave-v1','','','2013-12-21 12:50:22','2013-12-21 19:50:22','',2,'http://annieversalstudios.com/2013/12/2-autosave-v1/',0,'revision','',0),(93,1,'2013-12-20 18:18:26','2013-12-21 01:18:26','','AnnieSmiles2','','inherit','closed','closed','','anniesmiles2','','','2013-12-20 18:18:26','2013-12-21 01:18:26','',17,'http://annieversalstudios.com/wp-content/uploads/2013/12/AnnieSmiles2.png',0,'attachment','image/png',0),(130,1,'2014-03-22 18:06:09','2014-03-23 00:06:09','<h3><strong>WHAT IS ANNIEVERSAL STUDIOS?</strong></h3>\r\nAnnieversal Studios is about you.\r\n\r\nI mean <em>we</em> work behind-the-scenes, but <em>our clients</em> are the ones who take care of business.\r\n\r\nAfter hearing/seeing the many compliments our personal blogs received from others AND realizing that there are still many beginner and experienced business people and bloggers out there who\'d like to (re)design their blogs and grow on, we decided to offer our pretty nifty site design and marketing services!\r\n\r\nWe\'re focused on providing these services with the highest levels of client satisfaction–<b>and we\'ll do everything we can to meet your expectations.</b>\r\n\r\n<b></b><strong style=\"font-size: 1.17em; line-height: 1.5em;\">WHY WE SHOULD WORK TOGETHER</strong>\r\n\r\nWe may not have Design degrees, but we\'re nevertheless a talented group of editors, marketers, and web designers who\'ve learned a few tricks that can help set ANY site or business apart.\r\n\r\n<b>We\'re also savvy enough to strike the perfect balance between form and function.</b>\r\n\r\n<b></b>We\'re dedicated, honest, trustworthy, super detail-oriented, go-above-and-beyond-ers, and we\'d LOVE the chance to work with you!','About','','inherit','closed','closed','','17-revision-v1','','','2014-03-22 18:06:09','2014-03-23 00:06:09','',17,'http://annieversalstudios.com/2014/03/17-revision-v1/',0,'revision','',0),(94,1,'2013-12-20 18:19:03','2013-12-21 01:19:03','<h3><strong>WHO I AM</strong></h3>\r\n<img class=\"alignleft size-full wp-image-93\" alt=\"Annie - The Ranting Latina\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/AnnieSmiles2.png\" width=\"300\" height=\"257\" />\r\n\r\nI\'m Annie Paul, or <a href=\"http://www.therantinglatina.com/\"><b><i>The Ranting Latina</i></b></a>, which is also my blog where I write about everything I value.\r\n\r\nAfter hearing/seeing the many compliments my blog (and blog design) received from others AND realizing that there are still many beginner and experienced bloggers out there who\'d like to (re)design their blogs, I decided to offer my pretty nifty blog and site design services!\r\n\r\nI\'m focused on providing these services with the highest levels of client satisfaction–<b>and I\'ll do everything I can to meet your expectations.</b>\r\n\r\n<b></b>Look around my website and if you have any comments or questions, please feel free to <a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\"><b>contact me</b></a>.\r\n<h3><strong>WHY WE SHOULD WORK TOGETHER</strong></h3>\r\nI may not have a Design degree, but I am a Writing tutor, marketer, and web designer who minored in Writing &amp; Rhetoric and has learned a few tricks that can help set ANY blog apart.\r\n\r\n<b>I\'m also savvy enough to strike the perfect balance between form and function.</b>\r\n\r\n<b></b>I\'m dedicated, honest, trustworthy, super detail-oriented, a go-above-and-beyond-er, and I\'d LOVE the chance to work with you, dear blogger!\r\n\r\nSo head on over to my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><b>STORE</b></a> and learn about my great (and affordable) design options!','About','','inherit','closed','closed','','17-revision-v1','','','2013-12-20 18:19:03','2013-12-21 01:19:03','',17,'http://annieversalstudios.com/2013/12/17-revision-v1/',0,'revision','',0),(96,1,'2013-12-20 22:32:13','2013-12-21 05:32:13','<p style=\"text-align: center;\">[soliloquy id=\"10\"]</p>\r\n\r\n<h3 style=\"text-align: center;\">You\'re AWESOME and UNIQUE.</h3>\r\n<h3 style=\"text-align: center;\">So why settle for a so-so blog/website when you can have a design by me?</h3>\r\n<h3 style=\"text-align: center;\">After all, I <em>am</em> looking to expand my portfolio (read: I\'ll go above and beyond for much less than those other designers who charge an arm and a leg for blah designs)!</h3>\r\nSo browse through my site, get inspired, and let\'s work together!','Welcome!','','inherit','closed','closed','','2-revision-v1','','','2013-12-20 22:32:13','2013-12-21 05:32:13','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(99,1,'2013-12-20 22:46:03','2013-12-21 05:46:03','<img class=\"aligncenter size-full wp-image-100\" alt=\"Belleza Kisses Signature\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TashaSigHLK.png\" width=\"800\" height=\"400\" />\r\n\r\nTasha was looking for a new signature for her blog, <a title=\"Belleza Kisses\" href=\"bellezakisses.com\" target=\"_blank\">Belleza Kisses</a>, and in our discussion she mentioned she wanted her colors gray and pink and <em>if possible</em>, the same font as the one in the logo. The latter wasn\'t a requirement as she \"trusted my judgment.\"\r\n\r\nWell, I spent days looking for that font and didn\'t find it <em>anywhere</em>! So I went another route and came up with the options you see above.\r\n\r\nHer favorite ones were the one with her face, which since hers is a beauty blog, it makes sense :). I\'m so delighted she liked them!\r\n<blockquote>OMG!!! Annie you did an amazing job!!! I\'m so glad that I found your Etsy shop!</blockquote>','Belleza Kisses','','publish','closed','closed','','belleza-kisses','','','2013-12-20 22:46:03','2013-12-21 05:46:03','',0,'http://annieversalstudios.com/?post_type=portfolio&#038;p=99',0,'portfolio','',0),(100,1,'2013-12-20 22:44:04','2013-12-21 05:44:04','','TashaSigHLK','','inherit','closed','closed','','tashasighlk','','','2013-12-20 22:44:04','2013-12-21 05:44:04','',99,'http://annieversalstudios.com/wp-content/uploads/2013/12/TashaSigHLK.png',0,'attachment','image/png',0),(101,1,'2013-12-20 22:46:03','2013-12-21 05:46:03','<img class=\"aligncenter size-full wp-image-100\" alt=\"Belleza Kisses Signature\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TashaSigHLK.png\" width=\"800\" height=\"400\" />\r\n\r\nTasha was looking for a new signature for her blog, <a title=\"Belleza Kisses\" href=\"bellezakisses.com\" target=\"_blank\">Belleza Kisses</a>, and in our discussion she mentioned she wanted her colors gray and pink and <em>if possible</em>, the same font as the one in the logo. The latter wasn\'t a requirement as she \"trusted my judgment.\"\r\n\r\nWell, I spent days looking for that font and didn\'t find it <em>anywhere</em>! So I went another route and came up with the options you see above.\r\n\r\nHer favorite ones were the one with her face, which since hers is a beauty blog, it makes sense :). I\'m so delighted she liked them!\r\n<blockquote>OMG!!! Annie you did an amazing job!!! I\'m so glad that I found your Etsy shop!</blockquote>','Belleza Kisses','','inherit','closed','closed','','99-revision-v1','','','2013-12-20 22:46:03','2013-12-21 05:46:03','',99,'http://annieversalstudios.com/2013/12/99-revision-v1/',0,'revision','',0),(102,1,'2013-12-20 22:47:56','2013-12-21 05:47:56','<img class=\"aligncenter size-full wp-image-64\" alt=\"Adventures Of A Misfit Librarian-1\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit1.jpg\" width=\"939\" height=\"673\" />\n\nShe-who-shall-be-known-as-\"Misfit\" to y\'all (of <i><b><a href=\"http://misfitlibrariansadventures.blogspot.com/\" target=\"_blank\">Adventures of A Misfit Librarian</a></b></i>) was \"tired of looking at\" her old design. She was a dream client who gave me wonderful ideas while also letting me be free to design whatever I thought\'d be cool as long as it was minimalist.\n\nOf course, I was happy to oblige!\n\n<img class=\"aligncenter size-full wp-image-65\" alt=\"Adventures Of A Misfit Librarian-2\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit2.jpg\" width=\"821\" height=\"325\" />\n\n&nbsp;\n\nHere\'s what M','Adventures Of A Misfit Librarian','','inherit','closed','closed','','63-autosave-v1','','','2013-12-20 22:47:56','2013-12-21 05:47:56','',63,'http://annieversalstudios.com/2013/12/63-autosave-v1/',0,'revision','',0),(103,1,'2013-12-20 22:48:45','2013-12-21 05:48:45','<img class=\"aligncenter size-full wp-image-64\" alt=\"Adventures Of A Misfit Librarian-1\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit1.jpg\" width=\"939\" height=\"673\" />\r\n\r\nShe-who-shall-be-known-as-\"Misfit\" to y\'all (of <i><b><a href=\"http://misfitlibrariansadventures.blogspot.com/\" target=\"_blank\">Adventures of A Misfit Librarian</a></b></i>) was \"tired of looking at\" her old design. She was a dream client who gave me wonderful ideas while also letting me be free to design whatever I thought\'d be cool as long as it was minimalist.\r\n\r\nOf course, I was happy to oblige!\r\n\r\n<img class=\"aligncenter size-full wp-image-65\" alt=\"Adventures Of A Misfit Librarian-2\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/Misfit2.jpg\" width=\"821\" height=\"325\" />\r\n\r\n&nbsp;\r\n\r\n<strong>Here\'s what Misfit had to say about my work:</strong>\r\n<blockquote>I\'d highly recommend you because you do awesome work. Thank you for the amazing layout!</blockquote>','Adventures Of A Misfit Librarian','','inherit','closed','closed','','63-revision-v1','','','2013-12-20 22:48:45','2013-12-21 05:48:45','',63,'http://annieversalstudios.com/2013/12/63-revision-v1/',0,'revision','',0),(104,1,'2013-12-20 22:50:07','2013-12-21 05:50:07','<img class=\"size-full wp-image-55 alignnone\" alt=\"For The Love Of Tailoring Blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ForLoveTailoring.jpg\" width=\"807\" height=\"671\" />\r\n\r\n<b><a href=\"http://alteringcreating.blogspot.com/\" target=\"_blank\">For The Love of Tailoring</a></b> is <a title=\"AS Portfolio - Alter Creations\" href=\"http://annieversalstudios.com/portfolio/alter-creations/\">Alter Creations</a>\'s business blog (it\'s on Blogger), where the owner posts updates related to fashion and projects she\'s worked on. She wanted it to be as cute as the website, while giving it an \"approachable\" feel so that leads could follow genuine non-sales-like tips.\r\n\r\nI\'m actually working on redesigning it so that it better matches the aesthetic of the new website.','For The Love Of Tailoring','','inherit','closed','closed','','54-revision-v1','','','2013-12-20 22:50:07','2013-12-21 05:50:07','',54,'http://annieversalstudios.com/2013/12/54-revision-v1/',0,'revision','',0),(105,1,'2016-10-26 14:38:05','2016-10-26 20:38:05','<h4>NEW REDESIGNS FOR 2016:</h4>\n<img class=\"aligncenter size-full wp-image-147\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/AC-Screenshot.jpeg\" alt=\"AlterCreations.net\" width=\"1280\" height=\"2502\" />\n\nFrom earlier in 2016:\n\n[caption id=\"attachment_143\" align=\"aligncenter\" width=\"1280\"]<img class=\"wp-image-143 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/shot-20160729-26328-rvvx9o.png\" alt=\"Alter Creations 2016 Redesign\" width=\"1280\" height=\"1816\" /> The header/Nav menu stays with you as you scroll. This is something I try to incorporate in all of my designs to enhance usability and user experience.[/caption]\n<h4>PREVIOUS REDESIGNS:</h4>\n<img class=\"wp-image-139 alignleft\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ACASPortfolip.png\" alt=\"AlterCreations.net Redesign\" width=\"1008\" height=\"634\" />\n\n;\n<img class=\"alignnone wp-image-51 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg\" alt=\"Alter Creations Website\" width=\"1008\" height=\"668\" />\n\n<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\n\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in two counties.\n\n<strong>Here\'s what the owner\'s said about each of the sites I\'ve designed for the shop over the years:</strong>\n<blockquote>I get compliments on it <em>ALL </em>the time! People tell me it\'s SO pretty, clear, and useful, that the <em>Directions</em> tool [on the <em>Contact Us</em> page] is incredible, and that it definitely helps set the shop apart. It\'s also helped sales increase ~70%, and we\'re so grateful.</blockquote>','Alter Creations','','inherit','closed','closed','','50-autosave-v1','','','2016-10-26 14:38:05','2016-10-26 20:38:05','',50,'http://annieversalstudios.com/2013/12/50-autosave-v1/',0,'revision','',0),(106,1,'2013-12-20 22:55:37','2013-12-21 05:55:37','<img class=\"size-full wp-image-51 alignnone\" alt=\"Alter Creations Website\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg\" width=\"1008\" height=\"668\" />\r\n\r\n<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\r\n\r\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in Park City and the nearby valley.\r\n\r\n<strong>Here\'s what the owner\'s said about each of the sites I\'ve designed for the shop over the years:</strong>\r\n<blockquote>I get compliments on it <em>all </em>the time! People tell me it\'s SO pretty, clear, and useful, that the <em>Directions</em> tool [on the <em>Contact Us</em> page] is incredible, and that it definitely helps set the shop apart. It\'s also helped sales increase ~70%, and we\'re so grateful.</blockquote>','Alter Creations','','inherit','closed','closed','','50-revision-v1','','','2013-12-20 22:55:37','2013-12-21 05:55:37','',50,'http://annieversalstudios.com/2013/12/50-revision-v1/',0,'revision','',0),(107,1,'2013-12-21 12:46:58','2013-12-21 19:46:58','<center>\r\n<p style=\"text-align: center;\">[soliloquy id=\"10\"]</p>\r\n\r\n</center>\r\n<h3 style=\"text-align: center;\">You\'re AWESOME and UNIQUE.</h3>\r\n<h3 style=\"text-align: left;\">So why settle for a so-so blog/website when you can have a design by me?</h3>\r\n<h3 style=\"text-align: left;\">After all, I <em>am</em> looking to expand my portfolio (<em>read</em>: I\'ll go above and beyond for much less than those others who charge an arm and a leg for blah designs)!</h3>\r\nSo browse through my site, get inspired, and let\'s work together!','Welcome!','','inherit','closed','closed','','2-revision-v1','','','2013-12-21 12:46:58','2013-12-21 19:46:58','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(108,1,'2013-12-21 12:47:49','2013-12-21 19:47:49','&nbsp;\r\n<p style=\"text-align: center;\">[soliloquy id=\"10\"]</p>\r\n\r\n<h3 style=\"text-align: center;\">You\'re AWESOME and UNIQUE.</h3>\r\n<p style=\"text-align: left;\"><strong>So why settle for a so-so blog/website when you can have a design by me?</strong></p>\r\n<p style=\"text-align: left;\">After all, I <em>am</em> looking to expand my portfolio (<em>read</em>: I\'ll go above and beyond for much less than those others who charge an arm and a leg for blah designs)!</p>\r\nSo browse through my site, get inspired, and let\'s work together!','Welcome!','','inherit','closed','closed','','2-revision-v1','','','2013-12-21 12:47:49','2013-12-21 19:47:49','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(109,1,'2013-12-21 12:48:59','2013-12-21 19:48:59','<center><p style=\"text-align: center;\">[soliloquy id=\"10\"]</p></center?\r\n<h3 style=\"text-align: center;\">You\'re AWESOME and UNIQUE.</h3>\r\n<p style=\"text-align: left;\"><strong>So why settle for a so-so blog/website when you can have a design by me?</strong></p>\r\n<p style=\"text-align: left;\">After all, I <em>am</em> looking to expand my portfolio*!</p>\r\n<p style=\"text-align: left;\">*meaning I\'ll go above and beyond for much less than those others who charge an arm and a leg for blah designs...</p>\r\nSo browse through my site, get inspired, and let\'s work together!','Welcome!','','inherit','closed','closed','','2-revision-v1','','','2013-12-21 12:48:59','2013-12-21 19:48:59','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(110,1,'2013-12-21 12:49:19','2013-12-21 19:49:19','<center>\r\n<p style=\"text-align: center;\">[soliloquy id=\"10\"]</p>\r\n\r\n<h3 style=\"text-align: center;\">You\'re AWESOME and UNIQUE.</h3>\r\n<p style=\"text-align: left;\"><strong>So why settle for a so-so blog/website when you can have a design by me?</strong></p>\r\n<p style=\"text-align: left;\">After all, I <em>am</em> looking to expand my portfolio*!</p>\r\n<p style=\"text-align: left;\">*meaning I\'ll go above and beyond for much less than those others who charge an arm and a leg for blah designs...</p>\r\n<strong>So browse through my site, get inspired, and let\'s work together!</strong>\r\n\r\n</center>','Welcome!','','inherit','closed','closed','','2-revision-v1','','','2013-12-21 12:49:19','2013-12-21 19:49:19','',2,'http://annieversalstudios.com/2013/12/2-revision-v1/',0,'revision','',0),(115,1,'2014-02-24 18:35:51','2014-02-25 01:35:51','<p style=\"text-align: center;\"><em>These are very important, so make sure you read them before purchasing a Design Package.</em></p>\r\n\r\n<h3>BLOGGING PLATFORMS</h3>\r\nIf you\'re on Blogger and you want a full design, then let\'s go for it!\r\n\r\nIf you\'re on Wordpress.com or self-hosted Wordpress* and want a <em>full</em> design, I\'m afraid I can\'t help ya <em>right now</em> because although all my blogs and websites are on Wordpress, my experience with the system isn\'t as extensive as I know it\'ll be in the near future.\r\n\r\n<strong>That doesn\'t mean I\'m completely useless if you\'re on WP, though!</strong> I <em>have</em> helped numerous Wordpress users with design and other behind-the-scene tasks, so take a look at my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a>* to see ALL the goodies I offer for both platforms. And if I don\'t know something, I\'ll study the heck out of it :).\r\n\r\n*I will be branching out into the full WP design world soon. If you\'d like me to help you out with your design and would like to know my WP design rates, simply <a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">contact me</a>.\r\n<h3><b>CREDIT</b></h3>\r\n<b></b>As a research lover, I\'m a fan of citations and saying where I got my stuff from, so I have a small/unobtrusive logo that I place at the bottom of my designs for credit purposes. It basically shows your visitors where you got your design from, so please don\'t remove it for as long as your blog features any Annieversal Studios elements.\r\n<h3><b>REVISIONS</b></h3>\r\nI strive to go above and beyond with every one of my designs. HOWEVER, in case you\'re not 110% satisfied, you are definitely entitled to five (5!) FREE revisions w/the purchase of your package. Any additional revisions are worth $15/hr.\r\n\r\n(Also, please don\'t change your design without my permission. I\'m relatively lenient, but a little heads-up is still nice.)\r\n\r\nPlease be as thorough as possible in the beginning stages so the design process doesn\'t last ages.\r\n<h3><b>WEB OR IMAGE HOSTING</b></h3>\r\nI don\'t offer hosting for your images or your website (if you\'re on Wordpress**). Therefore you should have your own photo-sharing site account. (If necessary, I\'ll ask you for links to your images after you\'ve purchased a design package.)\r\n\r\n**If you want me to work on your WP blog, please make sure you already have its hosting and domain all set.\r\n<h3><strong>COPYRIGHT</strong></h3>\r\nI retain full copyrights to all of my designs. Please do not copy, reproduce or resell in ANY form without my permission. I also retain the right to use the designs in my portfolio, on my website, and/or in my Etsy shop and/or for samples of previous work.\r\n<h3><strong>BACKUPS</strong></h3>\r\nPlease back up your site completely before I begin the redesign. You\'re responsible for saving a copy of your previous design.\r\n<h3>REFUNDS &amp; CANCELLATIONS</h3>\r\nDue to the nature of design work, refunds will not be issued under <em>any</em> circumstances. If you choose to terminate a project for any reason, you will get a design credit for up to one calendar year in the amount of any invoices you paid.\r\n<h3><strong>STANDARDS</strong></h3>\r\nI can refuse service to anyone not willing to comply with these terms, or whose ideas don\'t match my standard of design and/or ethics. (For instance, I don\'t do custom illustration work.)','Terms & Cond.','','inherit','closed','closed','','36-revision-v1','','','2014-02-24 18:35:51','2014-02-25 01:35:51','',36,'http://annieversalstudios.com/2014/02/36-revision-v1/',0,'revision','',0),(117,1,'2014-03-15 13:08:24','2014-03-15 19:08:24','<p style=\"text-align: center;\"><img class=\"aligncenter size-full wp-image-121\" style=\"line-height: 1.5em;\" alt=\"StateBlog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StateBlog.png\" width=\"850\" height=\"300\" /></p>\r\n<p style=\"text-align: center;\"><strong>Let\'s say you want to have the BEST blog out there but don\'t know where to begin.</strong></p>\r\n<p style=\"text-align: center;\"><strong>You may also enjoy blogging or are looking to start blogging but have found \"blogland\" to be <em>overwhelming</em>.</strong></p>\r\nWell fear not because all bloggers have been there. Even those we think of today as \"big bloggers\" got started somehow.\r\n\r\n<strong>But you (yes, you!) can do something that I can bet you 99% of them <em>didn\'t</em> have:</strong> A personalized consultation into the \"State of Your Blog\" by yours truly!\r\n\r\nThat\'s right: I don\'t just <a title=\"Portfolio\" href=\"http://annieversalstudios.com/portfolio/\">design great websites</a>--I also help people set up their sites and even help them make those sites better via various consultations. I\'ve been blogging for about four years, and in that time, I\'ve become privy to info that\'s sure to benefit all kinds of bloggers--from the newbie to the veteran.\r\n\r\nSo if you\'re just getting started OR have some months/years of blogging under your belt, then this opportunity is for YOU!\r\n<h3><span style=\"line-height: 1.5em;\">WHAT WE\'LL DISCUSS</span></h3>\r\n<ul>\r\n	<li>Overall first impression of your blog from an outsider\'s--me--point of view</li>\r\n	<li>Creating original content for <em>your</em> niche</li>\r\n	<li>The best plugins for your needs (WP blogs)</li>\r\n	<li>Joining publishing/ad networks: Should you? Which ones would be best?</li>\r\n	<li><span style=\"line-height: 1.5em;\">Using social media to promote your blog</span></li>\r\n	<li><span style=\"line-height: 1.5em;\">Approaching businesses and acquiring sponsors</span></li>\r\n	<li>Writing sweet product reviews and hosting fantastic giveaways</li>\r\n	<li><span style=\"line-height: 1.5em;\">Other details that have/have <em>not</em> worked for me throughout the years</span></li>\r\n	<li><em>Optional</em>: Formatting/coding assistance</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\">THE PLANS</h2>\r\n<h3>THE STAR PLAN</h3>\r\n<img class=\"aligncenter size-full wp-image-123\" alt=\"One (1) sixty minute video chat + a written recap of everything discussed + suggestions for goals + a marketing plan for your blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StarPlan.png\" width=\"850\" height=\"180\" />\r\n<h3>THE STELLAR PLAN</h3>\r\n<img class=\"aligncenter size-full wp-image-124\" alt=\"One (1) sixty minute video chat + a 60-minute follow-up call after a month + a written recap of everything discussed + suggestions for goals + a custom marketing plan for your blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StellarPlan.png\" width=\"850\" height=\"180\" />\r\n<p style=\"text-align: center;\">-- -- --</p>\r\n<p style=\"text-align: center;\"><strong><a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">Contact me</a> for pricing and to set up your consultation and I so look forward to working with you!</strong></p>','\"State of Your Blog\" Blog Consultation','','trash','closed','closed','','blog-consultation__trashed','','','2019-03-16 21:16:56','2019-03-17 03:16:56','',0,'http://annieversalstudios.com/?page_id=117',0,'page','',0),(118,1,'2014-03-14 18:29:50','2014-03-15 00:29:50','You want to have the BEST blog out there but don\'t know where to begin.\r\n\r\nYou like blogging or are looking to start blogging but have found \"blogland\" to be <em>overwhelming</em>.\r\n\r\nWell fear not because all bloggers have been there. Even those we think of today as \"big bloggers\" got started somehow.\r\n\r\nBut you (yes, you!) can do something that I can bet you 99% of them <em>didn\'t</em> have: A personalized consultation into the \"State of Your Blog\" by yours truly.\r\n\r\nThat\'s right! I don\'t just design great websites--I also help people set up their sites and even help them make those sites better with different consultations.\r\n\r\nI\'ve been blogging for about four years, and in that time, I\'ve become privy to info that\'s sure to benefit all kinds of bloggers--from the newbie to the veteran.\r\n\r\nSo if you\'re just getting started OR have some months/years of blogging under your belt, then this opportunity is for YOU!\r\n<h3><span style=\"line-height: 1.5em;\">WHAT WE\'LL DISCUSS</span></h3>\r\n<ul>\r\n	<li>Overall first impression of your blog from an outsider\'s--me--point of view</li>\r\n	<li>Creating original content</li>\r\n	<li>Finding one’s voice in the blogging world</li>\r\n	<li>Using social media to promote your blog</li>\r\n	<li>Turning your blog into a business</li>\r\n	<li>Establishing a community</li>\r\n	<li>Approaching businesses and acquiring sponsors</li>\r\n	<li>Joining publishing networks</li>\r\n	<li>Product reviews</li>\r\n	<li><span style=\"line-height: 1.5em;\">Other details that have/have not worked for me throughout the years</span></li>\r\n</ul>\r\n<h2 style=\"text-align: center;\">THE PLANS</h2>\r\n<h3>THE STAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a marketing plan\r\n<h3>THE STELLAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ 1 sixty minute follow up call at the end of the month\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a custom marketing plan for your blog\r\n<p style=\"text-align: center;\"><strong><a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">Contact me</a> for pricing and to set up your consultation and I so look forward to working with you!</strong></p>','\"State of Your Blog\" Blog Consultation','','inherit','closed','closed','','117-revision-v1','','','2014-03-14 18:29:50','2014-03-15 00:29:50','',117,'http://annieversalstudios.com/2014/03/117-revision-v1/',0,'revision','',0),(119,1,'2014-03-14 18:30:39','2014-03-15 00:30:39','You want to have the BEST blog out there but don\'t know where to begin. You like blogging or are looking to start blogging but have found \"blogland\" to be <em>overwhelming</em>.\r\n\r\nWell fear not because all bloggers have been there. Even those we think of today as \"big bloggers\" got started somehow.\r\n\r\nBut you (yes, you!) can do something that I can bet you 99% of them <em>didn\'t</em> have: A personalized consultation into the \"State of Your Blog\" by yours truly.\r\n\r\nThat\'s right! I don\'t just design great websites--I also help people set up their sites and even help them make those sites better with different consultations. I\'ve been blogging for about four years, and in that time, I\'ve become privy to info that\'s sure to benefit all kinds of bloggers--from the newbie to the veteran.\r\n\r\nSo if you\'re just getting started OR have some months/years of blogging under your belt, then this opportunity is for YOU!\r\n<h3><span style=\"line-height: 1.5em;\">WHAT WE\'LL DISCUSS</span></h3>\r\n<ul>\r\n	<li>Overall first impression of your blog from an outsider\'s--me--point of view</li>\r\n	<li>Creating original content</li>\r\n	<li>Finding one’s voice in the blogging world</li>\r\n	<li>Using social media to promote your blog</li>\r\n	<li>Turning your blog into a business</li>\r\n	<li>Establishing a community</li>\r\n	<li>Approaching businesses and acquiring sponsors</li>\r\n	<li>Joining publishing networks</li>\r\n	<li>Product reviews</li>\r\n	<li><span style=\"line-height: 1.5em;\">Other details that have/have not worked for me throughout the years</span></li>\r\n</ul>\r\n<h2 style=\"text-align: center;\">THE PLANS</h2>\r\n<h3>THE STAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a marketing plan\r\n<h3>THE STELLAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ 1 sixty minute follow up call at the end of the month\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a custom marketing plan for your blog\r\n<p style=\"text-align: center;\"><strong><a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">Contact me</a> for pricing and to set up your consultation and I so look forward to working with you!</strong></p>','\"State of Your Blog\" Blog Consultation','','inherit','closed','closed','','117-revision-v1','','','2014-03-14 18:30:39','2014-03-15 00:30:39','',117,'http://annieversalstudios.com/2014/03/117-revision-v1/',0,'revision','',0),(120,1,'2014-03-14 18:32:23','2014-03-15 00:32:23','You want to have the BEST blog out there but don\'t know where to begin. You like blogging or are looking to start blogging but have found \"blogland\" to be <em>overwhelming</em>.\r\n\r\nWell fear not because all bloggers have been there. Even those we think of today as \"big bloggers\" got started somehow.\r\n\r\n<strong>But you (yes, you!) can do something that I can bet you 99% of them <em>didn\'t</em> have:</strong> A personalized consultation into the \"State of Your Blog\" by yours truly!\r\n\r\nThat\'s right: I don\'t just design great websites--I also help people set up their sites and even help them make those sites better via various consultations. I\'ve been blogging for about four years, and in that time, I\'ve become privy to info that\'s sure to benefit all kinds of bloggers--from the newbie to the veteran.\r\n\r\nSo if you\'re just getting started OR have some months/years of blogging under your belt, then this opportunity is for YOU!\r\n<h3><span style=\"line-height: 1.5em;\">WHAT WE\'LL DISCUSS</span></h3>\r\n<ul>\r\n	<li>Overall first impression of your blog from an outsider\'s--me--point of view</li>\r\n	<li>Creating original content</li>\r\n	<li>Finding one’s voice in the blogging world</li>\r\n	<li>Using social media to promote your blog</li>\r\n	<li>Turning your blog into a business</li>\r\n	<li>Establishing a community</li>\r\n	<li>Approaching businesses and acquiring sponsors</li>\r\n	<li>Joining publishing networks</li>\r\n	<li>Product reviews</li>\r\n	<li><span style=\"line-height: 1.5em;\">Other details that have/have not worked for me throughout the years</span></li>\r\n</ul>\r\n<h2 style=\"text-align: center;\">THE PLANS</h2>\r\n<h3>THE STAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a marketing plan\r\n<h3>THE STELLAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ 1 sixty minute follow up call at the end of the month\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a custom marketing plan for your blog\r\n<p style=\"text-align: center;\"><strong><a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">Contact me</a> for pricing and to set up your consultation and I so look forward to working with you!</strong></p>','\"State of Your Blog\" Blog Consultation','','inherit','closed','closed','','117-revision-v1','','','2014-03-14 18:32:23','2014-03-15 00:32:23','',117,'http://annieversalstudios.com/2014/03/117-revision-v1/',0,'revision','',0),(121,1,'2014-03-15 12:29:50','2014-03-15 18:29:50','','StateBlog','','inherit','closed','closed','','stateblog','','','2014-03-15 12:29:50','2014-03-15 18:29:50','',117,'http://annieversalstudios.com/wp-content/uploads/2014/03/StateBlog.png',0,'attachment','image/png',0),(122,1,'2014-03-15 12:36:32','2014-03-15 18:36:32','<p style=\"text-align: center;\"><img class=\"aligncenter size-full wp-image-121\" style=\"line-height: 1.5em;\" alt=\"StateBlog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StateBlog.png\" width=\"850\" height=\"300\" /></p>\r\n<p style=\"text-align: center;\"><strong>Let\'s say you want to have the BEST blog out there but don\'t know where to begin.</strong></p>\r\n<p style=\"text-align: center;\"><strong>You may also enjoy blogging or are looking to start blogging but have found \"blogland\" to be <em>overwhelming</em>.</strong></p>\r\nWell fear not because all bloggers have been there. Even those we think of today as \"big bloggers\" got started somehow.\r\n\r\n<strong>But you (yes, you!) can do something that I can bet you 99% of them <em>didn\'t</em> have:</strong> A personalized consultation into the \"State of Your Blog\" by yours truly!\r\n\r\nThat\'s right: I don\'t just <a title=\"Portfolio\" href=\"http://annieversalstudios.com/portfolio/\">design great websites</a>--I also help people set up their sites and even help them make those sites better via various consultations. I\'ve been blogging for about four years, and in that time, I\'ve become privy to info that\'s sure to benefit all kinds of bloggers--from the newbie to the veteran.\r\n\r\nSo if you\'re just getting started OR have some months/years of blogging under your belt, then this opportunity is for YOU!\r\n<h3><span style=\"line-height: 1.5em;\">WHAT WE\'LL DISCUSS</span></h3>\r\n<ul>\r\n	<li>Overall first impression of your blog from an outsider\'s--me--point of view</li>\r\n	<li>Creating original content</li>\r\n	<li>The best plugins for your needs (WP blogs)</li>\r\n	<li>Joining publishing/ad networks: Should you? Which ones would be best?</li>\r\n	<li><span style=\"line-height: 1.5em;\">Using social media to promote your blog</span></li>\r\n	<li><span style=\"line-height: 1.5em;\">Approaching businesses and acquiring sponsors</span></li>\r\n	<li>Writing sweet product reviews and hosting giveaways</li>\r\n	<li><span style=\"line-height: 1.5em;\">Other details that have/have not worked for me throughout the years</span></li>\r\n</ul>\r\n<h2 style=\"text-align: center;\">THE PLANS</h2>\r\n<h3>THE STAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a marketing plan for your blog\r\n<h3>THE STELLAR PLAN</h3>\r\nOne (1) sixty minute video chat\r\n+ a 60-minute follow-up call after a month\r\n+ a written recap of everything discussed\r\n+ suggestions for goals\r\n+ a custom marketing plan for your blog\r\n<p style=\"text-align: center;\"><strong><a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">Contact me</a> for pricing and to set up your consultation and I so look forward to working with you!</strong></p>','\"State of Your Blog\" Blog Consultation','','inherit','closed','closed','','117-revision-v1','','','2014-03-15 12:36:32','2014-03-15 18:36:32','',117,'http://annieversalstudios.com/2014/03/117-revision-v1/',0,'revision','',0),(123,1,'2014-03-15 12:56:50','2014-03-15 18:56:50','','StarPlan','','inherit','closed','closed','','starplan','','','2014-03-15 12:56:50','2014-03-15 18:56:50','',117,'http://annieversalstudios.com/wp-content/uploads/2014/03/StarPlan.png',0,'attachment','image/png',0),(124,1,'2014-03-15 13:04:19','2014-03-15 19:04:19','','StellarPlan','','inherit','closed','closed','','stellarplan','','','2014-03-15 13:04:19','2014-03-15 19:04:19','',117,'http://annieversalstudios.com/wp-content/uploads/2014/03/StellarPlan.png',0,'attachment','image/png',0),(125,1,'2014-03-15 13:04:28','2014-03-15 19:04:28','<p style=\"text-align: center;\"><img class=\"aligncenter size-full wp-image-121\" style=\"line-height: 1.5em;\" alt=\"StateBlog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StateBlog.png\" width=\"850\" height=\"300\" /></p>\r\n<p style=\"text-align: center;\"><strong>Let\'s say you want to have the BEST blog out there but don\'t know where to begin.</strong></p>\r\n<p style=\"text-align: center;\"><strong>You may also enjoy blogging or are looking to start blogging but have found \"blogland\" to be <em>overwhelming</em>.</strong></p>\r\nWell fear not because all bloggers have been there. Even those we think of today as \"big bloggers\" got started somehow.\r\n\r\n<strong>But you (yes, you!) can do something that I can bet you 99% of them <em>didn\'t</em> have:</strong> A personalized consultation into the \"State of Your Blog\" by yours truly!\r\n\r\nThat\'s right: I don\'t just <a title=\"Portfolio\" href=\"http://annieversalstudios.com/portfolio/\">design great websites</a>--I also help people set up their sites and even help them make those sites better via various consultations. I\'ve been blogging for about four years, and in that time, I\'ve become privy to info that\'s sure to benefit all kinds of bloggers--from the newbie to the veteran.\r\n\r\nSo if you\'re just getting started OR have some months/years of blogging under your belt, then this opportunity is for YOU!\r\n<h3><span style=\"line-height: 1.5em;\">WHAT WE\'LL DISCUSS</span></h3>\r\n<ul>\r\n	<li>Overall first impression of your blog from an outsider\'s--me--point of view</li>\r\n	<li>Creating original content</li>\r\n	<li>The best plugins for your needs (WP blogs)</li>\r\n	<li>Joining publishing/ad networks: Should you? Which ones would be best?</li>\r\n	<li><span style=\"line-height: 1.5em;\">Using social media to promote your blog</span></li>\r\n	<li><span style=\"line-height: 1.5em;\">Approaching businesses and acquiring sponsors</span></li>\r\n	<li>Writing sweet product reviews and hosting giveaways</li>\r\n	<li><span style=\"line-height: 1.5em;\">Other details that have/have not worked for me throughout the years</span></li>\r\n</ul>\r\n<h2 style=\"text-align: center;\">THE PLANS</h2>\r\n<h3>THE STAR PLAN</h3>\r\n<img class=\"aligncenter size-full wp-image-123\" alt=\"One (1) sixty minute video chat + a written recap of everything discussed + suggestions for goals + a marketing plan for your blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StarPlan.png\" width=\"850\" height=\"180\" />\r\n<h3>THE STELLAR PLAN</h3>\r\n<img class=\"aligncenter size-full wp-image-124\" alt=\"One (1) sixty minute video chat + a 60-minute follow-up call after a month + a written recap of everything discussed + suggestions for goals + a custom marketing plan for your blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StellarPlan.png\" width=\"850\" height=\"180\" />\r\n<p style=\"text-align: center;\"><strong><a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">Contact me</a> for pricing and to set up your consultation and I so look forward to working with you!</strong></p>','\"State of Your Blog\" Blog Consultation','','inherit','closed','closed','','117-revision-v1','','','2014-03-15 13:04:28','2014-03-15 19:04:28','',117,'http://annieversalstudios.com/2014/03/117-revision-v1/',0,'revision','',0),(126,1,'2014-03-15 13:08:24','2014-03-15 19:08:24','<p style=\"text-align: center;\"><img class=\"aligncenter size-full wp-image-121\" style=\"line-height: 1.5em;\" alt=\"StateBlog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StateBlog.png\" width=\"850\" height=\"300\" /></p>\r\n<p style=\"text-align: center;\"><strong>Let\'s say you want to have the BEST blog out there but don\'t know where to begin.</strong></p>\r\n<p style=\"text-align: center;\"><strong>You may also enjoy blogging or are looking to start blogging but have found \"blogland\" to be <em>overwhelming</em>.</strong></p>\r\nWell fear not because all bloggers have been there. Even those we think of today as \"big bloggers\" got started somehow.\r\n\r\n<strong>But you (yes, you!) can do something that I can bet you 99% of them <em>didn\'t</em> have:</strong> A personalized consultation into the \"State of Your Blog\" by yours truly!\r\n\r\nThat\'s right: I don\'t just <a title=\"Portfolio\" href=\"http://annieversalstudios.com/portfolio/\">design great websites</a>--I also help people set up their sites and even help them make those sites better via various consultations. I\'ve been blogging for about four years, and in that time, I\'ve become privy to info that\'s sure to benefit all kinds of bloggers--from the newbie to the veteran.\r\n\r\nSo if you\'re just getting started OR have some months/years of blogging under your belt, then this opportunity is for YOU!\r\n<h3><span style=\"line-height: 1.5em;\">WHAT WE\'LL DISCUSS</span></h3>\r\n<ul>\r\n	<li>Overall first impression of your blog from an outsider\'s--me--point of view</li>\r\n	<li>Creating original content for <em>your</em> niche</li>\r\n	<li>The best plugins for your needs (WP blogs)</li>\r\n	<li>Joining publishing/ad networks: Should you? Which ones would be best?</li>\r\n	<li><span style=\"line-height: 1.5em;\">Using social media to promote your blog</span></li>\r\n	<li><span style=\"line-height: 1.5em;\">Approaching businesses and acquiring sponsors</span></li>\r\n	<li>Writing sweet product reviews and hosting fantastic giveaways</li>\r\n	<li><span style=\"line-height: 1.5em;\">Other details that have/have <em>not</em> worked for me throughout the years</span></li>\r\n	<li><em>Optional</em>: Formatting/coding assistance</li>\r\n</ul>\r\n<h2 style=\"text-align: center;\">THE PLANS</h2>\r\n<h3>THE STAR PLAN</h3>\r\n<img class=\"aligncenter size-full wp-image-123\" alt=\"One (1) sixty minute video chat + a written recap of everything discussed + suggestions for goals + a marketing plan for your blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StarPlan.png\" width=\"850\" height=\"180\" />\r\n<h3>THE STELLAR PLAN</h3>\r\n<img class=\"aligncenter size-full wp-image-124\" alt=\"One (1) sixty minute video chat + a 60-minute follow-up call after a month + a written recap of everything discussed + suggestions for goals + a custom marketing plan for your blog\" src=\"http://annieversalstudios.com/wp-content/uploads/2014/03/StellarPlan.png\" width=\"850\" height=\"180\" />\r\n<p style=\"text-align: center;\">-- -- --</p>\r\n<p style=\"text-align: center;\"><strong><a title=\"Contact\" href=\"http://annieversalstudios.com/contact/\">Contact me</a> for pricing and to set up your consultation and I so look forward to working with you!</strong></p>','\"State of Your Blog\" Blog Consultation','','inherit','closed','closed','','117-revision-v1','','','2014-03-15 13:08:24','2014-03-15 19:08:24','',117,'http://annieversalstudios.com/2014/03/117-revision-v1/',0,'revision','',0),(179,1,'2019-01-03 16:45:01','2019-01-03 23:45:01','','FAQs','','publish','closed','closed','','faqs','','','2019-03-20 15:43:26','2019-03-20 21:43:26','',0,'http://annieversalstudios.com/?p=179',3,'nav_menu_item','',0),(129,1,'2014-03-22 17:56:15','2014-03-22 23:56:15','&lt;&lt;&gt;&gt;','Clients','','inherit','closed','closed','','20-revision-v1','','','2014-03-22 17:56:15','2014-03-22 23:56:15','',20,'http://annieversalstudios.com/2014/03/20-revision-v1/',0,'revision','',0),(131,1,'2014-03-24 17:57:10','2014-03-24 23:57:10','<h3><strong>WHAT IS ANNIEVERSAL STUDIOS?</strong></h3>\r\nAnnieversal Studios is about you.\r\n\r\nI mean <em>we</em> work behind-the-scenes, but <em>our clients</em> are the ones who take care of business.\r\n\r\nAfter hearing/seeing the many compliments our personal blogs received from others AND realizing that there are still many beginner and experienced business people and bloggers out there who\'d like to (re)design their blogs and grow on, we decided to offer our pretty nifty site design services!\r\n\r\nWe\'re focused on providing these services with the highest levels of client satisfaction–<b>and we\'ll do everything we can to meet your expectations.</b>\r\n\r\n<b></b><strong style=\"font-size: 1.17em; line-height: 1.5em;\">WHY WE SHOULD WORK TOGETHER</strong>\r\n\r\nWe may not have Design degrees, but we\'re nevertheless a talented group of editors, marketers, and web designers who\'ve learned a few tricks that can help set ANY site or business apart.\r\n\r\n<b>We\'re also savvy enough to strike the perfect balance between form and function.</b>\r\n\r\n<b></b>We\'re dedicated, honest, trustworthy, super detail-oriented, go-above-and-beyond-ers, and we\'d LOVE the chance to work with you!','About','','inherit','closed','closed','','17-revision-v1','','','2014-03-24 17:57:10','2014-03-24 23:57:10','',17,'http://annieversalstudios.com/2014/03/17-revision-v1/',0,'revision','',0),(132,1,'2014-03-24 17:57:57','2014-03-24 23:57:57','&lt;&lt;&gt;&gt;','Portfolio','','inherit','closed','closed','','20-revision-v1','','','2014-03-24 17:57:57','2014-03-24 23:57:57','',20,'http://annieversalstudios.com/2014/03/20-revision-v1/',0,'revision','',0),(137,1,'2015-09-04 16:25:03','2015-09-04 22:25:03','','TRL 2015 Redesign','','inherit','closed','closed','','trlasportfolio','','','2015-09-04 16:25:15','2015-09-04 22:25:15','',60,'http://annieversalstudios.com/wp-content/uploads/2013/12/TRLASPortfolio.png',0,'attachment','image/png',0),(138,1,'2015-09-04 16:25:49','2015-09-04 22:25:49','<h4>NEW REDESIGN:</h4>\r\n<img class=\"aligncenter wp-image-137\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TRLASPortfolio.png\" alt=\"TRL 2015 Redesign\" width=\"873\" height=\"627\" />\r\n<h4>PREVIOUS REDESIGN:</h4>\r\n<img class=\"alignnone wp-image-61 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/TRL.jpg\" alt=\"The Ranting Latina Blog\" width=\"873\" height=\"591\" />\r\n\r\nThis is my blog,<strong> <a href=\"http://therantinglatina.com/\">The Ranting Latina</a></strong>!!! It features interactive social media icons, plus a host of other things I\'m a fan of :). If you like what you see on it, feel free to ask for it and I shall make it happen on your design.\r\n\r\n(This IS a Wordpress site, but I\'ve been able to replicate many of the features here on Blogger sites.)','The Ranting Latina','','inherit','closed','closed','','60-revision-v1','','','2015-09-04 16:25:49','2015-09-04 22:25:49','',60,'http://annieversalstudios.com/2015/09/60-revision-v1/',0,'revision','',0),(139,1,'2015-09-04 16:28:05','2015-09-04 22:28:05','','AlterCreations.net Redesign','','inherit','closed','closed','','acasportfolip','','','2015-09-04 16:28:21','2015-09-04 22:28:21','',50,'http://annieversalstudios.com/wp-content/uploads/2013/12/ACASPortfolip.png',0,'attachment','image/png',0),(140,1,'2015-09-04 16:29:25','2015-09-04 22:29:25','<h4>NEW REDESIGN FOR 2015:</h4>\r\n<img class=\"aligncenter wp-image-139\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ACASPortfolip.png\" alt=\"AlterCreations.net Redesign\" width=\"1008\" height=\"634\" />\r\n<h4></h4>\r\n<h4>OLD REDESIGN:</h4>\r\n<img class=\"alignnone wp-image-51 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg\" alt=\"Alter Creations Website\" width=\"1008\" height=\"668\" />\r\n\r\n<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\r\n\r\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in Park City and the nearby valley.\r\n\r\n<strong>Here\'s what the owner\'s said about each of the sites I\'ve designed for the shop over the years:</strong>\r\n<blockquote>I get compliments on it <em>all </em>the time! People tell me it\'s SO pretty, clear, and useful, that the <em>Directions</em> tool [on the <em>Contact Us</em> page] is incredible, and that it definitely helps set the shop apart. It\'s also helped sales increase ~70%, and we\'re so grateful.</blockquote>','Alter Creations','','inherit','closed','closed','','50-revision-v1','','','2015-09-04 16:29:25','2015-09-04 22:29:25','',50,'http://annieversalstudios.com/2015/09/50-revision-v1/',0,'revision','',0),(143,1,'2016-07-29 12:08:12','2016-07-29 18:08:12','','Alter Creations 2016 Redesign','','inherit','closed','closed','','shot-20160729-26328-rvvx9o','','','2016-07-29 12:08:30','2016-07-29 18:08:30','',50,'http://annieversalstudios.com/wp-content/uploads/2013/12/shot-20160729-26328-rvvx9o.png',0,'attachment','image/png',0),(144,1,'2016-07-29 12:11:19','2016-07-29 18:11:19','<h4>NEW REDESIGN FOR 2016:</h4>\r\n[caption id=\"attachment_143\" align=\"aligncenter\" width=\"1280\"]<img class=\"wp-image-143 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/shot-20160729-26328-rvvx9o.png\" alt=\"Alter Creations 2016 Redesign\" width=\"1280\" height=\"1816\" /> The header/Nav menu stays with you as you scroll. This is something I try to incorporate in all of my designs to enhance usability and user experience.[/caption]\r\n<h4>PREVIOUS REDESIGNS:</h4>\r\n<img class=\"wp-image-139 alignleft\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ACASPortfolip.png\" alt=\"AlterCreations.net Redesign\" width=\"1008\" height=\"634\" />\r\n\r\n;\r\n<img class=\"alignnone wp-image-51 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg\" alt=\"Alter Creations Website\" width=\"1008\" height=\"668\" />\r\n\r\n<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\r\n\r\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in two counties.\r\n\r\n<strong>Here\'s what the owner\'s said about each of the sites I\'ve designed for the shop over the years:</strong>\r\n<blockquote>I get compliments on it <em>ALL </em>the time! People tell me it\'s SO pretty, clear, and useful, that the <em>Directions</em> tool [on the <em>Contact Us</em> page] is incredible, and that it definitely helps set the shop apart. It\'s also helped sales increase ~70%, and we\'re so grateful.</blockquote>','Alter Creations','','inherit','closed','closed','','50-revision-v1','','','2016-07-29 12:11:19','2016-07-29 18:11:19','',50,'http://annieversalstudios.com/2016/07/50-revision-v1/',0,'revision','',0),(145,1,'2016-07-29 12:11:48','2016-07-29 18:11:48','','Alter Creations Site','','inherit','closed','closed','','screen-shot-2016-07-29-at-12-05-22-pm','','','2016-07-29 12:12:04','2016-07-29 18:12:04','',50,'http://annieversalstudios.com/wp-content/uploads/2013/12/Screen-Shot-2016-07-29-at-12.05.22-PM.png',0,'attachment','image/png',0),(147,1,'2016-10-26 14:36:09','2016-10-26 20:36:09','','ac-screenshot','','inherit','closed','closed','','ac-screenshot','','','2016-10-26 14:37:04','2016-10-26 20:37:04','',50,'http://annieversalstudios.com/wp-content/uploads/2013/12/AC-Screenshot.jpeg',0,'attachment','image/jpeg',0),(148,1,'2016-10-26 14:41:59','2016-10-26 20:41:59','<h4>NEW REDESIGNS FOR 2016:</h4>\r\n<img class=\"aligncenter size-full wp-image-147\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/AC-Screenshot.jpeg\" alt=\"AlterCreations.net\" width=\"1280\" height=\"2502\" />\r\n\r\nFrom earlier in 2016:\r\n\r\n[caption id=\"attachment_143\" align=\"aligncenter\" width=\"1280\"]<img class=\"wp-image-143 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/shot-20160729-26328-rvvx9o.png\" alt=\"Alter Creations 2016 Redesign\" width=\"1280\" height=\"1816\" /> The header/Nav menu stays with you as you scroll. This is something I try to incorporate in all of my designs to enhance usability and user experience.[/caption]\r\n<h4>PREVIOUS REDESIGNS:</h4>\r\n<img class=\"wp-image-139 alignleft\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/ACASPortfolip.png\" alt=\"AlterCreations.net Redesign\" width=\"1008\" height=\"634\" />\r\n\r\n;\r\n<img class=\"alignnone wp-image-51 size-full\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/screen-capture-2.jpg\" alt=\"Alter Creations Website\" width=\"1008\" height=\"668\" />\r\n\r\n<a href=\"http://altercreations.net/\">Alter Creations</a> is the top alterations and design shop in the Wasatch Front (Utah).\r\n\r\nThe owner needed a website that appealed to the shop\'s boutique-y nature but that was also serious and professional enough to transmit the fact that it is the #1 tailoring shop in two counties.\r\n\r\n<strong>Here\'s what the owner\'s said about each of the sites I\'ve designed for the shop over the years:</strong>\r\n<blockquote>I get compliments on it <em>ALL </em>the time! People tell me it\'s SO pretty, clear, and useful, that the <em>Directions</em> tool [on the <em>Contact Us</em> page] is incredible, and that it definitely helps set the shop apart. It\'s also helped sales increase ~70%, and we\'re so grateful.</blockquote>','Alter Creations','','inherit','closed','closed','','50-revision-v1','','','2016-10-26 14:41:59','2016-10-26 20:41:59','',50,'http://annieversalstudios.com/2016/10/50-revision-v1/',0,'revision','',0),(149,1,'2016-10-26 14:50:21','2016-10-26 20:50:21','','blogdesign','','inherit','closed','closed','','blogdesign','','','2016-10-26 14:50:21','2016-10-26 20:50:21','',17,'http://annieversalstudios.com/wp-content/uploads/2013/12/BlogDesign.jpg',0,'attachment','image/jpeg',0),(150,1,'2016-10-26 14:50:32','2016-10-26 20:50:32','<h3><strong><img class=\"aligncenter size-full wp-image-149\" src=\"http://annieversalstudios.com/wp-content/uploads/2013/12/BlogDesign.jpg\" alt=\"blogdesign\" width=\"1200\" height=\"1200\" />WHAT IS ANNIEVERSAL STUDIOS?</strong></h3>\r\nAnnieversal Studios is about you.\r\n\r\nI mean <em>we</em> work behind-the-scenes, but <em>our clients</em> are the ones who take care of business.\r\n\r\nAfter hearing/seeing the many compliments our personal blogs received from others AND realizing that there are still many beginner and experienced business people and bloggers out there who\'d like to (re)design their blogs and grow on, we decided to offer our pretty nifty site design services!\r\n\r\nWe\'re focused on providing these services with the highest levels of client satisfaction–<b>and we\'ll do everything we can to meet your expectations.</b>\r\n\r\n<b></b><strong style=\"font-size: 1.17em; line-height: 1.5em;\">WHY WE SHOULD WORK TOGETHER</strong>\r\n\r\nWe may not have Design degrees, but we\'re nevertheless a talented group of editors, marketers, and web designers who\'ve learned a few tricks that can help set ANY site or business apart.\r\n\r\n<b>We\'re also savvy enough to strike the perfect balance between form and function.</b>\r\n\r\n<b></b>We\'re dedicated, honest, trustworthy, super detail-oriented, go-above-and-beyond-ers, and we\'d LOVE the chance to work with you!','About','','inherit','closed','closed','','17-revision-v1','','','2016-10-26 14:50:32','2016-10-26 20:50:32','',17,'http://annieversalstudios.com/2016/10/17-revision-v1/',0,'revision','',0),(154,1,'2019-01-02 13:36:33','2019-01-02 20:36:33','','Annieversal-Favi','','inherit','closed','closed','','annieversal-favi','','','2019-01-02 13:36:33','2019-01-02 20:36:33','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/Annieversal-Favi.png',0,'attachment','image/png',0),(155,1,'2019-01-02 13:36:42','2019-01-02 20:36:42','https://annieversalstudios.com/wp-content/uploads/2019/01/cropped-Annieversal-Favi.png','cropped-Annieversal-Favi.png','','inherit','closed','closed','','cropped-annieversal-favi-png','','','2019-01-02 13:36:42','2019-01-02 20:36:42','',0,'https://annieversalstudios.com/wp-content/uploads/2019/01/cropped-Annieversal-Favi.png',0,'attachment','image/png',0),(163,1,'2019-01-02 14:07:27','2019-01-02 21:07:27','','AS-ReceiptBanner','','inherit','closed','closed','','as-receiptbanner','','','2019-01-02 14:07:27','2019-01-02 21:07:27','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/AS-ReceiptBanner.jpg',0,'attachment','image/jpeg',0),(164,1,'2019-01-02 17:03:59','2019-01-03 00:03:59','','Annieversal Studios Home Sunflowers','','inherit','closed','closed','','chastagner-thierry-1118352-unsplash','','','2019-01-02 17:04:20','2019-01-03 00:04:20','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/chastagner-thierry-1118352-unsplash.jpg',0,'attachment','image/jpeg',0),(166,1,'2019-01-02 17:36:17','2019-01-03 00:36:17','','Annie Wedding Day','','inherit','closed','closed','','170916_christopherannie_294','','','2019-01-02 17:36:31','2019-01-03 00:36:31','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/170916_ChristopherAnnie_294.jpg',0,'attachment','image/jpeg',0),(167,1,'2019-01-02 17:39:16','2019-01-03 00:39:16','','Annieversal-AWeddingHead','','inherit','closed','closed','','annieversal-aweddinghead','','','2019-01-02 17:39:16','2019-01-03 00:39:16','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/Annieversal-AWeddingHead.jpg',0,'attachment','image/jpeg',0),(168,1,'2019-01-02 20:36:35','2019-01-03 03:36:35','','Salt Lake City, Utah','','inherit','closed','closed','','img_6296-1','','','2019-01-02 20:36:48','2019-01-03 03:36:48','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/IMG_6296-1.jpg',0,'attachment','image/jpeg',0),(173,1,'2019-01-03 13:54:36','2019-01-03 20:54:36','<h1><span class=\"handwritten pull-left\">Hi there!</span></h1>\r\n\r\nI\'m Annie, the proud gal behind Annieversal Studios.\r\n\r\nI\'ve always loved crafting and I used to do it more when I was younger. I\'d mainly paint oil paintings and watercolors and make jewelry, clothes for my Barbies, and bookmarks. Then my growing passion for school began taking more of my time, and before I knew it, I wasn\'t crafting at all. The closest I\'d come to it was writing the occasional greeting card in pretty cursive, meticulously wrapping a gift, or decorating here and there.\r\n\r\nI missed crafting!\r\n\r\nIn early 2018 I realized I wanted to begin working with wood and create big, magical pieces to put around our home and gift to family and friends. But that same year, a seemingly random torso injury that began a couple years earlier began to worsen. After some research and work but without any help from doctors, this condition was found to have been likely caused by toxicity from a vaccine and prevented me from walking much or even standing for long periods of time.\r\n\r\nMy dreams of working with wood faded until I began a journey to improve my health and get out of that funk. I realized I didn\'t have to create big pieces (yet); instead, I could start small. Just like with my healing journey, it was all about the baby steps, and as my mood improved, so did my health!\r\n\r\nIn addition to knowing I could begin with small crafts, I took on more activities that enriched me and that I didn\'t have to stand or move around for, such as writing more (another passion) and hosting my very own podcast. Of course, our puppy ensures I DO have to move around so I have that part of my training covered :).\r\n\r\nAnd now here I am, having pivoted this years-old shop that I didn\'t maintain much from a place where you could buy custom designs for your blog to a place where you can get darling handmade decorations for your home or to gift to your loved ones. (Don\'t get me wrong: I still like digital marketing and design blogs and websites so contact me if you\'d like more info.)\r\n\r\nWoodworking is a lot of fun and I enjoy passing that passion on to the pieces I create. I hope you\'re able to feel that love!\r\n\r\nI invite you to go ahead and <a href=\"https://www.etsy.com/shop/AnnieversalStudios\">do some shopping</a>!','About','','inherit','closed','closed','','17-revision-v1','','','2019-01-03 13:54:36','2019-01-03 20:54:36','',17,'http://annieversalstudios.com/2019/01/17-revision-v1/',0,'revision','',0),(172,1,'2019-01-03 13:53:03','2019-01-03 20:53:03','<h1 class=\"huge\"><span class=\"handwritten pull-left\">Hi there!</h1>\r\n\r\nI\'m Annie, the proud gal behind Annieversal Studios.\r\n\r\nI\'ve always loved crafting and I used to do it more when I was younger. I\'d mainly paint oil paintings and watercolors and make jewelry, clothes for my Barbies, and bookmarks. Then my growing passion for school began taking more of my time, and before I knew it, I wasn\'t crafting at all. The closest I\'d come to it was writing the occasional greeting card in pretty cursive, meticulously wrapping a gift, or decorating here and there.\r\n\r\nI missed crafting!\r\n\r\nIn early 2018 I realized I wanted to begin working with wood and create big, magical pieces to put around our home and gift to family and friends. But that same year, a seemingly random torso injury that began a couple years earlier began to worsen. After some research and work but without any help from doctors, this condition was found to have been likely caused by toxicity from a vaccine and prevented me from walking much or even standing for long periods of time.\r\n\r\nMy dreams of working with wood faded until I began a journey to improve my health and get out of that funk. I realized I didn\'t have to create big pieces (yet); instead, I could start small. Just like with my healing journey, it was all about the baby steps, and as my mood improved, so did my health!\r\n\r\nIn addition to knowing I could begin with small crafts, I took on more activities that enriched me and that I didn\'t have to stand or move around for, such as writing more (another passion) and hosting my very own podcast. Of course, our puppy ensures I DO have to move around so I have that part of my training covered :).\r\n\r\nAnd now here I am, having pivoted this years-old shop that I didn\'t maintain much from a place where you could buy custom designs for your blog to a place where you can get darling handmade decorations for your home or to gift to your loved ones. (Don\'t get me wrong: I still like digital marketing and design blogs and websites so contact me if you\'d like more info.)\r\n\r\nWoodworking is a lot of fun and I enjoy passing that passion on to the pieces I create. I hope you\'re able to feel that love!\r\n\r\nI invite you to go ahead and <a href=\"https://www.etsy.com/shop/AnnieversalStudios\">do some shopping</a>!','About','','inherit','closed','closed','','17-revision-v1','','','2019-01-03 13:53:03','2019-01-03 20:53:03','',17,'http://annieversalstudios.com/2019/01/17-revision-v1/',0,'revision','',0),(204,1,'2019-01-08 17:09:52','2019-01-09 00:09:52','<h1 class=\"huge\"><span class=\"handwritten\">Hi there!</span></h1>\r\n<p style=\"text-align: right;\">I\'m Annie, the proud gal behind Annieversal Studios.</p>\r\nI\'ve always loved crafting and I used to do it more when I was younger. I\'d mainly paint oil paintings and watercolors and make jewelry, clothes for my Barbies, and bookmarks. Then my growing passion for school began taking more of my time, and before I knew it, I wasn\'t crafting at all. The closest I\'d come to it was writing the occasional greeting card in pretty cursive, meticulously wrapping a gift, or decorating here and there.\r\n\r\nI missed crafting!\r\n\r\nIn early 2018 I realized I wanted to begin working with wood and create big, magical pieces to put around our home and gift to family and friends. But that same year, a seemingly random torso injury that began a couple years earlier began to worsen. After some research and work but without any help from doctors, this condition was found to have been likely caused by toxicity from a vaccine and prevented me from walking much or even standing for long periods of time.\r\n\r\nMy dreams of working with wood faded until I began a journey to improve my health and get out of that funk. I realized I didn\'t have to create big pieces (yet); instead, I could start small. Just like with my healing journey, it was all about the baby steps, and as my mood improved, so did my health!\r\n\r\nIn addition to knowing I could begin with small crafts, I took on more activities that enriched me and that I didn\'t have to stand or move around for, such as writing more (another passion) and hosting my very own podcast. Of course, our puppy ensures I DO have to move around so I have that part of my training covered :).\r\n\r\nAnd now here I am, having pivoted this years-old shop that I didn\'t maintain much from a place where you could buy custom designs for your blog to a place where you can get darling handmade decorations for your home or to gift to your loved ones. (Don\'t get me wrong: I still like digital marketing and design blogs and websites so contact me if you\'d like more info.)\r\n\r\nWoodworking is a lot of fun and I enjoy passing that passion on to the pieces I create. I hope you\'re able to feel that love!','About','','inherit','closed','closed','','17-revision-v1','','','2019-01-08 17:09:52','2019-01-09 00:09:52','',17,'http://annieversalstudios.com/2019/01/17-revision-v1/',0,'revision','',0),(174,1,'2019-01-03 14:05:24','2019-01-03 21:05:24','<h1 class=\"huge\"><span class=\"handwritten\">Hi there!</span></h1>\r\n<p style=\"text-align: right;\">I\'m Annie, the proud gal behind Annieversal Studios.</p>\r\nI\'ve always loved crafting and I used to do it more when I was younger. I\'d mainly paint oil paintings and watercolors and make jewelry, clothes for my Barbies, and bookmarks. Then my growing passion for school began taking more of my time, and before I knew it, I wasn\'t crafting at all. The closest I\'d come to it was writing the occasional greeting card in pretty cursive, meticulously wrapping a gift, or decorating here and there.\r\n\r\nI missed crafting!\r\n\r\nIn early 2018 I realized I wanted to begin working with wood and create big, magical pieces to put around our home and gift to family and friends. But that same year, a seemingly random torso injury that began a couple years earlier began to worsen. After some research and work but without any help from doctors, this condition was found to have been likely caused by toxicity from a vaccine and prevented me from walking much or even standing for long periods of time.\r\n\r\nMy dreams of working with wood faded until I began a journey to improve my health and get out of that funk. I realized I didn\'t have to create big pieces (yet); instead, I could start small. Just like with my healing journey, it was all about the baby steps, and as my mood improved, so did my health!\r\n\r\nIn addition to knowing I could begin with small crafts, I took on more activities that enriched me and that I didn\'t have to stand or move around for, such as writing more (another passion) and hosting my very own podcast. Of course, our puppy ensures I DO have to move around so I have that part of my training covered :).\r\n\r\nAnd now here I am, having pivoted this years-old shop that I didn\'t maintain much from a place where you could buy custom designs for your blog to a place where you can get darling handmade decorations for your home or to gift to your loved ones. (Don\'t get me wrong: I still like digital marketing and design blogs and websites so contact me if you\'d like more info.)\r\n\r\nWoodworking is a lot of fun and I enjoy passing that passion on to the pieces I create. I hope you\'re able to feel that love!\r\n\r\nI invite you to go ahead and <a href=\"https://www.etsy.com/shop/AnnieversalStudios\">do some shopping</a>!','About','','inherit','closed','closed','','17-revision-v1','','','2019-01-03 14:05:24','2019-01-03 21:05:24','',17,'http://annieversalstudios.com/2019/01/17-revision-v1/',0,'revision','',0),(175,1,'2019-01-03 16:40:42','2019-01-03 23:40:42','<h2>• What does it mean that your designs are \"powered by the Golden Rule\"?</h2>\r\nIn short, <strong>I\'ve always sought to treat others they way I\'d like to be treated.</strong>\r\n\r\nMy digital marketing experience enabled me to open my own consultancy called ONESEVENTWELVE to help local small businesses grow online. I thoroughly enjoy helping them at rates they can afford so they don\'t consider marketing an unattainable investment. ONESEVENTWELVE\'s name comes from the place in the Bible where you can find the Golden Rule–the <strong>first</strong> of the Gospels (Matthew), <strong>Chapter 7</strong>, <strong>Verse 12 </strong>= ONE SEVEN TWELVE.\r\n\r\nI like to think of ONESEVENTWELVE as an \"umbrella\" company for all my ventures, including this darling shop, which is why my designs are <em>powered by the Golden Rule</em>.\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\r\n\r\nRead more in my <a href=\"http://annieversalstudios.com/returns/\">Returns Policy</a> page.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see some variation.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood and uniquely made pieces. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"https://mailchi.mp/9bf63d68050b/annieverse\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• I have shipping questions.</h2>\r\nI don\'t ship outside of the United States. If you\'re in the USA and would like to learn more about my shipping policy, click here to visit my <a href=\"/shipping\">Shipping Policy</a> page.','Frequently Asked Questions','','publish','closed','closed','','faqs','','','2019-03-20 16:08:10','2019-03-20 22:08:10','',0,'http://annieversalstudios.com/?page_id=175',0,'page','',0),(176,1,'2019-01-03 16:40:15','2019-01-03 23:40:15','<h2>What\'s the link to your Etsy shop?</h2>\r\n<a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">https://www.etsy.com/shop/AnnieversalStudios/</a>\r\n<h2>Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads.\r\n<h2>What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see variation in the grain and other facets.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>How do I find out about discounts and new products?</h2>\r\nFeel free to follow me on Instagram (<a href=\"https://instagram.com/annieversalstudios\">https://instagram.com/annieversalstudios</a>) and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>Do you ship outside the USA?</h2>\r\nNot yet!','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-01-03 16:40:15','2019-01-03 23:40:15','',175,'http://annieversalstudios.com/2019/01/175-revision-v1/',0,'revision','',0),(186,1,'2019-01-03 18:02:30','2019-01-04 01:02:30','<h2>• What\'s the link to your Etsy shop?</h2>\r\n<a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">https://www.etsy.com/shop/AnnieversalStudios/</a>\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see variation in the grain and other facets.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• Do you ship outside the USA?</h2>\r\nNot yet!','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-01-03 18:02:30','2019-01-04 01:02:30','',175,'http://annieversalstudios.com/2019/01/175-revision-v1/',0,'revision','',0),(177,1,'2019-01-03 16:40:42','2019-01-03 23:40:42','<h2>• What\'s the link to your Etsy shop?</h2>\r\n<a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">https://www.etsy.com/shop/AnnieversalStudios/</a>\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see variation in the grain and other facets.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to follow me on Instagram (<a href=\"https://instagram.com/annieversalstudios\">https://instagram.com/annieversalstudios</a>) and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• Do you ship outside the USA?</h2>\r\nNot yet!','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-01-03 16:40:42','2019-01-03 23:40:42','',175,'http://annieversalstudios.com/2019/01/175-revision-v1/',0,'revision','',0),(178,1,'2019-01-03 16:44:09','2019-01-03 23:44:09','','Shop (Coming Soon)!','','publish','closed','closed','','shop-on-etsy','','','2019-03-20 15:43:26','2019-03-20 21:43:26','',0,'http://annieversalstudios.com/?p=178',1,'nav_menu_item','',0),(181,1,'2019-01-03 17:48:37','2019-01-04 00:48:37','','Annieversal-SiteHeader','','inherit','closed','closed','','annieversal-siteheader','','','2019-01-03 17:48:37','2019-01-04 00:48:37','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/Annieversal-SiteHeader.png',0,'attachment','image/png',0),(183,1,'2019-01-03 17:49:56','2019-01-04 00:49:56','','cropped-Annieversal-SiteHeader.png','','inherit','closed','closed','','cropped-annieversal-siteheader-png','','','2019-01-03 17:49:56','2019-01-04 00:49:56','',0,'https://annieversalstudios.com/wp-content/uploads/2019/01/cropped-Annieversal-SiteHeader.png',0,'attachment','image/png',0),(184,1,'2019-01-03 17:58:10','2019-01-04 00:58:10','If your question isn\'t answered on my <em><a href=\"http://annieversalstudios.com/faqs/\">Frequently Asked Questions </a></em>page, feel free to <a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">drop me a line on Etsy</a>, <a href=\"https://instagram.com/annieversalstudios\">send me a direct message on Instagram</a>, or email me at <em>annie [at] annieversalstudios [dot] com</em>.\r\n<p style=\"text-align: center;\"><strong>Make today great!</strong></p>','Contact','','inherit','closed','closed','','24-revision-v1','','','2019-01-03 17:58:10','2019-01-04 00:58:10','',24,'http://annieversalstudios.com/2019/01/24-revision-v1/',0,'revision','',0),(185,1,'2019-01-03 18:01:07','2019-01-04 01:01:07','If your question isn\'t answered on my <em><a href=\"http://annieversalstudios.com/faqs/\">Frequently Asked Questions </a></em>page, feel free to <a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">drop me a line on Etsy</a>, <a href=\"https://instagram.com/annieversalstudios\">send me a direct message on Instagram</a>, or email me at <em>annie [at] annieversalstudios [dot] com</em>.\r\n\r\nDon\'t forget to <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to be among the first to receive sale and other cool updates.\r\n<p style=\"text-align: center;\"><strong>Make today great!</strong></p>','Contact','','inherit','closed','closed','','24-revision-v1','','','2019-01-03 18:01:07','2019-01-04 01:01:07','',24,'http://annieversalstudios.com/2019/01/24-revision-v1/',0,'revision','',0),(187,1,'2019-03-20 16:07:42','2019-03-20 22:07:42','<h2>• What does it mean that your designs are \"powered by the Golden Rule\"?</h2>\nIn short, <strong>I\'ve always sought to treat others they way I\'d like to be treated.</strong>\n\nMy digital marketing experience enabled me to open my own consultancy called ONESEVENTWELVE to help local small businesses grow online. I thoroughly enjoy helping them at rates they can afford so they don\'t consider marketing an unattainable investment.\n\nONESEVENTWELVE\'s name comes from the place in the Bible where you can find the Golden Rule–the <strong>first</strong> of the Gospels (Matthew), <strong>Chapter 7</strong>, <strong>Verse 12 </strong>= ONE SEVEN TWELVE.\n\nI like to think of ONESEVENTWELVE as an \"umbrella\" company for all my ventures, including this darling shop, which is why my designs are <em>powered by the Golden Rule</em>.\n<h2>• Do you accept returns or offer refunds?</h2>\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\n\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\n\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\n\nRead more in my <a href=\"http://annieversalstudios.com/returns/\">Returns Policy</a> page.\n<h2>• What if what I got ≠ the listing picture?</h2>\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see some variation.\n\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood and uniquely made pieces. I won\'t use wood that is not of the absolute highest quality.\n<h2>• How do I find out about discounts and new products?</h2>\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"https://mailchi.mp/9bf63d68050b/annieverse\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\n<h2>• How do your custom and personalized orders work?</h2>\nThis varies, according to the product.\n\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\n\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\n\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\n<h2>• I have shipping questions.</h2>\nI don\'t ship outside of the United States. If you\'re in the USA and would like to learn more about my shipping policy, click here to visit my <a href=\"/shipping\">Shipping Policy</a> page.','Frequently Asked Questions','','inherit','closed','closed','','175-autosave-v1','','','2019-03-20 16:07:42','2019-03-20 22:07:42','',175,'http://annieversalstudios.com/2019/01/175-autosave-v1/',0,'revision','',0),(190,1,'2019-01-05 14:43:34','2019-01-05 21:43:34','/* Buttons: Homepage Front Page 1 */\n\nbutton-white,\ninput[type=\"button-white\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\n.button-white,\na.button-white,\n.pagination:not(.adjacent-entry-pagination) a,\nbody.woocommerce-page nav.woocommerce-pagination ul li a,\nbody.woocommerce-page nav.woocommerce-pagination ul li span,\nbody.woocommerce-page #respond input#submit,\nbody.woocommerce-page a.button,\nbody.woocommerce-page button.button,\nbody.woocommerce-page button.button.alt,\nbody.woocommerce-page a.button.alt,\nbody.woocommerce-page input.button,\nbody.woocommerce-page button.button.alt.disabled,\nbody.woocommerce-page input.button.alt,\nbody.woocommerce-page input.button:disabled,\nbody.woocommerce-page input.button:disabled[disabled] {\n	background-color: #fff;\n	border-color: #fff;\n	border-radius: 0;\n	box-shadow: none;\n	border-width: 1px;\n	border-style: solid;\n	color: #000;\n	line-height: 1em !important;\n	font-family: \"Raleway\";\n	text-transform: uppercase;\n	font-weight: 500;\n	font-size: 10px;\n	letter-spacing: 1px;\n	cursor: pointer;\n	display: inline-block;\n	outline: none;\n	text-align: center;\n	padding: 12px 24px;\n	text-decoration: none;\n	width: auto;\n	white-space: nowrap;\n}\n\nbutton-white:hover,\ninput:hover[type=\"button-white\"],\ninput:hover[type=\"reset\"],\ninput:hover[type=\"submit\"],\n.button:hover,\n.pagination li a:hover,\nbody.woocommerce-page #respond input#submit:hover,\nbody.woocommerce-page a.button:hover,\nbody.woocommerce-page button.button:hover,\nbody.woocommerce-page button.button.alt:hover,\nbody.woocommerce-page button.button.alt.disabled:hover,\nbody.woocommerce-page a.button.alt:hover,\nbody.woocommerce-page input.button-white:hover,\nbody.woocommerce-page input.button.alt:hover {\n	background-color: transparent;\n	text-decoration: none;\n	color: #000;\n	opacity: 1;\n}\n\n.button-white.full-width {\n	display: block;\n	width: 100%;\n}\n\n.button-white.arrow-left:before,\n.button.arrow-right:after {\n	font-family: Ionicons;\n	vertical-align: top;\n}\n\n.button-white.arrow-right:after {\n	content: \"\\f30f\";\n	margin-left: 8px;\n}\n\n.button-white.arrow-right:hover:after {\n	margin-left: 12px;\n	margin-right: -4px;\n}\n\n.button-white.arrow-left:before {\n	content: \"\\f2ca\";\n	margin-right: 8px;\n}\n\n.button-white.arrow-left:hover:before {\n	margin-right: 12px;\n	margin-left: -4px;\n}\n\n/* H3: Homepage Front Page 1 */\n\nh3-homepage,\n.featured-content .entry-title {\n	font-size: 24px;\n  	line-height: 1.0;\n  	letter-spacing: 1px;\n}','boss-pro','','publish','closed','closed','','boss-pro','','','2019-01-05 14:48:35','2019-01-05 21:48:35','',0,'http://annieversalstudios.com/2019/01/boss-pro/',0,'custom_css','',0),(191,1,'2019-01-05 14:43:34','2019-01-05 21:43:34','button-white,\ninput[type=\"button-white\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\n.button-white,\na.button-white,\n.pagination:not(.adjacent-entry-pagination) a,\nbody.woocommerce-page nav.woocommerce-pagination ul li a,\nbody.woocommerce-page nav.woocommerce-pagination ul li span,\nbody.woocommerce-page #respond input#submit,\nbody.woocommerce-page a.button,\nbody.woocommerce-page button.button,\nbody.woocommerce-page button.button.alt,\nbody.woocommerce-page a.button.alt,\nbody.woocommerce-page input.button,\nbody.woocommerce-page button.button.alt.disabled,\nbody.woocommerce-page input.button.alt,\nbody.woocommerce-page input.button:disabled,\nbody.woocommerce-page input.button:disabled[disabled] {\n	background-color: #fff;\n	border-color: #fff;\n	border-radius: 0;\n	box-shadow: none;\n	border-width: 1px;\n	border-style: solid;\n	color: #000;\n	line-height: 1em !important;\n	font-family: \"Raleway\";\n	text-transform: uppercase;\n	font-weight: 500;\n	font-size: 10px;\n	letter-spacing: 1px;\n	cursor: pointer;\n	display: inline-block;\n	outline: none;\n	text-align: center;\n	padding: 12px 24px;\n	text-decoration: none;\n	width: auto;\n	white-space: nowrap;\n}\n\nbutton-white:hover,\ninput:hover[type=\"button-white\"],\ninput:hover[type=\"reset\"],\ninput:hover[type=\"submit\"],\n.button:hover,\n.pagination li a:hover,\nbody.woocommerce-page #respond input#submit:hover,\nbody.woocommerce-page a.button:hover,\nbody.woocommerce-page button.button:hover,\nbody.woocommerce-page button.button.alt:hover,\nbody.woocommerce-page button.button.alt.disabled:hover,\nbody.woocommerce-page a.button.alt:hover,\nbody.woocommerce-page input.button-white:hover,\nbody.woocommerce-page input.button.alt:hover {\n	background-color: transparent;\n	text-decoration: none;\n	color: #000;\n	opacity: 1;\n}\n\n.button-white.full-width {\n	display: block;\n	width: 100%;\n}\n\n.button-white.arrow-left:before,\n.button.arrow-right:after {\n	font-family: Ionicons;\n	vertical-align: top;\n}\n\n.button-white.arrow-right:after {\n	content: \"\\f30f\";\n	margin-left: 8px;\n}\n\n.button-white.arrow-right:hover:after {\n	margin-left: 12px;\n	margin-right: -4px;\n}\n\n.button-white.arrow-left:before {\n	content: \"\\f2ca\";\n	margin-right: 8px;\n}\n\n.button-white.arrow-left:hover:before {\n	margin-right: 12px;\n	margin-left: -4px;\n}\n','boss-pro','','inherit','closed','closed','','190-revision-v1','','','2019-01-05 14:43:34','2019-01-05 21:43:34','',190,'http://annieversalstudios.com/2019/01/190-revision-v1/',0,'revision','',0),(194,1,'2019-01-05 14:47:25','2019-01-05 21:47:25','/* Buttons: Homepage Front Page 1 */\n\nbutton-white,\ninput[type=\"button-white\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\n.button-white,\na.button-white,\n.pagination:not(.adjacent-entry-pagination) a,\nbody.woocommerce-page nav.woocommerce-pagination ul li a,\nbody.woocommerce-page nav.woocommerce-pagination ul li span,\nbody.woocommerce-page #respond input#submit,\nbody.woocommerce-page a.button,\nbody.woocommerce-page button.button,\nbody.woocommerce-page button.button.alt,\nbody.woocommerce-page a.button.alt,\nbody.woocommerce-page input.button,\nbody.woocommerce-page button.button.alt.disabled,\nbody.woocommerce-page input.button.alt,\nbody.woocommerce-page input.button:disabled,\nbody.woocommerce-page input.button:disabled[disabled] {\n	background-color: #fff;\n	border-color: #fff;\n	border-radius: 0;\n	box-shadow: none;\n	border-width: 1px;\n	border-style: solid;\n	color: #000;\n	line-height: 1em !important;\n	font-family: \"Raleway\";\n	text-transform: uppercase;\n	font-weight: 500;\n	font-size: 10px;\n	letter-spacing: 1px;\n	cursor: pointer;\n	display: inline-block;\n	outline: none;\n	text-align: center;\n	padding: 12px 24px;\n	text-decoration: none;\n	width: auto;\n	white-space: nowrap;\n}\n\nbutton-white:hover,\ninput:hover[type=\"button-white\"],\ninput:hover[type=\"reset\"],\ninput:hover[type=\"submit\"],\n.button:hover,\n.pagination li a:hover,\nbody.woocommerce-page #respond input#submit:hover,\nbody.woocommerce-page a.button:hover,\nbody.woocommerce-page button.button:hover,\nbody.woocommerce-page button.button.alt:hover,\nbody.woocommerce-page button.button.alt.disabled:hover,\nbody.woocommerce-page a.button.alt:hover,\nbody.woocommerce-page input.button-white:hover,\nbody.woocommerce-page input.button.alt:hover {\n	background-color: transparent;\n	text-decoration: none;\n	color: #000;\n	opacity: 1;\n}\n\n.button-white.full-width {\n	display: block;\n	width: 100%;\n}\n\n.button-white.arrow-left:before,\n.button.arrow-right:after {\n	font-family: Ionicons;\n	vertical-align: top;\n}\n\n.button-white.arrow-right:after {\n	content: \"\\f30f\";\n	margin-left: 8px;\n}\n\n.button-white.arrow-right:hover:after {\n	margin-left: 12px;\n	margin-right: -4px;\n}\n\n.button-white.arrow-left:before {\n	content: \"\\f2ca\";\n	margin-right: 8px;\n}\n\n.button-white.arrow-left:hover:before {\n	margin-right: 12px;\n	margin-left: -4px;\n}\n\n/* Title: Homepage Front Page 1 */\n\nh3-homepage,\n.featured-content .entry-title {\n	font-size: 24px;\n  	line-height: 1.0;\n  	letter-spacing: 3px;\n}','boss-pro','','inherit','closed','closed','','190-revision-v1','','','2019-01-05 14:47:25','2019-01-05 21:47:25','',190,'http://annieversalstudios.com/2019/01/190-revision-v1/',0,'revision','',0),(197,1,'2019-01-05 14:48:35','2019-01-05 21:48:35','/* Buttons: Homepage Front Page 1 */\n\nbutton-white,\ninput[type=\"button-white\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"],\n.button-white,\na.button-white,\n.pagination:not(.adjacent-entry-pagination) a,\nbody.woocommerce-page nav.woocommerce-pagination ul li a,\nbody.woocommerce-page nav.woocommerce-pagination ul li span,\nbody.woocommerce-page #respond input#submit,\nbody.woocommerce-page a.button,\nbody.woocommerce-page button.button,\nbody.woocommerce-page button.button.alt,\nbody.woocommerce-page a.button.alt,\nbody.woocommerce-page input.button,\nbody.woocommerce-page button.button.alt.disabled,\nbody.woocommerce-page input.button.alt,\nbody.woocommerce-page input.button:disabled,\nbody.woocommerce-page input.button:disabled[disabled] {\n	background-color: #fff;\n	border-color: #fff;\n	border-radius: 0;\n	box-shadow: none;\n	border-width: 1px;\n	border-style: solid;\n	color: #000;\n	line-height: 1em !important;\n	font-family: \"Raleway\";\n	text-transform: uppercase;\n	font-weight: 500;\n	font-size: 10px;\n	letter-spacing: 1px;\n	cursor: pointer;\n	display: inline-block;\n	outline: none;\n	text-align: center;\n	padding: 12px 24px;\n	text-decoration: none;\n	width: auto;\n	white-space: nowrap;\n}\n\nbutton-white:hover,\ninput:hover[type=\"button-white\"],\ninput:hover[type=\"reset\"],\ninput:hover[type=\"submit\"],\n.button:hover,\n.pagination li a:hover,\nbody.woocommerce-page #respond input#submit:hover,\nbody.woocommerce-page a.button:hover,\nbody.woocommerce-page button.button:hover,\nbody.woocommerce-page button.button.alt:hover,\nbody.woocommerce-page button.button.alt.disabled:hover,\nbody.woocommerce-page a.button.alt:hover,\nbody.woocommerce-page input.button-white:hover,\nbody.woocommerce-page input.button.alt:hover {\n	background-color: transparent;\n	text-decoration: none;\n	color: #000;\n	opacity: 1;\n}\n\n.button-white.full-width {\n	display: block;\n	width: 100%;\n}\n\n.button-white.arrow-left:before,\n.button.arrow-right:after {\n	font-family: Ionicons;\n	vertical-align: top;\n}\n\n.button-white.arrow-right:after {\n	content: \"\\f30f\";\n	margin-left: 8px;\n}\n\n.button-white.arrow-right:hover:after {\n	margin-left: 12px;\n	margin-right: -4px;\n}\n\n.button-white.arrow-left:before {\n	content: \"\\f2ca\";\n	margin-right: 8px;\n}\n\n.button-white.arrow-left:hover:before {\n	margin-right: 12px;\n	margin-left: -4px;\n}\n\n/* H3: Homepage Front Page 1 */\n\nh3-homepage,\n.featured-content .entry-title {\n	font-size: 24px;\n  	line-height: 1.0;\n  	letter-spacing: 1px;\n}','boss-pro','','inherit','closed','closed','','190-revision-v1','','','2019-01-05 14:48:35','2019-01-05 21:48:35','',190,'http://annieversalstudios.com/2019/01/190-revision-v1/',0,'revision','',0),(205,1,'2019-01-08 17:11:03','2019-01-09 00:11:03','<h2>• What\'s the link to your Etsy shop?</h2>\r\n<a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">https://www.etsy.com/shop/AnnieversalStudios/</a> <strong>[New ready-to-ship products coming soon!]</strong>\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see variation in the grain and other facets.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• Do you ship outside the USA?</h2>\r\nNot yet!','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-01-08 17:11:03','2019-01-09 00:11:03','',175,'http://annieversalstudios.com/2019/01/175-revision-v1/',0,'revision','',0),(206,1,'2019-01-08 17:15:49','2019-01-09 00:15:49','<h2>• What\'s the link to your Etsy shop?</h2>\r\n<a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">https://www.etsy.com/shop/AnnieversalStudios/</a> <strong>[New ready-to-ship products coming soon!]</strong>\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see variation in the grain and other facets.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• Do you ship outside the USA?</h2>\r\nNot yet!','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-01-08 17:15:49','2019-01-09 00:15:49','',175,'http://annieversalstudios.com/2019/01/175-revision-v1/',0,'revision','',0),(210,1,'2019-01-18 18:47:42','2019-01-19 01:47:42','','AnnieversalStudios-Homepage-Ornaments','','inherit','closed','closed','','annieversalstudios-homepage-ornaments','','','2019-01-18 18:47:42','2019-01-19 01:47:42','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/AnnieversalStudios-Homepage-Ornaments.jpg',0,'attachment','image/jpeg',0),(212,1,'2019-01-18 18:51:54','2019-01-19 01:51:54','','AnnieversalStudios-Homepage-Painting2','','inherit','closed','closed','','annieversalstudios-homepage-painting2','','','2019-01-18 18:51:54','2019-01-19 01:51:54','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/AnnieversalStudios-Homepage-Painting2.jpg',0,'attachment','image/jpeg',0),(214,1,'2019-01-18 18:57:32','2019-01-19 01:57:32','','AnnieversalStudios-Homepage-SunflowerPyro','','inherit','closed','closed','','annieversalstudios-homepage-sunflowerpyro','','','2019-01-18 18:57:32','2019-01-19 01:57:32','',0,'http://annieversalstudios.com/wp-content/uploads/2019/01/AnnieversalStudios-Homepage-SunflowerPyro.jpg',0,'attachment','image/jpeg',0),(216,1,'2019-01-18 19:00:38','2019-01-19 02:00:38','<h1 class=\"huge\"><span class=\"handwritten\">Hi there!</span></h1>\r\n<p style=\"text-align: right;\">I\'m Annie, the proud gal behind Annieversal Studios.</p>\r\nI\'ve always loved crafting and I used to do it more when I was younger. I\'d mainly paint oil paintings and watercolors and make jewelry, clothes for my Barbies, and bookmarks. Then my growing passion for school began taking more of my time, and before I knew it, I wasn\'t crafting at all. The closest I\'d come to it was writing the occasional greeting card in pretty cursive, meticulously wrapping a gift, or decorating here and there.\r\n\r\nI missed crafting!\r\n\r\nIn early 2018 I realized I wanted to begin working with wood and create big, magical pieces to put around our home and gift to family and friends. But that same year, a seemingly random torso injury that began a couple years earlier began to worsen. After some research and work but without any help from doctors, this condition was found to have been likely caused by toxicity from a vaccine and prevented me from walking much or even standing for long periods of time.\r\n\r\nMy dreams of working with wood faded until I began a journey to improve my health and get out of that funk.\r\n\r\nI realized I didn\'t have to create big pieces (yet); instead, I could start small. Just like with my healing journey, it was all about the baby steps, and as my mood improved (with no drugs–never any drugs), so did my health!\r\n\r\nIn addition to knowing I could begin with small crafts, I took on more activities that enriched me and that I didn\'t have to stand or move around for, such as writing more (another passion) and hosting my very own podcast. Of course, our puppy ensures I DO have to move around so I have that part of my training covered :).\r\n\r\nAnd now here I am, having pivoted this years-old shop that I didn\'t maintain much from a place where you could buy custom designs for your blog to a place where you can get darling handmade decorations for your home or to gift to your loved ones.\r\n\r\n(Don\'t get me wrong: I still like digital marketing and design blogs and websites so contact me if you\'d like more info.)\r\n\r\nWoodworking is a lot of fun and I enjoy passing that passion on to the pieces I create. I hope you\'re able to feel that love!','About','','inherit','closed','closed','','17-revision-v1','','','2019-01-18 19:00:38','2019-01-19 02:00:38','',17,'http://annieversalstudios.com/2019/01/17-revision-v1/',0,'revision','',0),(217,1,'2019-01-18 19:03:23','2019-01-19 02:03:23','<h2>• What\'s the link to your Etsy shop?</h2>\r\n<a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">https://www.etsy.com/shop/AnnieversalStudios/</a> <strong>[New ready-to-ship products coming soon!]</strong>\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see some variation.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood and uniquely made pieces. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• Do you ship outside the USA?</h2>\r\nNot yet!','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-01-18 19:03:23','2019-01-19 02:03:23','',175,'http://annieversalstudios.com/2019/01/175-revision-v1/',0,'revision','',0),(219,1,'2019-03-16 21:04:29','2019-03-17 03:04:29','','Shop','','publish','closed','closed','','shop','','','2019-03-16 21:04:29','2019-03-17 03:04:29','',0,'http://annieversalstudios.com/?page_id=219',0,'page','',0),(220,1,'2019-03-16 21:04:29','2019-03-17 03:04:29','','Shop','','inherit','closed','closed','','219-revision-v1','','','2019-03-16 21:04:29','2019-03-17 03:04:29','',219,'http://annieversalstudios.com/2019/03/219-revision-v1/',0,'revision','',0),(222,1,'2019-03-16 21:06:51','2019-03-17 03:06:51','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2019-03-16 21:06:51','2019-03-17 03:06:51','',0,'http://annieversalstudios.com/cart/',0,'page','',0),(223,1,'2019-03-16 21:06:51','2019-03-17 03:06:51','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout','','','2019-03-16 21:06:51','2019-03-17 03:06:51','',0,'http://annieversalstudios.com/checkout/',0,'page','',0),(224,1,'2019-03-16 21:06:51','2019-03-17 03:06:51','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2019-03-16 21:06:51','2019-03-17 03:06:51','',0,'http://annieversalstudios.com/my-account/',0,'page','',0),(225,1,'2019-03-16 21:16:05','2019-03-17 03:16:05','<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps2_zpsf754eda5.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Steps_zpsa9ac291a.png\" border=\"0\" /></center>\r\n<h3>ONE: BROWSE</h3>\r\nBrowse through my <a title=\"Design Options\" href=\"http://annieversalstudios.com/get-started/design-options/\"><strong>Design Options</strong></a> or through my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\" rel=\"noopener noreferrer\">Annieversal Studios</a></b>. Don\'t forget there are discounts with the purchase of more than one package!\r\n\r\n<center>\r\n<img onmouseover=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts2_zps91dd0a68.png\'\" onmouseout=\"this.src=\'http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\'\" alt=\"\" src=\"http://i1031.photobucket.com/albums/y373/apaulished/Annieversal/Discounts_zpsad14c9ac.png\" border=\"0\" /></center>\r\n<div style=\"text-align: left;\"><b>W/the purchase of either a CUSTOM BLOG DESIGN or a CUSTOM BLOG WIDGETS package, you\'ll get...</b></div>\r\n<div style=\"text-align: left;\">\r\n<ul>\r\n	<li>$3 off a CUSTOM SIGNATURE</li>\r\n	<li>$3 off a TOP-OF-PAGE BUTTON</li>\r\n	<li>$5 off a FACEBOOK COVER</li>\r\n	<li>$5 off a TWITTER PAGE</li>\r\n	<li>$5 off a SOCIAL MEDIA BAR</li>\r\n</ul>\r\n</div>\r\n<h3><strong>TWO: PURCHASE</strong></h3>\r\nPurchase a package: Send an email to annie [at] annieversalstudios [dot] com to let me know you\'d like a spot and I\'ll send you my PayPal info.\r\n\r\nIf you\'d like the process to go down a bit quicker, then feel free to purchase your desired option on my Etsy shop, <b><a href=\"https://www.etsy.com/shop/annieversalstudios\" target=\"_blank\" rel=\"noopener noreferrer\">Annieversal Studios</a></b>. If Etsy doesn\'t apply the discount automatically, let me know and I\'ll gladly refund the difference.\r\n<h3><strong>THREE: DIRECTION</strong></h3>\r\nWatch out for an email from me as it contains a very important form with questions to help us determine the direction of your design.\r\n<h3><strong>FOUR: REDESIGN</strong></h3>\r\nStand by as I redesign your blog. I\'ve delivered designs in just a few days, but I ask for up to three weeks, <i>just in case</i>. (Remember I\'ll also need to become an Admin so I can preview things as I go!)\r\n<h3><strong>FIVE: CHANGES?</strong></h3>\r\n<strong></strong>Propose any changes. (Keep in mind that five revisions are included w/the purchase of each option/package.)\r\n<h3><strong>SIX: DONE! </strong></h3>\r\nWe\'re finished! Feel free to remove me as an Admin and enjoy your design ;)! I\'d also love it if you submitted a testimonial. (I\'ll send you a Testimonial form.) YOU ROCK!!!','Get Started','','inherit','closed','closed','','22-revision-v1','','','2019-03-16 21:16:05','2019-03-17 03:16:05','',22,'http://annieversalstudios.com/2019/03/22-revision-v1/',0,'revision','',0),(226,1,'2019-03-17 14:23:28','2019-03-17 20:23:28','','WELCOME10','10% off your first purchase on AnnieversalStudios.com','publish','closed','closed','','welcome10','','','2019-03-17 14:23:28','2019-03-17 20:23:28','',0,'http://annieversalstudios.com/?post_type=shop_coupon&#038;p=226',0,'shop_coupon','',0),(227,1,'2019-03-17 14:25:38','2019-03-17 20:25:38','','BIRTHDAY10','10% off your order on AnnieversalStudios.com during your birthday month.','publish','closed','closed','','birthday10','','','2019-03-17 14:25:38','2019-03-17 20:25:38','',0,'http://annieversalstudios.com/?post_type=shop_coupon&#038;p=227',0,'shop_coupon','',0),(230,1,'2019-03-18 14:28:56','0000-00-00 00:00:00','','signup10','','draft','closed','closed','','','','','2019-03-18 14:28:56','2019-03-18 20:28:56','',0,'http://annieversalstudios.com/?post_type=shop_coupon&#038;p=230',0,'shop_coupon','',0),(231,1,'2019-03-18 14:31:38','2019-03-18 20:31:38','','signup10','10% off your purchase on AnnieversalStudios.com as a Thanks for joining my List.','publish','closed','closed','','signup10','','','2019-03-18 14:52:42','2019-03-18 20:52:42','',0,'http://annieversalstudios.com/?post_type=shop_coupon&#038;p=231',0,'shop_coupon','',0),(232,1,'2019-03-18 18:34:28','2019-03-19 00:34:28','','next10','10% off your purchase on AnnieversalStudios.com as a Thanks for your first order.','publish','closed','closed','','next10','','','2019-03-18 18:34:28','2019-03-19 00:34:28','',0,'http://annieversalstudios.com/?post_type=shop_coupon&#038;p=232',0,'shop_coupon','',0),(233,1,'2019-03-18 20:27:08','2019-03-19 02:27:08','<h2><span style=\"font-weight: 400;\">Annieversal Studios TERMS OF SERVICE</span></h2>\r\n<h3><span style=\"font-weight: 400;\">OVERVIEW</span></h3>\r\n<span style=\"font-weight: 400;\">This website is operated by Annieversal Studios. Throughout the site, the terms “I,” “we,” “us,” and “our” refer to Annieversal Studios. Annieversal Studios offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here.</span>\r\n\r\n<span style=\"font-weight: 400;\">By visiting our site and/or purchasing something from us, you engage in our “Service” and agree to be bound by the following terms and conditions (“Terms of Service”, “Terms”), including those additional terms and conditions and policies referenced herein and/or available by hyperlink. These Terms of Service apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and/ or contributors of content.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please read these Terms of Service carefully before accessing or using our website. By accessing or using any part of the site, you agree to be bound by these Terms of Service. If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. If these Terms of Service are considered an offer, acceptance is expressly limited to these Terms of Service.</span>\r\n\r\n<span style=\"font-weight: 400;\">Any new features or tools which are added to the current store shall also be subject to the Terms of Service. You can review the most current version of the Terms of Service at any time on this page. We reserve the right to update, change or replace any part of these Terms of Service by posting updates and/or changes to our website. It is your responsibility to check this page periodically for changes. Your continued use of or access to the website following the posting of any changes constitutes acceptance of those changes.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 1 - ONLINE STORE TERMS</span></h3>\r\n<span style=\"font-weight: 400;\">By agreeing to these Terms of Service, you represent that you are at least the age of majority in your state or province of residence, or that you are the age of majority in your state or province of residence and you have given us your consent to allow any of your minor dependents to use this site.</span>\r\n\r\n<span style=\"font-weight: 400;\">You may not use our products for any illegal or unauthorized purpose nor may you, in the use of the Service, violate any laws in your jurisdiction (including but not limited to copyright laws).</span>\r\n\r\n<span style=\"font-weight: 400;\">You must not transmit any worms or viruses or any code of a destructive nature.</span>\r\n\r\n<span style=\"font-weight: 400;\">A breach or violation of any of the Terms will result in an immediate termination of your Services.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 2 - GENERAL CONDITIONS</span></h3>\r\n<span style=\"font-weight: 400;\">We reserve the right to refuse service to anyone for any reason at any time.</span>\r\n\r\n<span style=\"font-weight: 400;\">You understand that your content (not including credit card information), may be transferred unencrypted and involve (a) transmissions over various networks; and (b) changes to conform and adapt to technical requirements of connecting networks or devices. Credit card information is always encrypted during transfer over networks.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree not to reproduce, duplicate, copy, sell, resell or exploit any portion of the Service, use of the Service, or access to the Service or any contact on the website through which the service is provided, without express written permission by us.</span>\r\n\r\n<span style=\"font-weight: 400;\">The headings used in this agreement are included for convenience only and will not limit or otherwise affect these Terms.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 3 - ACCURACY, COMPLETENESS AND TIMELINESS OF INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">We are not responsible if information made available on this site is not accurate, complete or current. The material on this site is provided for general information only and should not be relied upon or used as the sole basis for making decisions without consulting primary, more accurate, more complete or more timely sources of information. Any reliance on the material on this site is at your own risk.</span>\r\n\r\n<span style=\"font-weight: 400;\">This site may contain certain historical information. Historical information, necessarily, is not current and is provided for your reference only. We reserve the right to modify the contents of this site at any time, but we have no obligation to update any information on our site. You agree that it is your responsibility to monitor changes to our site.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 4 - MODIFICATIONS TO THE SERVICE AND PRICES</span></h3>\r\n<span style=\"font-weight: 400;\">Prices for our products are subject to change without notice.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right at any time to modify or discontinue the Service (or any part or content thereof) without notice at any time.</span>\r\n\r\n<span style=\"font-weight: 400;\">We shall not be liable to you or to any third-party for any modification, price change, suspension or discontinuance of the Service.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 5 - PRODUCTS OR SERVICES</span></h3>\r\n<span style=\"font-weight: 400;\">Certain products or services may be available exclusively online through the website. These products or services may have limited quantities and are subject to return or exchange only according to our Return Policy.</span>\r\n\r\n<span style=\"font-weight: 400;\">We have made every effort to display as accurately as possible the colors and images of our products that appear on the site or at our pop-up stores. We cannot guarantee that your computer monitor\'s display of any color will be accurate.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right, but are not obligated, to limit the sales of our products or Services to any person, geographic region or jurisdiction. We may exercise this right on a case-by-case basis. We reserve the right to limit the quantities of any products or services that we offer. All descriptions of products or product pricing are subject to change at anytime without notice, at the sole discretion of us. We reserve the right to discontinue any product at any time. Any offer for any product or service made on this site is void where prohibited.</span>\r\n\r\n<span style=\"font-weight: 400;\">We do not warrant that the quality of any products, services, information, or other material purchased or obtained by you will meet your expectations, or that any errors in the Service will be corrected.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 6 - ACCURACY OF BILLING AND ACCOUNT INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">We reserve the right to refuse any order you place with us. We may, in our sole discretion, limit or cancel quantities purchased per person, per household or per order. These restrictions may include orders placed by or under the same customer account, the same credit card, and/or orders that use the same billing and/or shipping address. In the event that we make a change to or cancel an order, we may attempt to notify you by contacting the e-mail and/or billing address/phone number provided at the time the order was made. We reserve the right to limit or prohibit orders that, in our sole judgment, appear to be placed by dealers, resellers or distributors.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree to provide current, complete and accurate purchase and account information for all purchases made at our store. You agree to promptly update your account and other information, including your email address and credit card numbers and expiration dates, so that we can complete your transactions and contact you as needed.</span>\r\n\r\n<span style=\"font-weight: 400;\">For more detail, please review our Returns Policy.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 7 - OPTIONAL TOOLS</span></h3>\r\n<span style=\"font-weight: 400;\">We may provide you with access to third-party tools over which we neither monitor nor have any control nor input.</span>\r\n\r\n<span style=\"font-weight: 400;\">You acknowledge and agree that we provide access to such tools ”as is” and “as available” without any warranties, representations or conditions of any kind and without any endorsement. We shall have no liability whatsoever arising from or relating to your use of optional third-party tools.</span>\r\n\r\n<span style=\"font-weight: 400;\">Any use by you of optional tools offered through the site is entirely at your own risk and discretion and you should ensure that you are familiar with and approve of the terms on which tools are provided by the relevant third-party provider(s).</span>\r\n\r\n<span style=\"font-weight: 400;\">We may also, in the future, offer new services and/or features through the website (including, the release of new tools and resources). Such new features and/or services shall also be subject to these Terms of Service.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 8 - THIRD-PARTY LINKS</span></h3>\r\n<span style=\"font-weight: 400;\">Certain content, products and services available via our Service may include materials from third-parties.</span>\r\n\r\n<span style=\"font-weight: 400;\">Third-party links on this site may direct you to third-party websites that are not affiliated with us. We are not responsible for examining or evaluating the content or accuracy and we do not warrant and will not have any liability or responsibility for any third-party materials or websites, or for any other materials, products, or services of third-parties.</span>\r\n\r\n<span style=\"font-weight: 400;\">We are not liable for any harm or damages related to the purchase or use of goods, services, resources, content, or any other transactions made in connection with any third-party websites. Please review carefully the third-party\'s policies and practices and make sure you understand them before you engage in any transaction. Complaints, claims, concerns, or questions regarding third-party products should be directed to the third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 9 - USER COMMENTS, FEEDBACK AND OTHER SUBMISSIONS</span></h3>\r\n<span style=\"font-weight: 400;\">If, at our request, you send certain specific submissions (for example contest entries) or without a request from us you send creative ideas, suggestions, proposals, plans, or other materials, whether online, by email, by postal mail, or otherwise (collectively, \'comments\'), you agree that we may, at any time, without restriction, edit, copy, publish, distribute, translate and otherwise use in any medium any comments that you forward to us. We are and shall be under no obligation (1) to maintain any comments in confidence; (2) to pay compensation for any comments; or (3) to respond to any comments.</span>\r\n\r\n<span style=\"font-weight: 400;\">We may, but have no obligation to, monitor, edit or remove content that we determine in our sole discretion are unlawful, offensive, threatening, libelous, defamatory, pornographic, obscene or otherwise objectionable or violates any party’s intellectual property or these Terms of Service.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree that your comments will not violate any right of any third-party, including copyright, trademark, privacy, personality or other personal or proprietary right. You further agree that your comments will not contain libelous or otherwise unlawful, abusive or obscene material, or contain any computer virus or other malware that could in any way affect the operation of the Service or any related website. You may not use a false e-mail address, pretend to be someone other than yourself, or otherwise mislead us or third-parties as to the origin of any comments. You are solely responsible for any comments you make and their accuracy. We take no responsibility and assume no liability for any comments posted by you or any third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 10 - PERSONAL INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">Your submission of personal information through the store is governed by our Privacy Policy. Click here to view our Privacy Policy.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 11 - ERRORS, INACCURACIES AND OMISSIONS</span></h3>\r\n<span style=\"font-weight: 400;\">Occasionally there may be information on our site or in the Service that contains typographical errors, inaccuracies or omissions that may relate to product descriptions, pricing, promotions, offers, product shipping charges, transit times and availability. We reserve the right to correct any errors, inaccuracies or omissions, and to change or update information or cancel orders if any information in the Service or on any related website is inaccurate at any time without prior notice (including after you have submitted your order).</span>\r\n\r\n<span style=\"font-weight: 400;\">We undertake no obligation to update, amend or clarify information in the Service or on any related website, including without limitation, pricing information, except as required by law. No specified update or refresh date applied in the Service or on any related website, should be taken to indicate that all information in the Service or on any related website has been modified or updated.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 12 - PROHIBITED USES</span></h3>\r\n<span style=\"font-weight: 400;\">In addition to other prohibitions as set forth in the Terms of Service, you are prohibited from using the site or its content: (a) for any unlawful purpose; (b) to solicit others to perform or participate in any unlawful acts; (c) to violate any international, federal, provincial or state regulations, rules, laws, or local ordinances; (d) to infringe upon or violate our intellectual property rights or the intellectual property rights of others; (e) to harass, abuse, insult, harm, defame, slander, disparage, intimidate, or discriminate based on gender, sexual orientation, religion, ethnicity, race, age, national origin, or disability; (f) to submit false or misleading information; (g) to upload or transmit viruses or any other type of malicious code that will or may be used in any way that will affect the functionality or operation of the Service or of any related website, other websites, or the Internet; (h) to collect or track the personal information of others; (i) to spam, phish, pharm, pretext, spider, crawl, or scrape; (j) for any obscene or immoral purpose; or (k) to interfere with or circumvent the security features of the Service or any related website, other websites, or the Internet. We reserve the right to terminate your use of the Service or any related website for violating any of the prohibited uses.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 13 - DISCLAIMER OF WARRANTIES; LIMITATION OF LIABILITY</span></h3>\r\n<span style=\"font-weight: 400;\">We do not guarantee, represent or warrant that your use of our service will be uninterrupted, timely, secure or error-free.</span>\r\n\r\n<span style=\"font-weight: 400;\">We do not warrant that the results that may be obtained from the use of the service will be accurate or reliable.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree that from time to time we may remove the service for indefinite periods of time or cancel the service at any time, without notice to you.</span>\r\n\r\n<span style=\"font-weight: 400;\">You expressly agree that your use of, or inability to use, the service is at your sole risk. The service and all products and services delivered to you through the service are (except as expressly stated by us) provided \'as is\' and \'as available\' for your use, without any representation, warranties or conditions of any kind, either express or implied, including all implied warranties or conditions of merchantability, merchantable quality, fitness for a particular purpose, durability, title, and non-infringement.</span>\r\n\r\n<span style=\"font-weight: 400;\">In no case shall Annieversal Studios, our directors, officers, employees, affiliates, agents, contractors, interns, suppliers, service providers or licensors be liable for any injury, loss, claim, or any direct, indirect, incidental, punitive, special, or consequential damages of any kind, including, without limitation lost profits, lost revenue, lost savings, loss of data, replacement costs, or any similar damages, whether based in contract, tort (including negligence), strict liability or otherwise, arising from your use of any of the service or any products procured using the service, or for any other claim related in any way to your use of the service or any product, including, but not limited to, any errors or omissions in any content, or any loss or damage of any kind incurred as a result of the use of the service or any content (or product) posted, transmitted, or otherwise made available via the service, even if advised of their possibility. Because some states or jurisdictions do not allow the exclusion or the limitation of liability for consequential or incidental damages, in such states or jurisdictions, our liability shall be limited to the maximum extent permitted by law.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 14 - INDEMNIFICATION</span></h3>\r\n<span style=\"font-weight: 400;\">You agree to indemnify, defend and hold harmless Annieversal Studios and our parent, subsidiaries, affiliates, partners, officers, directors, agents, contractors, licensors, service providers, subcontractors, suppliers, interns and employees, harmless from any claim or demand, including reasonable attorneys’ fees, made by any third-party due to or arising out of your breach of these Terms of Service or the documents they incorporate by reference, or your violation of any law or the rights of a third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 15 - SEVERABILITY</span></h3>\r\n<span style=\"font-weight: 400;\">In the event that any provision of these Terms of Service is determined to be unlawful, void or unenforceable, such provision shall nonetheless be enforceable to the fullest extent permitted by applicable law, and the unenforceable portion shall be deemed to be severed from these Terms of Service, such determination shall not affect the validity and enforceability of any other remaining provisions.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 16 - TERMINATION</span></h3>\r\n<span style=\"font-weight: 400;\">The obligations and liabilities of the parties incurred prior to the termination date shall survive the termination of this agreement for all purposes.</span>\r\n\r\n<span style=\"font-weight: 400;\">These Terms of Service are effective unless and until terminated by either you or us. You may terminate these Terms of Service at any time by notifying us that you no longer wish to use our Services, or when you cease using our site.</span>\r\n\r\n<span style=\"font-weight: 400;\">If in our sole judgment you fail, or we suspect that you have failed, to comply with any term or provision of these Terms of Service, we also may terminate this agreement at any time without notice and you will remain liable for all amounts due up to and including the date of termination; and/or accordingly may deny you access to our Services (or any part thereof).</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 17 - ENTIRE AGREEMENT</span></h3>\r\n<span style=\"font-weight: 400;\">The failure of us to exercise or enforce any right or provision of these Terms of Service shall not constitute a waiver of such right or provision.</span>\r\n\r\n<span style=\"font-weight: 400;\">These Terms of Service and any policies or operating rules posted by us on this site or in respect to The Service constitutes the entire agreement and understanding between you and us and govern your use of the Service, superseding any prior or contemporaneous agreements, communications and proposals, whether oral or written, between you and us (including, but not limited to, any prior versions of the Terms of Service).</span>\r\n\r\n<span style=\"font-weight: 400;\">Any ambiguities in the interpretation of these Terms of Service shall not be construed against the drafting party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 18 - GOVERNING LAW</span></h3>\r\n<span style=\"font-weight: 400;\">These Terms of Service and any separate agreements whereby we provide you Services shall be governed by and construed in accordance with the laws of 1912 Sidewinder Dr. SUITE 211, Park City, UT, 84060, United States.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 19 - CHANGES TO TERMS OF SERVICE</span></h3>\r\n<span style=\"font-weight: 400;\">You can review the most current version of the Terms of Service at any time at this page.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right, at our sole discretion, to update, change or replace any part of these Terms of Service by posting updates and changes to our website. It is your responsibility to check our website periodically for changes. Your continued use of or access to our website or the Service following the posting of any changes to these Terms of Service constitutes acceptance of those changes.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 20 - CONTACT INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">Questions about the Terms of Service should be sent to annie [at] annieversalstudios [dot] com.</span>\r\n\r\n&nbsp;','Terms & Conditions','','publish','closed','closed','','terms-conditions','','','2019-03-20 15:35:30','2019-03-20 21:35:30','',0,'http://annieversalstudios.com/?page_id=233',0,'page','',0),(234,1,'2019-03-18 20:26:48','2019-03-19 02:26:48','<h2><span style=\"font-weight: 400;\">Annieversal Studios TERMS OF SERVICE</span></h2>\r\n<h3><span style=\"font-weight: 400;\">OVERVIEW</span></h3>\r\n<span style=\"font-weight: 400;\">This website is operated by Annieversal Studios. Throughout the site, the terms “I,” “we,” “us,” and “our” refer to Annieversal Studios. Annieversal Studios offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here.</span>\r\n\r\n<span style=\"font-weight: 400;\">By visiting our site and/or purchasing something from us, you engage in our “Service” and agree to be bound by the following terms and conditions (“Terms of Service”, “Terms”), including those additional terms and conditions and policies referenced herein and/or available by hyperlink. These Terms of Service apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and/ or contributors of content.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please read these Terms of Service carefully before accessing or using our website. By accessing or using any part of the site, you agree to be bound by these Terms of Service. If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. If these Terms of Service are considered an offer, acceptance is expressly limited to these Terms of Service.</span>\r\n\r\n<span style=\"font-weight: 400;\">Any new features or tools which are added to the current store shall also be subject to the Terms of Service. You can review the most current version of the Terms of Service at any time on this page. We reserve the right to update, change or replace any part of these Terms of Service by posting updates and/or changes to our website. It is your responsibility to check this page periodically for changes. Your continued use of or access to the website following the posting of any changes constitutes acceptance of those changes.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 1 - ONLINE STORE TERMS</span></h3>\r\n<span style=\"font-weight: 400;\">By agreeing to these Terms of Service, you represent that you are at least the age of majority in your state or province of residence, or that you are the age of majority in your state or province of residence and you have given us your consent to allow any of your minor dependents to use this site.</span>\r\n\r\n<span style=\"font-weight: 400;\">You may not use our products for any illegal or unauthorized purpose nor may you, in the use of the Service, violate any laws in your jurisdiction (including but not limited to copyright laws).</span>\r\n\r\n<span style=\"font-weight: 400;\">You must not transmit any worms or viruses or any code of a destructive nature.</span>\r\n\r\n<span style=\"font-weight: 400;\">A breach or violation of any of the Terms will result in an immediate termination of your Services.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 2 - GENERAL CONDITIONS</span></h3>\r\n<span style=\"font-weight: 400;\">We reserve the right to refuse service to anyone for any reason at any time.</span>\r\n\r\n<span style=\"font-weight: 400;\">You understand that your content (not including credit card information), may be transferred unencrypted and involve (a) transmissions over various networks; and (b) changes to conform and adapt to technical requirements of connecting networks or devices. Credit card information is always encrypted during transfer over networks.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree not to reproduce, duplicate, copy, sell, resell or exploit any portion of the Service, use of the Service, or access to the Service or any contact on the website through which the service is provided, without express written permission by us.</span>\r\n\r\n<span style=\"font-weight: 400;\">The headings used in this agreement are included for convenience only and will not limit or otherwise affect these Terms.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 3 - ACCURACY, COMPLETENESS AND TIMELINESS OF INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">We are not responsible if information made available on this site is not accurate, complete or current. The material on this site is provided for general information only and should not be relied upon or used as the sole basis for making decisions without consulting primary, more accurate, more complete or more timely sources of information. Any reliance on the material on this site is at your own risk.</span>\r\n\r\n<span style=\"font-weight: 400;\">This site may contain certain historical information. Historical information, necessarily, is not current and is provided for your reference only. We reserve the right to modify the contents of this site at any time, but we have no obligation to update any information on our site. You agree that it is your responsibility to monitor changes to our site.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 4 - MODIFICATIONS TO THE SERVICE AND PRICES</span></h3>\r\n<span style=\"font-weight: 400;\">Prices for our products are subject to change without notice.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right at any time to modify or discontinue the Service (or any part or content thereof) without notice at any time.</span>\r\n\r\n<span style=\"font-weight: 400;\">We shall not be liable to you or to any third-party for any modification, price change, suspension or discontinuance of the Service.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 5 - PRODUCTS OR SERVICES</span></h3>\r\n<span style=\"font-weight: 400;\">Certain products or services may be available exclusively online through the website. These products or services may have limited quantities and are subject to return or exchange only according to our Return Policy.</span>\r\n\r\n<span style=\"font-weight: 400;\">We have made every effort to display as accurately as possible the colors and images of our products that appear on the site or at our pop-up stores. We cannot guarantee that your computer monitor\'s display of any color will be accurate.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right, but are not obligated, to limit the sales of our products or Services to any person, geographic region or jurisdiction. We may exercise this right on a case-by-case basis. We reserve the right to limit the quantities of any products or services that we offer. All descriptions of products or product pricing are subject to change at anytime without notice, at the sole discretion of us. We reserve the right to discontinue any product at any time. Any offer for any product or service made on this site is void where prohibited.</span>\r\n\r\n<span style=\"font-weight: 400;\">We do not warrant that the quality of any products, services, information, or other material purchased or obtained by you will meet your expectations, or that any errors in the Service will be corrected.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 6 - ACCURACY OF BILLING AND ACCOUNT INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">We reserve the right to refuse any order you place with us. We may, in our sole discretion, limit or cancel quantities purchased per person, per household or per order. These restrictions may include orders placed by or under the same customer account, the same credit card, and/or orders that use the same billing and/or shipping address. In the event that we make a change to or cancel an order, we may attempt to notify you by contacting the e-mail and/or billing address/phone number provided at the time the order was made. We reserve the right to limit or prohibit orders that, in our sole judgment, appear to be placed by dealers, resellers or distributors.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree to provide current, complete and accurate purchase and account information for all purchases made at our store. You agree to promptly update your account and other information, including your email address and credit card numbers and expiration dates, so that we can complete your transactions and contact you as needed.</span>\r\n\r\n<span style=\"font-weight: 400;\">For more detail, please review our Returns Policy.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 7 - OPTIONAL TOOLS</span></h3>\r\n<span style=\"font-weight: 400;\">We may provide you with access to third-party tools over which we neither monitor nor have any control nor input.</span>\r\n\r\n<span style=\"font-weight: 400;\">You acknowledge and agree that we provide access to such tools ”as is” and “as available” without any warranties, representations or conditions of any kind and without any endorsement. We shall have no liability whatsoever arising from or relating to your use of optional third-party tools.</span>\r\n\r\n<span style=\"font-weight: 400;\">Any use by you of optional tools offered through the site is entirely at your own risk and discretion and you should ensure that you are familiar with and approve of the terms on which tools are provided by the relevant third-party provider(s).</span>\r\n\r\n<span style=\"font-weight: 400;\">We may also, in the future, offer new services and/or features through the website (including, the release of new tools and resources). Such new features and/or services shall also be subject to these Terms of Service.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 8 - THIRD-PARTY LINKS</span></h3>\r\n<span style=\"font-weight: 400;\">Certain content, products and services available via our Service may include materials from third-parties.</span>\r\n\r\n<span style=\"font-weight: 400;\">Third-party links on this site may direct you to third-party websites that are not affiliated with us. We are not responsible for examining or evaluating the content or accuracy and we do not warrant and will not have any liability or responsibility for any third-party materials or websites, or for any other materials, products, or services of third-parties.</span>\r\n\r\n<span style=\"font-weight: 400;\">We are not liable for any harm or damages related to the purchase or use of goods, services, resources, content, or any other transactions made in connection with any third-party websites. Please review carefully the third-party\'s policies and practices and make sure you understand them before you engage in any transaction. Complaints, claims, concerns, or questions regarding third-party products should be directed to the third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 9 - USER COMMENTS, FEEDBACK AND OTHER SUBMISSIONS</span></h3>\r\n<span style=\"font-weight: 400;\">If, at our request, you send certain specific submissions (for example contest entries) or without a request from us you send creative ideas, suggestions, proposals, plans, or other materials, whether online, by email, by postal mail, or otherwise (collectively, \'comments\'), you agree that we may, at any time, without restriction, edit, copy, publish, distribute, translate and otherwise use in any medium any comments that you forward to us. We are and shall be under no obligation (1) to maintain any comments in confidence; (2) to pay compensation for any comments; or (3) to respond to any comments.</span>\r\n\r\n<span style=\"font-weight: 400;\">We may, but have no obligation to, monitor, edit or remove content that we determine in our sole discretion are unlawful, offensive, threatening, libelous, defamatory, pornographic, obscene or otherwise objectionable or violates any party’s intellectual property or these Terms of Service.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree that your comments will not violate any right of any third-party, including copyright, trademark, privacy, personality or other personal or proprietary right. You further agree that your comments will not contain libelous or otherwise unlawful, abusive or obscene material, or contain any computer virus or other malware that could in any way affect the operation of the Service or any related website. You may not use a false e-mail address, pretend to be someone other than yourself, or otherwise mislead us or third-parties as to the origin of any comments. You are solely responsible for any comments you make and their accuracy. We take no responsibility and assume no liability for any comments posted by you or any third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 10 - PERSONAL INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">Your submission of personal information through the store is governed by our Privacy Policy. Click here to view our Privacy Policy.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 11 - ERRORS, INACCURACIES AND OMISSIONS</span></h3>\r\n<span style=\"font-weight: 400;\">Occasionally there may be information on our site or in the Service that contains typographical errors, inaccuracies or omissions that may relate to product descriptions, pricing, promotions, offers, product shipping charges, transit times and availability. We reserve the right to correct any errors, inaccuracies or omissions, and to change or update information or cancel orders if any information in the Service or on any related website is inaccurate at any time without prior notice (including after you have submitted your order).</span>\r\n\r\n<span style=\"font-weight: 400;\">We undertake no obligation to update, amend or clarify information in the Service or on any related website, including without limitation, pricing information, except as required by law. No specified update or refresh date applied in the Service or on any related website, should be taken to indicate that all information in the Service or on any related website has been modified or updated.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 12 - PROHIBITED USES</span></h3>\r\n<span style=\"font-weight: 400;\">In addition to other prohibitions as set forth in the Terms of Service, you are prohibited from using the site or its content: (a) for any unlawful purpose; (b) to solicit others to perform or participate in any unlawful acts; (c) to violate any international, federal, provincial or state regulations, rules, laws, or local ordinances; (d) to infringe upon or violate our intellectual property rights or the intellectual property rights of others; (e) to harass, abuse, insult, harm, defame, slander, disparage, intimidate, or discriminate based on gender, sexual orientation, religion, ethnicity, race, age, national origin, or disability; (f) to submit false or misleading information; (g) to upload or transmit viruses or any other type of malicious code that will or may be used in any way that will affect the functionality or operation of the Service or of any related website, other websites, or the Internet; (h) to collect or track the personal information of others; (i) to spam, phish, pharm, pretext, spider, crawl, or scrape; (j) for any obscene or immoral purpose; or (k) to interfere with or circumvent the security features of the Service or any related website, other websites, or the Internet. We reserve the right to terminate your use of the Service or any related website for violating any of the prohibited uses.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 13 - DISCLAIMER OF WARRANTIES; LIMITATION OF LIABILITY</span></h3>\r\n<span style=\"font-weight: 400;\">We do not guarantee, represent or warrant that your use of our service will be uninterrupted, timely, secure or error-free.</span>\r\n\r\n<span style=\"font-weight: 400;\">We do not warrant that the results that may be obtained from the use of the service will be accurate or reliable.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree that from time to time we may remove the service for indefinite periods of time or cancel the service at any time, without notice to you.</span>\r\n\r\n<span style=\"font-weight: 400;\">You expressly agree that your use of, or inability to use, the service is at your sole risk. The service and all products and services delivered to you through the service are (except as expressly stated by us) provided \'as is\' and \'as available\' for your use, without any representation, warranties or conditions of any kind, either express or implied, including all implied warranties or conditions of merchantability, merchantable quality, fitness for a particular purpose, durability, title, and non-infringement.</span>\r\n\r\n<span style=\"font-weight: 400;\">In no case shall Annieversal Studios, our directors, officers, employees, affiliates, agents, contractors, interns, suppliers, service providers or licensors be liable for any injury, loss, claim, or any direct, indirect, incidental, punitive, special, or consequential damages of any kind, including, without limitation lost profits, lost revenue, lost savings, loss of data, replacement costs, or any similar damages, whether based in contract, tort (including negligence), strict liability or otherwise, arising from your use of any of the service or any products procured using the service, or for any other claim related in any way to your use of the service or any product, including, but not limited to, any errors or omissions in any content, or any loss or damage of any kind incurred as a result of the use of the service or any content (or product) posted, transmitted, or otherwise made available via the service, even if advised of their possibility. Because some states or jurisdictions do not allow the exclusion or the limitation of liability for consequential or incidental damages, in such states or jurisdictions, our liability shall be limited to the maximum extent permitted by law.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 14 - INDEMNIFICATION</span></h3>\r\n<span style=\"font-weight: 400;\">You agree to indemnify, defend and hold harmless Annieversal Studios and our parent, subsidiaries, affiliates, partners, officers, directors, agents, contractors, licensors, service providers, subcontractors, suppliers, interns and employees, harmless from any claim or demand, including reasonable attorneys’ fees, made by any third-party due to or arising out of your breach of these Terms of Service or the documents they incorporate by reference, or your violation of any law or the rights of a third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 15 - SEVERABILITY</span></h3>\r\n<span style=\"font-weight: 400;\">In the event that any provision of these Terms of Service is determined to be unlawful, void or unenforceable, such provision shall nonetheless be enforceable to the fullest extent permitted by applicable law, and the unenforceable portion shall be deemed to be severed from these Terms of Service, such determination shall not affect the validity and enforceability of any other remaining provisions.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 16 - TERMINATION</span></h3>\r\n<span style=\"font-weight: 400;\">The obligations and liabilities of the parties incurred prior to the termination date shall survive the termination of this agreement for all purposes.</span>\r\n\r\n<span style=\"font-weight: 400;\">These Terms of Service are effective unless and until terminated by either you or us. You may terminate these Terms of Service at any time by notifying us that you no longer wish to use our Services, or when you cease using our site.</span>\r\n\r\n<span style=\"font-weight: 400;\">If in our sole judgment you fail, or we suspect that you have failed, to comply with any term or provision of these Terms of Service, we also may terminate this agreement at any time without notice and you will remain liable for all amounts due up to and including the date of termination; and/or accordingly may deny you access to our Services (or any part thereof).</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 17 - ENTIRE AGREEMENT</span></h3>\r\n<span style=\"font-weight: 400;\">The failure of us to exercise or enforce any right or provision of these Terms of Service shall not constitute a waiver of such right or provision.</span>\r\n\r\n<span style=\"font-weight: 400;\">These Terms of Service and any policies or operating rules posted by us on this site or in respect to The Service constitutes the entire agreement and understanding between you and us and govern your use of the Service, superseding any prior or contemporaneous agreements, communications and proposals, whether oral or written, between you and us (including, but not limited to, any prior versions of the Terms of Service).</span>\r\n\r\n<span style=\"font-weight: 400;\">Any ambiguities in the interpretation of these Terms of Service shall not be construed against the drafting party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 18 - GOVERNING LAW</span></h3>\r\n<span style=\"font-weight: 400;\">These Terms of Service and any separate agreements whereby we provide you Services shall be governed by and construed in accordance with the laws of 1912 Sidewinder Dr. SUITE 211, Park City, UT, 84060, United States.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 19 - CHANGES TO TERMS OF SERVICE</span></h3>\r\n<span style=\"font-weight: 400;\">You can review the most current version of the Terms of Service at any time at this page.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right, at our sole discretion, to update, change or replace any part of these Terms of Service by posting updates and changes to our website. It is your responsibility to check our website periodically for changes. Your continued use of or access to our website or the Service following the posting of any changes to these Terms of Service constitutes acceptance of those changes.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 20 - CONTACT INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">Questions about the Terms of Service should be sent to annie@annieversalstudios.com.</span>\r\n\r\n&nbsp;','Terms & Conditions','','inherit','closed','closed','','233-revision-v1','','','2019-03-18 20:26:48','2019-03-19 02:26:48','',233,'http://annieversalstudios.com/2019/03/233-revision-v1/',0,'revision','',0),(235,1,'2019-03-18 20:38:38','2019-03-19 02:38:38','<span style=\"font-weight: 400;\">Thank you for your purchase! I really hope you’re happy with it :). However, if you’re not completely satisfied for any reason, you may return it for a full refund. Note I don’t accept returns or issue refunds for personalized and customized items.</span>\r\n\r\n<span style=\"font-weight: 400;\">(If you’d like an exchange instead, let me know and we’ll take it from there.)</span>\r\n<h2>RETURNS</h2>\r\n<span style=\"font-weight: 400;\">All returns must be postmarked within ten (10) days of the purchase date. All returned items must be in new and unused condition, with all the original tags and labels attached.</span>\r\n<h3>Return Process</h3>\r\n<span style=\"font-weight: 400;\">To return an eligible item, please email me at annie [at] annieversalstudios [dot] com to begin the process and obtain the return address. After receiving an authorization, place the item securely in its original packaging, including your proof of purchase.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please note that you will be responsible for all return shipping charges. I strongly recommend that you use a trackable method to mail your return and that you ensure it’s packaged with care :).</span>\r\n<h2>REFUNDS</h2>\r\n<span style=\"font-weight: 400;\">After receiving your return and inspecting the condition of your item, I will process your return or exchange. Please allow at least five (5) days from the receipt of your item to process your return or exchange. I will notify you via email when your return has been processed.</span>\r\n<h2>EXCEPTIONS</h2>\r\n<span style=\"font-weight: 400;\">The following items cannot be returned or exchanged:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Personalized or customized items</span></li>\r\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Digital designs</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">For defective or damaged products, please email me at annie [at] annieversalstudios [dot] com.</span>\r\n<h2>QUESTIONS</h2>\r\n<span style=\"font-weight: 400;\">If you have any questions concerning my policy, please contact me at annie [at] annieversalstudios [dot] com.</span>','Returns Policy','','publish','closed','closed','','returns','','','2019-03-18 20:38:38','2019-03-19 02:38:38','',0,'http://annieversalstudios.com/?page_id=235',0,'page','',0),(237,1,'2019-03-18 20:38:38','2019-03-19 02:38:38','<span style=\"font-weight: 400;\">Thank you for your purchase! I really hope you’re happy with it :). However, if you’re not completely satisfied for any reason, you may return it for a full refund. Note I don’t accept returns or issue refunds for personalized and customized items.</span>\r\n\r\n<span style=\"font-weight: 400;\">(If you’d like an exchange instead, let me know and we’ll take it from there.)</span>\r\n<h2>RETURNS</h2>\r\n<span style=\"font-weight: 400;\">All returns must be postmarked within ten (10) days of the purchase date. All returned items must be in new and unused condition, with all the original tags and labels attached.</span>\r\n<h3>Return Process</h3>\r\n<span style=\"font-weight: 400;\">To return an eligible item, please email me at annie [at] annieversalstudios [dot] com to begin the process and obtain the return address. After receiving an authorization, place the item securely in its original packaging, including your proof of purchase.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please note that you will be responsible for all return shipping charges. I strongly recommend that you use a trackable method to mail your return and that you ensure it’s packaged with care :).</span>\r\n<h2>REFUNDS</h2>\r\n<span style=\"font-weight: 400;\">After receiving your return and inspecting the condition of your item, I will process your return or exchange. Please allow at least five (5) days from the receipt of your item to process your return or exchange. I will notify you via email when your return has been processed.</span>\r\n<h2>EXCEPTIONS</h2>\r\n<span style=\"font-weight: 400;\">The following items cannot be returned or exchanged:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Personalized or customized items</span></li>\r\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Digital designs</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">For defective or damaged products, please email me at annie [at] annieversalstudios [dot] com.</span>\r\n<h2>QUESTIONS</h2>\r\n<span style=\"font-weight: 400;\">If you have any questions concerning my policy, please contact me at annie [at] annieversalstudios [dot] com.</span>','Returns Policy','','inherit','closed','closed','','235-revision-v1','','','2019-03-18 20:38:38','2019-03-19 02:38:38','',235,'http://annieversalstudios.com/2019/03/235-revision-v1/',0,'revision','',0),(236,1,'2019-03-18 20:38:12','2019-03-19 02:38:12','<span style=\"font-weight: 400;\">Thank you for your purchase! I really hope you’re happy with it :). However, if you’re not completely satisfied for any reason, you may return it for a full refund. Note I don’t accept returns or issue refunds for personalized and customized items.</span>\r\n\r\n<span style=\"font-weight: 400;\">(If you’d like an exchange instead, let me know and we’ll take it from there.)</span>\r\n\r\n&nbsp;\r\n<h2>RETURNS</h2>\r\n<span style=\"font-weight: 400;\">All returns must be postmarked within ten (10) days of the purchase date. All returned items must be in new and unused condition, with all the original tags and labels attached.</span>\r\n\r\n&nbsp;\r\n<h3>Return Process</h3>\r\n<span style=\"font-weight: 400;\">To return an eligible item, please email me at annie [at] annieversalstudios [dot] com to begin the process and obtain the return address. After receiving an authorization, place the item securely in its original packaging, including your proof of purchase.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please note that you will be responsible for all return shipping charges. I strongly recommend that you use a trackable method to mail your return and that you ensure it’s packaged with care :).</span>\r\n\r\n&nbsp;\r\n<h2>REFUNDS</h2>\r\n<span style=\"font-weight: 400;\">After receiving your return and inspecting the condition of your item, I will process your return or exchange. Please allow at least five (5) days from the receipt of your item to process your return or exchange. I will notify you via email when your return has been processed.</span>\r\n\r\n&nbsp;\r\n<h2>EXCEPTIONS</h2>\r\n<span style=\"font-weight: 400;\">The following items cannot be returned or exchanged:</span>\r\n<ul>\r\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Personalized or customized items</span></li>\r\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Digital designs</span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\">For defective or damaged products, please email me at annie [at] annieversalstudios [dot] com.</span>\r\n\r\n&nbsp;\r\n<h2>QUESTIONS</h2>\r\n<span style=\"font-weight: 400;\">If you have any questions concerning my policy, please contact me at annie [at] annieversalstudios [dot] com.</span>','Returns Policy','','inherit','closed','closed','','235-revision-v1','','','2019-03-18 20:38:12','2019-03-19 02:38:12','',235,'http://annieversalstudios.com/2019/03/235-revision-v1/',0,'revision','',0),(238,1,'2019-03-18 20:51:41','2019-03-19 02:51:41','Annieversal Studios Privacy Policy\r\n\r\nThis Privacy Policy describes how your personal information is collected, used, and shared when you visit or make a purchase from https://annieversalstudios.com (the “Site”).\r\n<h3>PERSONAL INFORMATION WE COLLECT</h3>\r\nWhen you visit the Site, we automatically collect certain information about your device, including information about your web browser, IP address, time zone, and some of the cookies that are installed on your device. Additionally, as you browse the Site, we collect information about the individual web pages or products that you view, what websites or search terms referred you to the Site, and information about how you interact with the Site. We refer to this automatically-collected information as “Device Information.”\r\n\r\nWe collect Device Information using the following technologies:\r\n<ul>\r\n 	<li>“Cookies” are data files that are placed on your device or computer and often include an anonymous unique identifier. For more information about cookies, and how to disable cookies, visit http://www.allaboutcookies.org.</li>\r\n 	<li>“Log files” track actions occurring on the Site, and collect data including your IP address, browser type, Internet service provider, referring/exit pages, and date/time stamps.</li>\r\n 	<li>“Web beacons,” “tags,” and “pixels” are electronic files used to record information about how you browse the Site.</li>\r\n</ul>\r\nAdditionally, when you make a purchase or attempt to make a purchase through the Site, we collect certain information from you, including your name, billing address, shipping address, payment information (including credit card numbers if paying with a credit card, PayPal email address if paying via PayPal, or Stripe email address if paying via Stripe), email address, and phone number. We refer to this information as “Order Information.”\r\n\r\nWhen we talk about “Personal Information” in this Privacy Policy, we are talking both about Device Information and Order Information.\r\n<h3>HOW DO WE USE YOUR PERSONAL INFORMATION?</h3>\r\nWe use the Order Information that we collect generally to fulfill any orders placed through the Site (including processing your payment information, arranging for shipping, and providing you with invoices and/or order confirmations). Additionally, we use this Order Information to:\r\n<ul>\r\n 	<li>Communicate with you;</li>\r\n 	<li>Screen our orders for potential risk or fraud; and</li>\r\n 	<li>When in line with the preferences you have shared with us, provide you with information or advertising relating to our products or services.</li>\r\n</ul>\r\nWe use the Device Information that we collect to help us screen for potential risk and fraud (in particular, your IP address), and more generally to improve and optimize our Site (for example, by generating analytics about how our customers browse and interact with the Site, and to assess the success of our marketing and advertising campaigns).\r\n<h3>SHARING YOUR PERSONAL INFORMATION</h3>\r\nWe share your Personal Information with third parties to help us use your Personal Information, as described above. For example, we use Mailchimp to power our newsletters–you can read more about how Mailchimp uses your Personal Information here: https://www.mailchimp.com/legal/privacy. We also use Google Analytics to help us understand how our customers use the Site--you can read more about how Google uses your Personal Information here: https://www.google.com/intl/en/policies/privacy/. You can also opt-out of Google Analytics here: https://tools.google.com/dlpage/gaoptout.\r\n\r\nFinally, we may also share your Personal Information to comply with applicable laws and regulations, to respond to a subpoena, search warrant or other lawful request for information we receive, or to otherwise protect our rights.\r\n<h3>BEHAVIORAL ADVERTISING</h3>\r\nAs described above, we use your Personal Information to provide you with targeted advertisements or marketing communications we believe may be of interest to you. For more information about how targeted advertising works, you can visit the Network Advertising Initiative’s (“NAI”) educational page at http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.\r\n\r\nYou can opt out of targeted advertising here:\r\n<ul>\r\n 	<li>GOOGLE - https://www.google.com/settings/ads/anonymous</li>\r\n 	<li>You can opt out of receiving marketing emails from us at any time by clicking the \"Unsubscribe\" link at the bottom of our marketing messages.</li>\r\n</ul>\r\nAdditionally, you can opt out of some of these services by visiting the Digital Advertising Alliance’s opt-out portal at: http://optout.aboutads.info/.\r\n<h3>DO NOT TRACK</h3>\r\nPlease note that we do not alter our Site’s data collection and use practices when we see a Do Not Track signal from your browser.\r\n<h3>YOUR RIGHTS</h3>\r\nIf you are a European resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us through the contact information below.\r\n\r\nAdditionally, if you are a European resident we note that we are processing your information in order to fulfill contracts we might have with you (for example if you make an order through the Site), or otherwise to pursue our legitimate business interests listed above. Additionally, please note that your information will be transferred outside of Europe, including to Canada and the United States.\r\n<h3>DATA RETENTION</h3>\r\nWhen you place an order through the Site, we will maintain your Order Information for our records unless and until you ask us to delete this information.\r\n<h3>CHANGES</h3>\r\nWe may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal or regulatory reasons.\r\n<h3>CONTACT US</h3>\r\nFor more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e-mail at annie [at] annieversalstudios [dot] com.','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2019-03-18 20:51:41','2019-03-19 02:51:41','',0,'http://annieversalstudios.com/?page_id=238',0,'page','',0),(239,1,'2019-03-18 20:51:41','2019-03-19 02:51:41','Annieversal Studios Privacy Policy\r\n\r\nThis Privacy Policy describes how your personal information is collected, used, and shared when you visit or make a purchase from https://annieversalstudios.com (the “Site”).\r\n<h3>PERSONAL INFORMATION WE COLLECT</h3>\r\nWhen you visit the Site, we automatically collect certain information about your device, including information about your web browser, IP address, time zone, and some of the cookies that are installed on your device. Additionally, as you browse the Site, we collect information about the individual web pages or products that you view, what websites or search terms referred you to the Site, and information about how you interact with the Site. We refer to this automatically-collected information as “Device Information.”\r\n\r\nWe collect Device Information using the following technologies:\r\n<ul>\r\n 	<li>“Cookies” are data files that are placed on your device or computer and often include an anonymous unique identifier. For more information about cookies, and how to disable cookies, visit http://www.allaboutcookies.org.</li>\r\n 	<li>“Log files” track actions occurring on the Site, and collect data including your IP address, browser type, Internet service provider, referring/exit pages, and date/time stamps.</li>\r\n 	<li>“Web beacons,” “tags,” and “pixels” are electronic files used to record information about how you browse the Site.</li>\r\n</ul>\r\nAdditionally, when you make a purchase or attempt to make a purchase through the Site, we collect certain information from you, including your name, billing address, shipping address, payment information (including credit card numbers if paying with a credit card, PayPal email address if paying via PayPal, or Stripe email address if paying via Stripe), email address, and phone number. We refer to this information as “Order Information.”\r\n\r\nWhen we talk about “Personal Information” in this Privacy Policy, we are talking both about Device Information and Order Information.\r\n<h3>HOW DO WE USE YOUR PERSONAL INFORMATION?</h3>\r\nWe use the Order Information that we collect generally to fulfill any orders placed through the Site (including processing your payment information, arranging for shipping, and providing you with invoices and/or order confirmations). Additionally, we use this Order Information to:\r\n<ul>\r\n 	<li>Communicate with you;</li>\r\n 	<li>Screen our orders for potential risk or fraud; and</li>\r\n 	<li>When in line with the preferences you have shared with us, provide you with information or advertising relating to our products or services.</li>\r\n</ul>\r\nWe use the Device Information that we collect to help us screen for potential risk and fraud (in particular, your IP address), and more generally to improve and optimize our Site (for example, by generating analytics about how our customers browse and interact with the Site, and to assess the success of our marketing and advertising campaigns).\r\n<h3>SHARING YOUR PERSONAL INFORMATION</h3>\r\nWe share your Personal Information with third parties to help us use your Personal Information, as described above. For example, we use Mailchimp to power our newsletters–you can read more about how Mailchimp uses your Personal Information here: https://www.mailchimp.com/legal/privacy. We also use Google Analytics to help us understand how our customers use the Site--you can read more about how Google uses your Personal Information here: https://www.google.com/intl/en/policies/privacy/. You can also opt-out of Google Analytics here: https://tools.google.com/dlpage/gaoptout.\r\n\r\nFinally, we may also share your Personal Information to comply with applicable laws and regulations, to respond to a subpoena, search warrant or other lawful request for information we receive, or to otherwise protect our rights.\r\n<h3>BEHAVIORAL ADVERTISING</h3>\r\nAs described above, we use your Personal Information to provide you with targeted advertisements or marketing communications we believe may be of interest to you. For more information about how targeted advertising works, you can visit the Network Advertising Initiative’s (“NAI”) educational page at http://www.networkadvertising.org/understanding-online-advertising/how-does-it-work.\r\n\r\nYou can opt out of targeted advertising here:\r\n<ul>\r\n 	<li>GOOGLE - https://www.google.com/settings/ads/anonymous</li>\r\n 	<li>You can opt out of receiving marketing emails from us at any time by clicking the \"Unsubscribe\" link at the bottom of our marketing messages.</li>\r\n</ul>\r\nAdditionally, you can opt out of some of these services by visiting the Digital Advertising Alliance’s opt-out portal at: http://optout.aboutads.info/.\r\n<h3>DO NOT TRACK</h3>\r\nPlease note that we do not alter our Site’s data collection and use practices when we see a Do Not Track signal from your browser.\r\n<h3>YOUR RIGHTS</h3>\r\nIf you are a European resident, you have the right to access personal information we hold about you and to ask that your personal information be corrected, updated, or deleted. If you would like to exercise this right, please contact us through the contact information below.\r\n\r\nAdditionally, if you are a European resident we note that we are processing your information in order to fulfill contracts we might have with you (for example if you make an order through the Site), or otherwise to pursue our legitimate business interests listed above. Additionally, please note that your information will be transferred outside of Europe, including to Canada and the United States.\r\n<h3>DATA RETENTION</h3>\r\nWhen you place an order through the Site, we will maintain your Order Information for our records unless and until you ask us to delete this information.\r\n<h3>CHANGES</h3>\r\nWe may update this privacy policy from time to time in order to reflect, for example, changes to our practices or for other operational, legal or regulatory reasons.\r\n<h3>CONTACT US</h3>\r\nFor more information about our privacy practices, if you have questions, or if you would like to make a complaint, please contact us by e-mail at annie [at] annieversalstudios [dot] com.','Privacy Policy','','inherit','closed','closed','','238-revision-v1','','','2019-03-18 20:51:41','2019-03-19 02:51:41','',238,'http://annieversalstudios.com/2019/03/238-revision-v1/',0,'revision','',0),(240,1,'2019-03-18 20:55:30','2019-03-19 02:55:30','','Policies','','trash','closed','closed','','__trashed','','','2019-03-18 20:55:30','2019-03-19 02:55:30','',0,'http://annieversalstudios.com/?page_id=240',0,'page','',0),(241,1,'2019-03-18 20:55:30','2019-03-19 02:55:30','','Policies','','inherit','closed','closed','','240-revision-v1','','','2019-03-18 20:55:30','2019-03-19 02:55:30','',240,'http://annieversalstudios.com/2019/03/240-revision-v1/',0,'revision','',0),(245,1,'2019-03-18 20:58:15','2019-03-19 02:58:15','<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\r\n\r\nRead more in my <a href=\"http://annieversalstudios.com/returns/\">Returns Policy</a> page.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see some variation.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood and uniquely made pieces. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• I have shipping questions.</h2>\r\nI don\'t ship outside of the United States. If you\'re in the USA and would like to learn more about my shipping policy, click here to visit my <a href=\"/shipping\">Shipping Policy</a> page.','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-03-18 20:58:15','2019-03-19 02:58:15','',175,'http://annieversalstudios.com/2019/03/175-revision-v1/',0,'revision','',0),(242,1,'2019-03-18 20:57:06','2019-03-19 02:57:06','<h2>• What\'s the link to your Etsy shop?</h2>\r\n<a href=\"https://www.etsy.com/shop/AnnieversalStudios/\">https://www.etsy.com/shop/AnnieversalStudios/</a> <strong>[New ready-to-ship products coming soon!]</strong>\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\r\n\r\nRead more in my <a href=\"http://annieversalstudios.com/returns/\">Returns Policy</a> page.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see some variation.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood and uniquely made pieces. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"http://eepurl.com/gc38Q9\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• I have shipping questions.</h2>\r\nI don\'t ship outside of the United States. If you\'re in the USA and would like to learn more about my shipping policy, click here to visit my Shipping Policy page.','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-03-18 20:57:06','2019-03-19 02:57:06','',175,'http://annieversalstudios.com/2019/03/175-revision-v1/',0,'revision','',0),(243,1,'2019-03-20 14:39:37','2019-03-20 20:39:37','<span style=\"font-weight: 400;\">Thank you for visiting and shopping at Annieversal Studios! Following are the terms and conditions that constitute my Shipping Policy.</span>\r\n<h3>Shipment processing time</h3>\r\n<span style=\"font-weight: 400;\">Most orders are processed within 2-3 business days. Orders are not shipped or delivered on weekends or holidays. I don’t ship outside the U.S.A. If you need something shipped faster, please see the “Expedited Shipping” section below.</span>\r\n\r\n<b>Custom orders</b><span style=\"font-weight: 400;\"> are made to order: They require five (5) to ten (10) business days to create and will ship upon completion.</span>\r\n\r\n<span style=\"font-weight: 400;\">If I’m experiencing a high volume of orders, shipments may be delayed by a few days. Please allow additional days in transit for delivery. If there will be a significant delay in shipment of your order, I will contact you via email or telephone.</span>\r\n\r\n<span style=\"font-weight: 400;\">You are responsible for providing an address that USPS recognizes as a deliverable address. I have no control over shipping once a package departs the studio. If there are any issues with delivery for reasons out of my control (address provided to us is not accurate, issues within the shipping company, etc.), I’m not responsible for shipping delays.</span>\r\n<h3>Shipping rates &amp; delivery estimates*</h3>\r\n<span style=\"font-weight: 400;\">Shipping charges for your order will be calculated and displayed at checkout.</span>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><b>Shipment method</b></td>\r\n<td><b>Estimated* delivery time</b></td>\r\n<td><b>Shipment cost</b></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-weight: 400;\">USPS Ground</span></td>\r\n<td><span style=\"font-weight: 400;\">3-5 business days</span></td>\r\n<td><span style=\"font-weight: 400;\">Free</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-weight: 400;\">USPS Priority</span></td>\r\n<td><span style=\"font-weight: 400;\">2 business days</span></td>\r\n<td><span style=\"font-weight: 400;\">$11</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-weight: 400;\">USPS Overnight**</span></td>\r\n<td><span style=\"font-weight: 400;\">1-2 business days</span></td>\r\n<td><span style=\"font-weight: 400;\">Contact me</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<span style=\"font-weight: 400;\">**Delivery delays can occasionally occur. I’m not responsible for errors made by the shipping carrier, such as delayed items or lost packages, or for delays in shipping due to acts of God that are out of my control, such as epic snowstorms, natural disasters, or any other extraordinary circumstance that causes unforeseen interference with carrier routes. If an exchange is desired, the buyer pays all shipping costs incurred. Please see my Refund and Exchange Policy for more information.</span>\r\n\r\n<span style=\"font-weight: 400;\">**Overnight delivery is only available on a case-by-case basis. Please contact me if you wish to have your item shipped via USPS Priority Mail Express (Overnight) so I can calculate your shipping costs.</span>\r\n<h3>Expedited Shipping</h3>\r\n<span style=\"font-weight: 400;\">If you need your order before a certain date, please contact me PRIOR to submitting it so I can determine whether I’m able to meet your deadline. If I’m unable to meet your deadline with standard shipping, EXPEDITED shipping is available. If you select an expedited shipping rate that is not guaranteed, I’m not responsible if the shipping company does not honor the expected timeline. USPS Priority Shipping are not guaranteed shipping methods, although delays with these methods are rare.</span>\r\n<h3>Shipment to APO/FPO addresses</h3>\r\n<span style=\"font-weight: 400;\">Annieversal Studios</span><span style=\"font-weight: 400;\"> ships to addresses within the U.S., U.S. Territories, and APO/FPO/DPO addresses. I currently don’t ship to PO Boxes.</span>\r\n<h3>Shipment confirmation &amp; Order tracking</h3>\r\n<span style=\"font-weight: 400;\">You will receive a Shipment Confirmation email once your order has shipped containing your tracking number(s). The tracking number will be active within 24 hours.</span>\r\n<h3>Damages</h3>\r\n<span style=\"font-weight: 400;\">Annieversal Studios</span><span style=\"font-weight: 400;\"> is not liable for any products damaged or lost during shipping. If you received your order damaged, please contact the shipment carrier to file a claim.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please save all packaging materials and damaged goods before filing a claim.</span>\r\n<h3>Questions?</h3>\r\nEmail me at annie [at] annieversalstudios [dot] com and I\'ll try my best to answer them.','Shipping Policy','','publish','closed','closed','','shipping','','','2019-03-20 14:39:37','2019-03-20 20:39:37','',0,'http://annieversalstudios.com/?page_id=243',0,'page','',0),(244,1,'2019-03-18 20:57:25','2019-03-19 02:57:25','','Shipping Policy','','inherit','closed','closed','','243-revision-v1','','','2019-03-18 20:57:25','2019-03-19 02:57:25','',243,'http://annieversalstudios.com/2019/03/243-revision-v1/',0,'revision','',0),(246,1,'2019-03-20 14:36:52','2019-03-20 20:36:52','','Shipping','','trash','closed','closed','','__trashed-2','','','2019-03-20 14:36:52','2019-03-20 20:36:52','',0,'http://annieversalstudios.com/?page_id=246',0,'page','',0),(247,1,'2019-03-20 14:36:52','2019-03-20 20:36:52','','Shipping','','inherit','closed','closed','','246-revision-v1','','','2019-03-20 14:36:52','2019-03-20 20:36:52','',246,'http://annieversalstudios.com/2019/03/246-revision-v1/',0,'revision','',0),(248,1,'2019-03-20 14:39:01','2019-03-20 20:39:01','<span style=\"font-weight: 400;\">Thank you for visiting and shopping at Annieversal Studios! Following are the terms and conditions that constitute my Shipping Policy.</span>\r\n<h3>Shipment processing time</h3>\r\n<span style=\"font-weight: 400;\">Most orders are processed within 2-3 business days. Orders are not shipped or delivered on weekends or holidays. I don’t ship outside the U.S.A. If you need something shipped faster, please see the “Expedited Shipping” section below.</span>\r\n\r\n<b>Custom orders</b><span style=\"font-weight: 400;\"> are made to order: They require five (5) to ten (10) business days to create and will ship upon completion.</span>\r\n\r\n<span style=\"font-weight: 400;\">If I’m experiencing a high volume of orders, shipments may be delayed by a few days. Please allow additional days in transit for delivery. If there will be a significant delay in shipment of your order, I will contact you via email or telephone.</span>\r\n\r\n<span style=\"font-weight: 400;\">You are responsible for providing an address that USPS recognizes as a deliverable address. I have no control over shipping once a package departs the studio. If there are any issues with delivery for reasons out of my control (address provided to us is not accurate, issues within the shipping company, etc.), I’m not responsible for shipping delays.</span>\r\n<h3>Shipping rates &amp; delivery estimates*</h3>\r\n<span style=\"font-weight: 400;\">Shipping charges for your order will be calculated and displayed at checkout.</span>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><b>Shipment method</b></td>\r\n<td><b>Estimated* delivery time</b></td>\r\n<td><b>Shipment cost</b></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-weight: 400;\">USPS Ground</span></td>\r\n<td><span style=\"font-weight: 400;\">3-5 business days</span></td>\r\n<td><span style=\"font-weight: 400;\">Free</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-weight: 400;\">USPS Priority</span></td>\r\n<td><span style=\"font-weight: 400;\">2 business days</span></td>\r\n<td><span style=\"font-weight: 400;\">$11</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style=\"font-weight: 400;\">USPS Overnight**</span></td>\r\n<td><span style=\"font-weight: 400;\">1-2 business days</span></td>\r\n<td><span style=\"font-weight: 400;\">Contact me</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<span style=\"font-weight: 400;\">**Delivery delays can occasionally occur. I’m not responsible for errors made by the shipping carrier, such as delayed items or lost packages, or for delays in shipping due to acts of God that are out of my control, such as epic snowstorms, natural disasters, or any other extraordinary circumstance that causes unforeseen interference with carrier routes. If an exchange is desired, the buyer pays all shipping costs incurred. Please see my Refund and Exchange Policy for more information.</span>\r\n\r\n<span style=\"font-weight: 400;\">**Overnight delivery is only available on a case-by-case basis. Please contact me if you wish to have your item shipped via USPS Priority Mail Express (Overnight) so I can calculate your shipping costs.</span>\r\n<h3>Expedited Shipping</h3>\r\n<span style=\"font-weight: 400;\">If you need your order before a certain date, please contact me PRIOR to submitting it so I can determine whether I’m able to meet your deadline. If I’m unable to meet your deadline with standard shipping, EXPEDITED shipping is available. If you select an expedited shipping rate that is not guaranteed, I’m not responsible if the shipping company does not honor the expected timeline. USPS Priority Shipping are not guaranteed shipping methods, although delays with these methods are rare.</span>\r\n<h3>Shipment to APO/FPO addresses</h3>\r\n<span style=\"font-weight: 400;\">Annieversal Studios</span><span style=\"font-weight: 400;\"> ships to addresses within the U.S., U.S. Territories, and APO/FPO/DPO addresses. I currently don’t ship to PO Boxes.</span>\r\n<h3>Shipment confirmation &amp; Order tracking</h3>\r\n<span style=\"font-weight: 400;\">You will receive a Shipment Confirmation email once your order has shipped containing your tracking number(s). The tracking number will be active within 24 hours.</span>\r\n<h3>Damages</h3>\r\n<span style=\"font-weight: 400;\">Annieversal Studios</span><span style=\"font-weight: 400;\"> is not liable for any products damaged or lost during shipping. If you received your order damaged, please contact the shipment carrier to file a claim.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please save all packaging materials and damaged goods before filing a claim.</span>\r\n<h3>Questions?</h3>\r\nEmail me at annie [at] annieversalstudios [dot] com and I\'ll try my best to answer them.','Shipping Policy','','inherit','closed','closed','','243-revision-v1','','','2019-03-20 14:39:01','2019-03-20 20:39:01','',243,'http://annieversalstudios.com/2019/03/243-revision-v1/',0,'revision','',0),(261,1,'2019-03-20 15:43:26','2019-03-20 21:43:26','','Policies','','publish','closed','closed','','policies','','','2019-03-20 15:43:26','2019-03-20 21:43:26','',0,'http://annieversalstudios.com/?p=261',4,'nav_menu_item','',0),(250,1,'2019-03-20 14:42:48','2019-03-20 20:42:48',' ','','','publish','closed','closed','','250','','','2019-03-20 15:43:26','2019-03-20 21:43:26','',0,'http://annieversalstudios.com/?p=250',6,'nav_menu_item','',0),(251,1,'2019-03-20 14:42:48','2019-03-20 20:42:48',' ','','','publish','closed','closed','','251','','','2019-03-20 15:43:26','2019-03-20 21:43:26','',0,'http://annieversalstudios.com/?p=251',5,'nav_menu_item','',0),(252,1,'2019-03-20 15:31:13','2019-03-20 21:31:13','<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\r\n\r\nRead more in my <a href=\"http://annieversalstudios.com/returns/\">Returns Policy</a> page.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see some variation.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood and uniquely made pieces. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"https://mailchi.mp/9bf63d68050b/annieverse\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• I have shipping questions.</h2>\r\nI don\'t ship outside of the United States. If you\'re in the USA and would like to learn more about my shipping policy, click here to visit my <a href=\"/shipping\">Shipping Policy</a> page.','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-03-20 15:31:13','2019-03-20 21:31:13','',175,'http://annieversalstudios.com/2019/03/175-revision-v1/',0,'revision','',0),(253,1,'2019-03-20 15:33:05','2019-03-20 21:33:05','','Default Theme','','publish','closed','closed','','default-theme','','','2019-03-20 15:33:05','2019-03-20 21:33:05','',0,'http://annieversalstudios.com/?post_type=popup_theme&p=253',0,'popup_theme','',0),(254,1,'2019-03-20 15:33:05','2019-03-20 21:33:05','','Light Box','','publish','closed','closed','','lightbox','','','2019-03-20 15:33:05','2019-03-20 21:33:05','',0,'http://annieversalstudios.com/?post_type=popup_theme&p=254',0,'popup_theme','',0),(255,1,'2019-03-20 15:33:05','2019-03-20 21:33:05','','Enterprise Blue','','publish','closed','closed','','enterprise-blue','','','2019-03-20 15:33:05','2019-03-20 21:33:05','',0,'http://annieversalstudios.com/?post_type=popup_theme&p=255',0,'popup_theme','',0),(256,1,'2019-03-20 15:33:05','2019-03-20 21:33:05','','Hello Box','','publish','closed','closed','','hello-box','','','2019-03-20 15:33:05','2019-03-20 21:33:05','',0,'http://annieversalstudios.com/?post_type=popup_theme&p=256',0,'popup_theme','',0),(257,1,'2019-03-20 15:33:05','2019-03-20 21:33:05','','Cutting Edge','','publish','closed','closed','','cutting-edge','','','2019-03-20 15:33:05','2019-03-20 21:33:05','',0,'http://annieversalstudios.com/?post_type=popup_theme&p=257',0,'popup_theme','',0),(258,1,'2019-03-20 15:33:05','2019-03-20 21:33:05','','Framed Border','','publish','closed','closed','','framed-border','','','2019-03-20 15:33:05','2019-03-20 21:33:05','',0,'http://annieversalstudios.com/?post_type=popup_theme&p=258',0,'popup_theme','',0),(259,1,'2019-03-20 15:35:30','2019-03-20 21:35:30','<h2><span style=\"font-weight: 400;\">Annieversal Studios TERMS OF SERVICE</span></h2>\r\n<h3><span style=\"font-weight: 400;\">OVERVIEW</span></h3>\r\n<span style=\"font-weight: 400;\">This website is operated by Annieversal Studios. Throughout the site, the terms “I,” “we,” “us,” and “our” refer to Annieversal Studios. Annieversal Studios offers this website, including all information, tools and services available from this site to you, the user, conditioned upon your acceptance of all terms, conditions, policies and notices stated here.</span>\r\n\r\n<span style=\"font-weight: 400;\">By visiting our site and/or purchasing something from us, you engage in our “Service” and agree to be bound by the following terms and conditions (“Terms of Service”, “Terms”), including those additional terms and conditions and policies referenced herein and/or available by hyperlink. These Terms of Service apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and/ or contributors of content.</span>\r\n\r\n<span style=\"font-weight: 400;\">Please read these Terms of Service carefully before accessing or using our website. By accessing or using any part of the site, you agree to be bound by these Terms of Service. If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. If these Terms of Service are considered an offer, acceptance is expressly limited to these Terms of Service.</span>\r\n\r\n<span style=\"font-weight: 400;\">Any new features or tools which are added to the current store shall also be subject to the Terms of Service. You can review the most current version of the Terms of Service at any time on this page. We reserve the right to update, change or replace any part of these Terms of Service by posting updates and/or changes to our website. It is your responsibility to check this page periodically for changes. Your continued use of or access to the website following the posting of any changes constitutes acceptance of those changes.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 1 - ONLINE STORE TERMS</span></h3>\r\n<span style=\"font-weight: 400;\">By agreeing to these Terms of Service, you represent that you are at least the age of majority in your state or province of residence, or that you are the age of majority in your state or province of residence and you have given us your consent to allow any of your minor dependents to use this site.</span>\r\n\r\n<span style=\"font-weight: 400;\">You may not use our products for any illegal or unauthorized purpose nor may you, in the use of the Service, violate any laws in your jurisdiction (including but not limited to copyright laws).</span>\r\n\r\n<span style=\"font-weight: 400;\">You must not transmit any worms or viruses or any code of a destructive nature.</span>\r\n\r\n<span style=\"font-weight: 400;\">A breach or violation of any of the Terms will result in an immediate termination of your Services.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 2 - GENERAL CONDITIONS</span></h3>\r\n<span style=\"font-weight: 400;\">We reserve the right to refuse service to anyone for any reason at any time.</span>\r\n\r\n<span style=\"font-weight: 400;\">You understand that your content (not including credit card information), may be transferred unencrypted and involve (a) transmissions over various networks; and (b) changes to conform and adapt to technical requirements of connecting networks or devices. Credit card information is always encrypted during transfer over networks.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree not to reproduce, duplicate, copy, sell, resell or exploit any portion of the Service, use of the Service, or access to the Service or any contact on the website through which the service is provided, without express written permission by us.</span>\r\n\r\n<span style=\"font-weight: 400;\">The headings used in this agreement are included for convenience only and will not limit or otherwise affect these Terms.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 3 - ACCURACY, COMPLETENESS AND TIMELINESS OF INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">We are not responsible if information made available on this site is not accurate, complete or current. The material on this site is provided for general information only and should not be relied upon or used as the sole basis for making decisions without consulting primary, more accurate, more complete or more timely sources of information. Any reliance on the material on this site is at your own risk.</span>\r\n\r\n<span style=\"font-weight: 400;\">This site may contain certain historical information. Historical information, necessarily, is not current and is provided for your reference only. We reserve the right to modify the contents of this site at any time, but we have no obligation to update any information on our site. You agree that it is your responsibility to monitor changes to our site.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 4 - MODIFICATIONS TO THE SERVICE AND PRICES</span></h3>\r\n<span style=\"font-weight: 400;\">Prices for our products are subject to change without notice.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right at any time to modify or discontinue the Service (or any part or content thereof) without notice at any time.</span>\r\n\r\n<span style=\"font-weight: 400;\">We shall not be liable to you or to any third-party for any modification, price change, suspension or discontinuance of the Service.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 5 - PRODUCTS OR SERVICES</span></h3>\r\n<span style=\"font-weight: 400;\">Certain products or services may be available exclusively online through the website. These products or services may have limited quantities and are subject to return or exchange only according to our Return Policy.</span>\r\n\r\n<span style=\"font-weight: 400;\">We have made every effort to display as accurately as possible the colors and images of our products that appear on the site or at our pop-up stores. We cannot guarantee that your computer monitor\'s display of any color will be accurate.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right, but are not obligated, to limit the sales of our products or Services to any person, geographic region or jurisdiction. We may exercise this right on a case-by-case basis. We reserve the right to limit the quantities of any products or services that we offer. All descriptions of products or product pricing are subject to change at anytime without notice, at the sole discretion of us. We reserve the right to discontinue any product at any time. Any offer for any product or service made on this site is void where prohibited.</span>\r\n\r\n<span style=\"font-weight: 400;\">We do not warrant that the quality of any products, services, information, or other material purchased or obtained by you will meet your expectations, or that any errors in the Service will be corrected.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 6 - ACCURACY OF BILLING AND ACCOUNT INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">We reserve the right to refuse any order you place with us. We may, in our sole discretion, limit or cancel quantities purchased per person, per household or per order. These restrictions may include orders placed by or under the same customer account, the same credit card, and/or orders that use the same billing and/or shipping address. In the event that we make a change to or cancel an order, we may attempt to notify you by contacting the e-mail and/or billing address/phone number provided at the time the order was made. We reserve the right to limit or prohibit orders that, in our sole judgment, appear to be placed by dealers, resellers or distributors.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree to provide current, complete and accurate purchase and account information for all purchases made at our store. You agree to promptly update your account and other information, including your email address and credit card numbers and expiration dates, so that we can complete your transactions and contact you as needed.</span>\r\n\r\n<span style=\"font-weight: 400;\">For more detail, please review our Returns Policy.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 7 - OPTIONAL TOOLS</span></h3>\r\n<span style=\"font-weight: 400;\">We may provide you with access to third-party tools over which we neither monitor nor have any control nor input.</span>\r\n\r\n<span style=\"font-weight: 400;\">You acknowledge and agree that we provide access to such tools ”as is” and “as available” without any warranties, representations or conditions of any kind and without any endorsement. We shall have no liability whatsoever arising from or relating to your use of optional third-party tools.</span>\r\n\r\n<span style=\"font-weight: 400;\">Any use by you of optional tools offered through the site is entirely at your own risk and discretion and you should ensure that you are familiar with and approve of the terms on which tools are provided by the relevant third-party provider(s).</span>\r\n\r\n<span style=\"font-weight: 400;\">We may also, in the future, offer new services and/or features through the website (including, the release of new tools and resources). Such new features and/or services shall also be subject to these Terms of Service.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 8 - THIRD-PARTY LINKS</span></h3>\r\n<span style=\"font-weight: 400;\">Certain content, products and services available via our Service may include materials from third-parties.</span>\r\n\r\n<span style=\"font-weight: 400;\">Third-party links on this site may direct you to third-party websites that are not affiliated with us. We are not responsible for examining or evaluating the content or accuracy and we do not warrant and will not have any liability or responsibility for any third-party materials or websites, or for any other materials, products, or services of third-parties.</span>\r\n\r\n<span style=\"font-weight: 400;\">We are not liable for any harm or damages related to the purchase or use of goods, services, resources, content, or any other transactions made in connection with any third-party websites. Please review carefully the third-party\'s policies and practices and make sure you understand them before you engage in any transaction. Complaints, claims, concerns, or questions regarding third-party products should be directed to the third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 9 - USER COMMENTS, FEEDBACK AND OTHER SUBMISSIONS</span></h3>\r\n<span style=\"font-weight: 400;\">If, at our request, you send certain specific submissions (for example contest entries) or without a request from us you send creative ideas, suggestions, proposals, plans, or other materials, whether online, by email, by postal mail, or otherwise (collectively, \'comments\'), you agree that we may, at any time, without restriction, edit, copy, publish, distribute, translate and otherwise use in any medium any comments that you forward to us. We are and shall be under no obligation (1) to maintain any comments in confidence; (2) to pay compensation for any comments; or (3) to respond to any comments.</span>\r\n\r\n<span style=\"font-weight: 400;\">We may, but have no obligation to, monitor, edit or remove content that we determine in our sole discretion are unlawful, offensive, threatening, libelous, defamatory, pornographic, obscene or otherwise objectionable or violates any party’s intellectual property or these Terms of Service.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree that your comments will not violate any right of any third-party, including copyright, trademark, privacy, personality or other personal or proprietary right. You further agree that your comments will not contain libelous or otherwise unlawful, abusive or obscene material, or contain any computer virus or other malware that could in any way affect the operation of the Service or any related website. You may not use a false e-mail address, pretend to be someone other than yourself, or otherwise mislead us or third-parties as to the origin of any comments. You are solely responsible for any comments you make and their accuracy. We take no responsibility and assume no liability for any comments posted by you or any third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 10 - PERSONAL INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">Your submission of personal information through the store is governed by our Privacy Policy. Click here to view our Privacy Policy.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 11 - ERRORS, INACCURACIES AND OMISSIONS</span></h3>\r\n<span style=\"font-weight: 400;\">Occasionally there may be information on our site or in the Service that contains typographical errors, inaccuracies or omissions that may relate to product descriptions, pricing, promotions, offers, product shipping charges, transit times and availability. We reserve the right to correct any errors, inaccuracies or omissions, and to change or update information or cancel orders if any information in the Service or on any related website is inaccurate at any time without prior notice (including after you have submitted your order).</span>\r\n\r\n<span style=\"font-weight: 400;\">We undertake no obligation to update, amend or clarify information in the Service or on any related website, including without limitation, pricing information, except as required by law. No specified update or refresh date applied in the Service or on any related website, should be taken to indicate that all information in the Service or on any related website has been modified or updated.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 12 - PROHIBITED USES</span></h3>\r\n<span style=\"font-weight: 400;\">In addition to other prohibitions as set forth in the Terms of Service, you are prohibited from using the site or its content: (a) for any unlawful purpose; (b) to solicit others to perform or participate in any unlawful acts; (c) to violate any international, federal, provincial or state regulations, rules, laws, or local ordinances; (d) to infringe upon or violate our intellectual property rights or the intellectual property rights of others; (e) to harass, abuse, insult, harm, defame, slander, disparage, intimidate, or discriminate based on gender, sexual orientation, religion, ethnicity, race, age, national origin, or disability; (f) to submit false or misleading information; (g) to upload or transmit viruses or any other type of malicious code that will or may be used in any way that will affect the functionality or operation of the Service or of any related website, other websites, or the Internet; (h) to collect or track the personal information of others; (i) to spam, phish, pharm, pretext, spider, crawl, or scrape; (j) for any obscene or immoral purpose; or (k) to interfere with or circumvent the security features of the Service or any related website, other websites, or the Internet. We reserve the right to terminate your use of the Service or any related website for violating any of the prohibited uses.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 13 - DISCLAIMER OF WARRANTIES; LIMITATION OF LIABILITY</span></h3>\r\n<span style=\"font-weight: 400;\">We do not guarantee, represent or warrant that your use of our service will be uninterrupted, timely, secure or error-free.</span>\r\n\r\n<span style=\"font-weight: 400;\">We do not warrant that the results that may be obtained from the use of the service will be accurate or reliable.</span>\r\n\r\n<span style=\"font-weight: 400;\">You agree that from time to time we may remove the service for indefinite periods of time or cancel the service at any time, without notice to you.</span>\r\n\r\n<span style=\"font-weight: 400;\">You expressly agree that your use of, or inability to use, the service is at your sole risk. The service and all products and services delivered to you through the service are (except as expressly stated by us) provided \'as is\' and \'as available\' for your use, without any representation, warranties or conditions of any kind, either express or implied, including all implied warranties or conditions of merchantability, merchantable quality, fitness for a particular purpose, durability, title, and non-infringement.</span>\r\n\r\n<span style=\"font-weight: 400;\">In no case shall Annieversal Studios, our directors, officers, employees, affiliates, agents, contractors, interns, suppliers, service providers or licensors be liable for any injury, loss, claim, or any direct, indirect, incidental, punitive, special, or consequential damages of any kind, including, without limitation lost profits, lost revenue, lost savings, loss of data, replacement costs, or any similar damages, whether based in contract, tort (including negligence), strict liability or otherwise, arising from your use of any of the service or any products procured using the service, or for any other claim related in any way to your use of the service or any product, including, but not limited to, any errors or omissions in any content, or any loss or damage of any kind incurred as a result of the use of the service or any content (or product) posted, transmitted, or otherwise made available via the service, even if advised of their possibility. Because some states or jurisdictions do not allow the exclusion or the limitation of liability for consequential or incidental damages, in such states or jurisdictions, our liability shall be limited to the maximum extent permitted by law.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 14 - INDEMNIFICATION</span></h3>\r\n<span style=\"font-weight: 400;\">You agree to indemnify, defend and hold harmless Annieversal Studios and our parent, subsidiaries, affiliates, partners, officers, directors, agents, contractors, licensors, service providers, subcontractors, suppliers, interns and employees, harmless from any claim or demand, including reasonable attorneys’ fees, made by any third-party due to or arising out of your breach of these Terms of Service or the documents they incorporate by reference, or your violation of any law or the rights of a third-party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 15 - SEVERABILITY</span></h3>\r\n<span style=\"font-weight: 400;\">In the event that any provision of these Terms of Service is determined to be unlawful, void or unenforceable, such provision shall nonetheless be enforceable to the fullest extent permitted by applicable law, and the unenforceable portion shall be deemed to be severed from these Terms of Service, such determination shall not affect the validity and enforceability of any other remaining provisions.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 16 - TERMINATION</span></h3>\r\n<span style=\"font-weight: 400;\">The obligations and liabilities of the parties incurred prior to the termination date shall survive the termination of this agreement for all purposes.</span>\r\n\r\n<span style=\"font-weight: 400;\">These Terms of Service are effective unless and until terminated by either you or us. You may terminate these Terms of Service at any time by notifying us that you no longer wish to use our Services, or when you cease using our site.</span>\r\n\r\n<span style=\"font-weight: 400;\">If in our sole judgment you fail, or we suspect that you have failed, to comply with any term or provision of these Terms of Service, we also may terminate this agreement at any time without notice and you will remain liable for all amounts due up to and including the date of termination; and/or accordingly may deny you access to our Services (or any part thereof).</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 17 - ENTIRE AGREEMENT</span></h3>\r\n<span style=\"font-weight: 400;\">The failure of us to exercise or enforce any right or provision of these Terms of Service shall not constitute a waiver of such right or provision.</span>\r\n\r\n<span style=\"font-weight: 400;\">These Terms of Service and any policies or operating rules posted by us on this site or in respect to The Service constitutes the entire agreement and understanding between you and us and govern your use of the Service, superseding any prior or contemporaneous agreements, communications and proposals, whether oral or written, between you and us (including, but not limited to, any prior versions of the Terms of Service).</span>\r\n\r\n<span style=\"font-weight: 400;\">Any ambiguities in the interpretation of these Terms of Service shall not be construed against the drafting party.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 18 - GOVERNING LAW</span></h3>\r\n<span style=\"font-weight: 400;\">These Terms of Service and any separate agreements whereby we provide you Services shall be governed by and construed in accordance with the laws of 1912 Sidewinder Dr. SUITE 211, Park City, UT, 84060, United States.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 19 - CHANGES TO TERMS OF SERVICE</span></h3>\r\n<span style=\"font-weight: 400;\">You can review the most current version of the Terms of Service at any time at this page.</span>\r\n\r\n<span style=\"font-weight: 400;\">We reserve the right, at our sole discretion, to update, change or replace any part of these Terms of Service by posting updates and changes to our website. It is your responsibility to check our website periodically for changes. Your continued use of or access to our website or the Service following the posting of any changes to these Terms of Service constitutes acceptance of those changes.</span>\r\n\r\n&nbsp;\r\n<h3><span style=\"font-weight: 400;\">SECTION 20 - CONTACT INFORMATION</span></h3>\r\n<span style=\"font-weight: 400;\">Questions about the Terms of Service should be sent to annie [at] annieversalstudios [dot] com.</span>\r\n\r\n&nbsp;','Terms & Conditions','','inherit','closed','closed','','233-revision-v1','','','2019-03-20 15:35:30','2019-03-20 21:35:30','',233,'http://annieversalstudios.com/2019/03/233-revision-v1/',0,'revision','',0),(262,1,'2019-03-20 16:08:10','2019-03-20 22:08:10','<h2>• What does it mean that your designs are \"powered by the Golden Rule\"?</h2>\r\nIn short, <strong>I\'ve always sought to treat others they way I\'d like to be treated.</strong>\r\n\r\nMy digital marketing experience enabled me to open my own consultancy called ONESEVENTWELVE to help local small businesses grow online. I thoroughly enjoy helping them at rates they can afford so they don\'t consider marketing an unattainable investment. ONESEVENTWELVE\'s name comes from the place in the Bible where you can find the Golden Rule–the <strong>first</strong> of the Gospels (Matthew), <strong>Chapter 7</strong>, <strong>Verse 12 </strong>= ONE SEVEN TWELVE.\r\n\r\nI like to think of ONESEVENTWELVE as an \"umbrella\" company for all my ventures, including this darling shop, which is why my designs are <em>powered by the Golden Rule</em>.\r\n<h2>• Do you accept returns or offer refunds?</h2>\r\nI strive for 110% customer satisfaction. However, I understand that sometimes life gets in the way so I\'ll aim to be as accommodating as possible.\r\n\r\n<strong>I ACCEPT RETURNS AND OFFER REFUNDS FOR:</strong> Items that you\'re not satisfied with or purchased in error. (You\'re responsible for the return shipping.)\r\n\r\n<strong>I *DON\'T* ACCEPT RETURNS OR OFFER REFUNDS FOR:</strong> Personalized items (i.e., those that contain a name or any other kind of customization) or digital downloads. If I made a mistake on a personalized item (like a misspelling), I\'d be glad to send you a revised version of the product.\r\n\r\nRead more in my <a href=\"http://annieversalstudios.com/returns/\">Returns Policy</a> page.\r\n<h2>• What if what I got ≠ the listing picture?</h2>\r\nNo two items will look exactly the same. Their inherent beauty comes from being different. Although I use the same type of wood and materials for every product group, please expect to see some variation.\r\n\r\nVariations may include light or dark colored knots and other inconsistencies that are present in all real wood and uniquely made pieces. I won\'t use wood that is not of the absolute highest quality.\r\n<h2>• How do I find out about discounts and new products?</h2>\r\nFeel free to <a href=\"https://instagram.com/annieversalstudios\">follow me on Instagram</a> and/or <a href=\"https://mailchi.mp/9bf63d68050b/annieverse\">subscribe to my newsletter</a> to find new designs, exclusive discounts, <em>and</em> new products that I may not have available on Etsy just yet!\r\n<h2>• How do your custom and personalized orders work?</h2>\r\nThis varies, according to the product.\r\n\r\nSome products will have their own personalization options, where you can add a name or date, for example. These are made-to-order and will therefore take longer to ship.\r\n\r\nOther products don\'t have any additional options and will come as pictured. Some of these may be made-to-order; others will be in stock. Their status will be explicitly stated on the listing.\r\n\r\nI enjoy offering customers the chance to personalize my offerings so be on the lookout for products that do include these options!\r\n<h2>• I have shipping questions.</h2>\r\nI don\'t ship outside of the United States. If you\'re in the USA and would like to learn more about my shipping policy, click here to visit my <a href=\"/shipping\">Shipping Policy</a> page.','Frequently Asked Questions','','inherit','closed','closed','','175-revision-v1','','','2019-03-20 16:08:10','2019-03-20 22:08:10','',175,'http://annieversalstudios.com/2019/03/175-revision-v1/',0,'revision','',0),(263,1,'2019-03-21 12:46:41','2019-03-21 18:46:41','{\n    \"woocommerce_demo_store\": {\n        \"value\": true,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-21 18:46:07\"\n    },\n    \"woocommerce_demo_store_notice\": {\n        \"value\": \"Welcome! The shop is currently under construction but feel free to browse around and learn more about my story :).\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-21 18:46:41\"\n    }\n}','','','trash','closed','closed','','25f3bb40-372d-49d8-85e4-49df62441658','','','2019-03-21 12:46:41','2019-03-21 18:46:41','',0,'http://annieversalstudios.com/?p=263',0,'customize_changeset','',0),(264,1,'2019-03-21 12:46:56','2019-03-21 18:46:56','{\n    \"woocommerce_catalog_columns\": {\n        \"value\": \"3\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-21 18:46:56\"\n    }\n}','','','trash','closed','closed','','0609eaca-128a-46de-85f2-dae3be910b70','','','2019-03-21 12:46:56','2019-03-21 18:46:56','',0,'http://annieversalstudios.com/2019/03/0609eaca-128a-46de-85f2-dae3be910b70/',0,'customize_changeset','',0),(265,1,'2019-03-21 12:47:35','2019-03-21 18:47:35','{\n    \"woocommerce_checkout_phone_field\": {\n        \"value\": \"optional\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-03-21 18:47:35\"\n    }\n}','','','trash','closed','closed','','5280502a-be73-4188-b2f3-c7721b645afb','','','2019-03-21 12:47:35','2019-03-21 18:47:35','',0,'http://annieversalstudios.com/2019/03/5280502a-be73-4188-b2f3-c7721b645afb/',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_queue`
--

DROP TABLE IF EXISTS `wp_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_queue` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `job` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attempts` tinyint(1) NOT NULL DEFAULT '0',
  `locked` tinyint(1) NOT NULL DEFAULT '0',
  `locked_at` datetime DEFAULT NULL,
  `available_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_queue`
--

LOCK TABLES `wp_queue` WRITE;
/*!40000 ALTER TABLE `wp_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_queue` 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=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (31,2,0),(28,2,0),(179,2,0),(178,2,0),(261,2,0),(251,2,0),(250,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,7),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_type','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_visibility','',0,0),(16,16,'product_cat','',0,0);
/*!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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!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 */;
INSERT INTO `wp_termmeta` VALUES (1,2,'headline',''),(2,2,'intro_text',''),(3,2,'display_title','0'),(4,2,'display_description','0'),(5,2,'doctitle',''),(6,2,'description',''),(7,2,'keywords',''),(8,2,'layout',''),(9,2,'noindex','0'),(10,2,'nofollow','0'),(11,2,'noarchive','0');
/*!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) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'TOP MENU','top-menu',0),(3,'simple','simple',0),(4,'grouped','grouped',0),(5,'variable','variable',0),(6,'external','external',0),(7,'exclude-from-search','exclude-from-search',0),(8,'exclude-from-catalog','exclude-from-catalog',0),(9,'featured','featured',0),(10,'outofstock','outofstock',0),(11,'rated-1','rated-1',0),(12,'rated-2','rated-2',0),(13,'rated-3','rated-3',0),(14,'rated-4','rated-4',0),(15,'rated-5','rated-5',0),(16,'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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'first_name','Annie'),(2,1,'last_name',''),(3,1,'nickname','pgapg2'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks,wtwp-intro-pointer,wp410_dfw,gd-quicksetup-start-wizard,wp496_privacy,text_widget_custom_html,text_widget_paste_html,theme_editor_notice'),(13,1,'show_welcome_panel','0'),(14,1,'wp_dashboard_quick_press_last_post_id','221'),(15,1,'genesis_admin_menu','1'),(16,1,'genesis_seo_settings_menu','1'),(17,1,'genesis_import_export_menu','1'),(18,1,'genesis_author_box_single',''),(19,1,'genesis_author_box_archive',''),(20,1,'headline',''),(21,1,'intro_text',''),(22,1,'doctitle',''),(23,1,'meta_description',''),(24,1,'meta_keywords',''),(25,1,'noindex',''),(26,1,'nofollow',''),(27,1,'noarchive',''),(28,1,'layout','full-width-content'),(29,1,'googleplus',''),(30,1,'wp_user-settings','libraryContent=browse&imgsize=full&align=center&urlbutton=none&editor=html&hidetb=1&wplink=1'),(31,1,'wp_user-settings-time','1553183319'),(32,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(33,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:13:\"add-soliloquy\";i:2;s:12:\"add-post_tag\";}'),(34,1,'nav_menu_recently_edited','2'),(35,1,'closedpostboxes_soliloquy','a:0:{}'),(36,1,'metaboxhidden_soliloquy','a:1:{i:0;s:7:\"slugdiv\";}'),(37,1,'session_tokens','a:3:{s:64:\"a06e4f04885adeca900f700972c245d15bc0b8f0e32a7469fc4bcce4c2b3774c\";a:4:{s:10:\"expiration\";i:1554001361;s:2:\"ip\";s:12:\"73.63.64.112\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36\";s:5:\"login\";i:1552791761;}s:64:\"ac58993b5332938413e9971e07c9b6ef073ebc018c565343d6655b8ff23e0247\";a:4:{s:10:\"expiration\";i:1554312367;s:2:\"ip\";s:12:\"73.63.64.112\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36\";s:5:\"login\";i:1553102767;}s:64:\"038bf69771f6a910c9f1a702541307faf0c5f126666a3af2a419506143427394\";a:4:{s:10:\"expiration\";i:1554323795;s:2:\"ip\";s:12:\"73.63.64.112\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36\";s:5:\"login\";i:1553114195;}}'),(38,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"73.63.64.0\";}'),(39,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(40,1,'wc_last_active','1553472000'),(41,1,'dismissed_no_secure_connection_notice','1'),(44,1,'_pum_dismissed_alerts','a:0:{}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'pgapg2','44a3ef0ccb14402cf7fffaf50004cdfc','pgapg2','annieluciapaul@gmail.com','','2013-12-15 19:24:15','',0,'Annie');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_download_log`
--

DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`),
  CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_download_log`
--

LOCK TABLES `wp_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_webhooks`
--

DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_webhooks`
--

LOCK TABLES `wp_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_log`
--

DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_log`
--

LOCK TABLES `wp_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) 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_woocommerce_sessions`
--

LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_sessions` VALUES (3,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:712:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:24:\"annieluciapaul@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1553708779);
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) 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_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zone_locations` VALUES (1,1,'US','country');
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zone_methods` VALUES (1,1,'flat_rate',1,1),(1,2,'free_shipping',2,1);
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) 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_woocommerce_shipping_zones`
--

LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_shipping_zones` VALUES (1,'United States (US)',0);
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) 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_woocommerce_tax_rates`
--

LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_tax_rates` VALUES (1,'US','UT','7.2500','Utah Tax',1,0,0,0,'');
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2019-03-25 19:14:24
