-- MySQL dump 10.13  Distrib 5.7.23-23, for Linux (x86_64)
--
-- Host: localhost    Database: assarbbq_marr
-- ------------------------------------------------------
-- Server version	5.7.23-23

/*!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 */;
/*!50717 SELECT COUNT(*) INTO @rocksdb_has_p_s_session_variables FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'performance_schema' AND TABLE_NAME = 'session_variables' */;
/*!50717 SET @rocksdb_get_is_supported = IF (@rocksdb_has_p_s_session_variables, 'SELECT COUNT(*) INTO @rocksdb_is_supported FROM performance_schema.session_variables WHERE VARIABLE_NAME=\'rocksdb_bulk_load\'', 'SELECT 0') */;
/*!50717 PREPARE s FROM @rocksdb_get_is_supported */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;
/*!50717 SET @rocksdb_enable_bulk_load = IF (@rocksdb_is_supported, 'SET SESSION rocksdb_bulk_load = 1', 'SET @rocksdb_dummy_bulk_load = 0') */;
/*!50717 PREPARE s FROM @rocksdb_enable_bulk_load */;
/*!50717 EXECUTE s */;
/*!50717 DEALLOCATE PREPARE s */;

--
-- Table structure for table `wp_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_520_ci,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `attempts` int(11) NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_actions`
--

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

--
-- Table structure for table `wp_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) 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_actionscheduler_claims`
--

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

--
-- Table structure for table `wp_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) 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_actionscheduler_groups`
--

LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wc-admin-data'),(3,'woocommerce-db-updates');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_actionscheduler_logs`
--

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

--
-- Table structure for table `wp_commentmeta`
--

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

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

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

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

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `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=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2020-11-09 14:43:33','2020-11-09 14:43:33','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0),(2,288,'WCMp','wcmp@demoweblinks.in','','','2020-11-13 11:17:51','2020-11-13 11:17:51','Commission for order <a href=\"http://demoweblinks.in/marlins/wp-admin/post.php?post=287&action=edit\">(ID : 287)</a> is created.',0,'1','WCMp','commission_note',0,0),(3,286,'WooCommerce','woocommerce@demoweblinks.in','','','2020-11-13 11:17:51','2020-11-13 11:17:51','Payment to be made upon delivery. Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(4,287,'WooCommerce','woocommerce@demoweblinks.in','','','2020-11-13 11:17:51','2020-11-13 11:17:51','Update via parent order:  Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(5,286,'Marlins','joaijo93@gmail.com','','','2020-11-13 11:20:19','2020-11-13 11:20:19','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(6,287,'WooCommerce','woocommerce@demoweblinks.in','','','2020-11-13 11:20:51','2020-11-13 11:20:51','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(7,287,'WooCommerce','woocommerce@demoweblinks.in','','','2020-11-13 11:20:55','2020-11-13 11:20:55','Order status changed from Completed to Processing.',0,'1','WooCommerce','order_note',0,0),(8,286,'WooCommerce','woocommerce@demoweblinks.in','','','2020-11-13 11:20:55','2020-11-13 11:20:55','Sync from vendor\'s suborders:  Order status changed from Completed to Processing.',0,'1','WooCommerce','order_note',0,0),(9,1,'Bet9ja Promo Code YOHAIG','gavinbayley@web.de','https://bit.ly/Bet9jaPromotionCode2021','196.247.162.72','2021-09-20 15:06:20','2021-09-20 15:06:20','The right Bet9ja.com bonus code to get your ₦100,000 bonus offer is YOHAIG.\r\n\r\n\r\nThe Bet9ja promotion code or bonus code will give you welcome \r\nbonus money and free bets with your successful first deposit.\r\n\r\n\r\n\r\nYou can use your free get on sports betting, virtual sports, virtual football betting, virtual soccer game, \r\nvirtual games, casino games, horse racing, european leagues,\r\nenglish premier league, american football, zoom soccer, \r\nfootball matches and other popular european leagues.\r\n\r\n\r\nBet9ja is the largest Nigerian online bookmaker and it is owned \r\nby KC Gaming Networks Limited.As a famous and exclusive Nigerian bookmaker, Bet9ja is an all-rounder service.\r\nIt provides numerous sports betting options, including football and all major sports, \r\nimpeccable customer service, attractive odds, and beneficial promotions and offers to customers.\r\nThe bookmaker strives hard to attract all sorts \r\nof clients. It provides different platforms - online as well as offline - to accommodate all players who want to use its services.\r\n\r\nAs more and more customers get drawn to it to reap the benefits, there are increasingly more queries \r\nabout the fundamentals of betting jargon applicable to Bet9ja, Nigeria, and many bettors \r\nare confused about what is what. A particular area of confusion is the various codes in use, such as the promo code, \r\nbet code, coupon code, booking code, etc. Here, let’s have a look at the various codes a bettor \r\nis supposed to know if they want to use the Bet9ja \r\nfeatures properly and make the most of them.\r\n\r\n\r\n\r\nWhat is Coupon Code on Bet9ja? \r\nA coupon code is nothing but a reference code concerning a bet you have made.\r\nOnce you are on the official Bet9ja platform, you can browse the various sports,\r\ntournaments, leagues, and events. You can drill down to \r\nthe game or match you are interested in betting on. Now you can check the odds for various outcomes listed against each match or \r\nevent, and if you decide to bet on one of those outcomes, you can simply click the \r\nrespective odds mentioned. You may make multiple \r\nbets in the same fashion. Each selection of your will be updated in what is known as the Bet Slip.\r\n\r\nWhen you are done, you can mention the amount you wish to stake.\r\nWhen you finalize and place the bet, you get the bet slip with the complete information of your events and bets.\r\nEach bet slip has a reference number on it called the Bet9ja coupon code.\r\nThis code can be used later on to check the results of your bet.\r\n\r\n\r\n\r\n\r\n\r\nHow to Check Coupon Bet9ja? \r\nOnce you have booked your bet using the process mentioned above, \r\nyou can check the results on the Bet9ja portal online using the coupon code we’ve just discussed.\r\n\r\nIf you go to the default Bet9ja portal online, you can use \r\nsuch Bet9ja bet codes to check the Bet9ja coupon in your hand to see the results with the following \r\nsteps. (Alternatively, the codes can also be used as Bet9ja shop \r\ncodes at a Bet9ja agent to get the results. When you present the code to \r\nthe agent, they can check and give you the results.)\r\n\r\n\r\n1. Visit the main official website of Bet9ja.\r\n2. On the right vertical bar, you can see the ‘Coupon Check’ \r\nsection towards the middle.\r\n3. You can see the box with the instruction ‘Insert the \r\ncoupon code you wish to check.’ Insert the coupon code corresponding to your bet slip into this box.\r\n\r\n4. Click the ‘Check’ button represented by a small green box \r\nwith a white arrow to the right of the box.\r\n\r\n5. The results of your bets are displayed, and you can see if you win or not.\r\nTheBet9ja winning coupons will be rewarded \r\nas per the odds.\r\n\r\n\r\n\r\nBet9ja Mobile coupon check\r\nYour coupons can also be checked using your \r\nmobile phone, whether it has a single bet, multiple selections, or even a Bet9ja pool coupon code.\r\nThere are three different methods to check your Bet9ja coupon in Nigeria \r\nusing your mobile phone.\r\n\r\n\r\nBet9ja mobile app coupon check: 1. When you open the app, you can see the \r\n‘Coupon Check’ icon on the top bar. When you tap on it, the ‘Check your \r\nbet’ page opens.\r\n2. You can see the ‘Bet ID’ box where you can enter the \r\ncoupon code.\r\n3. Then tap on the ‘Check your bet’ button, and \r\nthe result will be displayed.\r\n\r\n\r\n1. You can access the mobile site. At the top of the site, you see \r\n5 icons and an ‘All’ button to the right.\r\n\r\n2. Tap on the ‘All’ button to display all the icons.\r\n\r\n3. Tap the ‘Check a bet’ icon button to see the ‘Bet ID’ box.\r\n\r\n4. Enter the coupon code in the box and tap the ‘Check your bet’ button to \r\nsee the results.\r\n\r\n\r\n1. Access the old mobile website.\r\n2. Tap the ‘Check Coupon’ button. The coupon check page is displayed.\r\n\r\n3. Enter the coupon code in the box below the instruction ‘Insert \r\nthe coupon code you wish to check.’\r\n4. Tap on the ‘Check’ button to see the results.\r\n\r\n\r\n\r\nBet9ja Promotion Code 2020\r\nNow let’s see what a promotion code is. It is a code using which you can avail discounts and other benefits when you sign in to the Bet9ja \r\nbetting service and make use of its various features.\r\nWherever a promo code is applicable, you will find a specific box kept aside for it in the relevant form.\r\nIf you have a promo code with you, you may type it in in the box and avail the benefits.\r\n\r\nIf you don’t have a promo code for Bet9ja, you may ignore the box and move on. But then, standard charges apply, and there will be \r\nno discount or other advantages.\r\n\r\n\r\nThe bookie offers different Bet9ja promo codes for free, as \r\nwell as many third-party affiliates and partners of Bet9ja.\r\nA quick online check will show you whatever promo codes \r\nare currently available. Only make sure they are Bet9ja promotion code \r\n2020 as you may also find codes that have expired already and cannot be applied to any promo Bet9ja com feature.\r\nFor instance, if you find the code YOHAIG online,\r\nkeep in mind that it expired on Jan 1, 2020. Rely on trusted sites online for valid codes.\r\n\r\nOther reliable sources for Bet9ja promo codes are affiliates of Bet9ja \r\nand also its official newsletters. Given below are three promotion codes that you can apply on Bet9ja.\r\n\r\n\r\n\r\n\r\n\r\nWhat are Bet9ja Booking Codes?\r\nSometimes, you make all selections on the bet slip, \r\nbut do not wish to pay immediately as you have \r\nnot fully decided yet. In this case, you can simply ‘book the bet’ instead of finalizing it.\r\nWhen you book the bet in this fashion, a temporary Bet9ja code is generated, called \r\nthe Booking code. Such Bet9ja booking codes can be used later on to access your bet selections and \r\nplace the bet. You may make your selections today for an event that takes place tomorrow and get a code.\r\nThe Bet9ja coupon code for today will be applicable tomorrow until the time \r\nthe matches take place. The same rule applies when you get a Bet9ja coupon code \r\nfor this week for a game that will take place next \r\nweek. It cannot be considered an out-dated or old \r\nBet9ja coupon in Nigeria unless the match has taken place.\r\nAnd for live betting, you will be able to place bets until \r\nthe end of the game.\r\n\r\n\r\n\r\nHow to book a bet on Bet9ja\r\nBooking bets is hassle-free on Bet9ja. If you are not \r\na registered member, you can use the site as a guest.\r\nBrowse the various leagues or tournaments and decide which \r\nmatch or event you want to bet on. When you have determined the outcomes to bet on, \r\nclick the odds corresponding to them the same way you do when you want to place a bet.\r\nYour selections will be updated on the bet slip. Insert the amount you wish to stake and click the \r\n‘Bet’ button. Immediately a booking coupon with a number exclusive to the current \r\nbet is displayed, which includes all the information about your bet.\r\nYou can print or email the coupon for it to be used later on a \r\nBet9ja shop or online to complete placing the bet.\r\n\r\n\r\n\r\n\r\n\r\nHow to complete the bet with the Bet9ja booking codes\r\nWhen you have booked your bet, you can use the booking code received to retrieve \r\nthe betting information later and to confirm it. There are multiple ways \r\nto do it: by contacting an offline Bet9ja agent in person and by presenting \r\nsuch codes as Bet9ja shop codes where the agent can check \r\nyour result for you. Today Bet9ja booking code can be used to \r\nfinalize your bet in a matter of seconds using the Bet9ja online \r\nportal. The Bet9ja coupon load can be done by inserting the coupon code in the box provided on the \r\nbet slip section at the top right of the web portal and clicking the ‘Load’ button. You may make modifications to the bet slip selections if required before you \r\nfinalize the bet. If you have made a sufficient deposit to your Bet9ja account from your bank, you can complete the payment online and finish the process.\r\n\r\n\r\n\r\n\r\n\r\nBooking coupon information\r\nLet’s see what information a booking coupon carries once you have booked \r\na bet. Along with the booking coupon presented online, you can see a ‘Print’ button so that you can print the coupon to have its hard copy.\r\nIt also has a ‘Send the booking via email’ button to send the coupon to your \r\nemail address. If you want to register an account, there is also a ‘Register’ button so that you \r\ncan place bets online after that. The main part of the booking \r\ncoupon consists of the following information, besides a bar code.\r\n\r\n\r\n\r\n\r\nBooking number. This is the number commonly known as the booking code.\r\nE.g., ZZC29RL. The date and time of the booking are also mentioned \r\nin it.\r\n\r\n\r\nNew customers will enjoy live betting on sports markets \r\non Bet9ja.\r\n\r\nThey can sports bet on their phone mobile device (mobile app) on football matches, american football, \r\nhorse racing, the premier league and more.\r\n\r\nTheir wagering requirements include a minimum deposit \r\nof ₦100.\r\n\r\nUse the Bet9ja promotion code YOHAIG for a chance to win mini \r\njackpots, titan jackpots, red titan jackpot or the gold titan jackpot.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3416.0 Safari/537.36','comment',0,0),(10,22,'Bet9ja Promo Code YOHAIG 2021','jadamccutcheon@freenet.de','https://sites.sccs.swarthmore.edu/spark9/2021/04/05/hello-world/','196.247.160.199','2021-10-02 21:23:03','2021-10-02 21:23:03','The accurate Bet9ja.com promo code to get your NGN100,000 exclusive bonus is YOHAIG.\r\n\r\n\r\n\r\nThe Bet9ja promotion code or bonus code will give you welcome \r\nbonus money and free bets with your successful first deposit.\r\n\r\n\r\nYou can use your free get on sports betting, virtual sports, virtual football \r\nbetting, virtual soccer game, virtual games, casino games, horse racing, european leagues, english premier league, american football, zoom soccer, football matches and other popular european leagues.\r\n\r\n\r\n\r\nBet9ja is the largest Nigerian online bookmaker and it is owned by KC Gaming \r\nNetworks Limited.For you to be able to win the bonus offer \r\nusing the promotional code, read the step by step guide below on how to get the \r\npromotion code on Bet9ja and how to claim it.\r\n\r\n\r\nUse the code YOHAIG during registration at Bet9ja!\r\nThe exclusive Bet9ja promotion code YOHAIG is valid in 2021 \r\nand will allow you to get the best Bet9ja bonus, which is currently up \r\nto 50,000 NGN.\r\n\r\n\r\nFor you to be able to win the bonus offer using the Bet9ja promotional \r\ncode, read the step by step guide below on how to \r\nget the promotion code on Bet9ja and how to claim \r\nit.\r\n\r\n\r\n\r\nBet9ja Promotion Code YOHAIG Requirements\r\nTo be eligible for this offer, the customer must make a successful first deposit (Minimum deposit:\r\nNGN100) into their Bet9ja account.\r\n\r\n\r\nIf you are yet to open an account with Bet9ja, we are \r\npleased you’re here. At the time of writing, Bet9ja is surging in popularity throughout Africa, and if you sign up with the Bet9ja promotion code identified here, \r\nyou can secure the following welcome bonus:\r\n\r\n\r\n\r\nWelcome Offer Sports: 100% welcome bonus on first deposit\r\n\r\n\r\nJust keep in mind that Bet9ja is a licensed and regulated betting site, meaning that it won’t accept any players that are under the age of 18.\r\n\r\nThis will be checked during the registration process, which brings \r\nus to our next section.\r\n\r\n\r\n\r\nSports Betting Options at Bet9ja\r\nContents\r\n\r\n\r\n1 Bet9ja promotion code YOHAIG: the bonuses\r\n\r\n2 Bet9ja FAQs\r\n\r\n3 Bet9ja Review: Other things to know\r\n\r\n4 Most impressive sportsbook features\r\n\r\n5 Bet9ja mobile - what to look out for\r\n\r\n6 Football Whispers verdict - definitely recommended\r\n\r\n\r\nWith Bet9ja being a renowned bookmaker in the African market, you’d expect quite a large sportsbook to be present.\r\nAnd that’s exactly what Bet9ja delivers, with close to 40 different sports that you \r\ncan wager on right now. This includes fan-favourites like football, basketball,\r\ntennis, American football, boxing/MMA, and even a large eSports showing too.\r\nFor each and every sport that is listed on this site, you can make pre-match and live bets.\r\nThe odds are far from shabby. It’s all the more appealing \r\nthat new customers can use the Bet9ja promotion code YOHAIG to get free \r\nbets to use across these markets too, which creates the perfect environment to explore the \r\nsportsbook without taking on a bunch of risks. You can also \r\nshortlist your favorite sports too so that you can see the available events and markets immediately \r\nonce you sign in.\r\n\r\n\r\nPutting the range of sports and markets \r\naside for a moment, however, we’d like to share \r\na few other unique features of the Bet9ja sports betting \r\nexperience. Within the sportsbook, you will see features like \r\nresults/statistics, live scores, and even designated games where Bet9ja asks \r\nyou to predict the score for a chance at additional rewards.\r\nIt really is one of the leading sportsbooks in the African market!\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nFurther details on the Bet9ja welcome bonus\r\nAs you now know, you must use the Bet9ja promo code \r\nwhen signing up to qualify for the stated offer, but there is a bit of small print to take into account too.\r\nLet’s start with the specifics of the bonus itself.\r\nThe minimum deposit required to qualify for the bonus is N100, and \r\nanything between N1,000 and N100,000 will receive the 100% boost \r\noffered through the promotion. This needs to be \r\ndone with a debit card ideally, as some betting sites can be a little funny about \r\nalternative methods to obtain welcome offers.\r\n\r\n\r\nAnd to unlock the bonus funds, your initial deposit \r\nmust be wagered to the tune of 10x, on sports betting markets that have minimum odds of \r\n3.00. That’s pretty much all there is to it, although as an added bonus, Bet9ja will also give you one free Bet9ja League \r\nticket, which is essentially a bonus token that you may use to wager on this \r\nleague.\r\n\r\n\r\n\r\nOverall Experience\r\nBet9ja is clearly a pretty comprehensive bookmaker, that we already know,\r\nbut what about the overall user experience? Well, it’s fairly decent to be perfectly honest.\r\n\r\nLand on the Bet9ja homepage and you will be greeted \r\nby vibrant colours, cheerful-looking characters floating across the advertising banners, and plenty of \r\nmenu links to help you with finding where you need to go.\r\nAll of this helps to capture your attention, ensure things \r\ndon’t feel too overwhelming as a new customer, and above all, it creates \r\nthe impression of using a truly professional online \r\nbetting site. And then when it comes to the site response times, we were impressed once again.\r\n\r\n\r\nWhether you are placing a bet, accessing a promotion, or flicking between the various products that Bet9ja \r\nhas available - you can expect rapid loading speeds and crisp visuals, no matter how much \r\ninformation is on the page. These elements hold true through both the desktop site and the mobile platforms too, which means that you can expect the same great user experience on both channels.\r\n\r\n\r\n\r\n\r\nBet9ja FAQs\r\n\r\nHow long does it take to sign up with Bet9ja?\r\nIf you head directly to Bet9ja through our provided link,\r\nmost players will be able to sign up within just a few \r\nminutes.\r\n\r\n\r\n\r\nHow will I know if the Bet9ja promotion code YOHAIG has \r\nworked?\r\nOnce you enter the Bet9ja promotion code YOHAIG during the sign-up \r\nprocess, you should see a little verification message. This is what shows you that the code has worked.\r\n\r\n\r\n\r\n\r\nAre there other bonuses I can qualify for once I’ve obtained the sign-up offer?\r\n\r\nAbsolutely. While Bet9ja clearly has a solid sign up offer, there are other promotions including boosted odds markets, unique \r\ncashouts, and profit boosts for certain betting types.\r\nAll of this can be found under the promotions tab on the main site.\r\n\r\n\r\n\r\n\r\nWhat are the main sports that Bet9ja covers?\r\nBet9ja covers sports that are taking place all over the world, \r\nincluding football, tennis, basketball, horse racing, and even eSports.\r\nAll of these can be found in the main sportsbook.\r\n\r\n\r\n\r\nWhat are the supported payment methods?\r\nBet9ja has quite a few payment options open to members right now.\r\n\r\nThis includes Visa/MasterCard debit cards, direct bank transfers, and a number \r\nof e-wallets too.\r\n\r\n\r\n\r\nIs Bet9ja a legal bookmaker?\r\nAbsolutely. Bet9ja operates under a fully valid and verified betting \r\nlicense, so when you are betting at Bet9ja, you can be sure that you are using a legal site.\r\n\r\n\r\n\r\n\r\n\r\nDoes Bet9ja have any alternative products I can also \r\naccess?\r\nYes. After you have opened your account, you will then be able to access products \r\nincluding the casino, the live casino, as well as virtual sports betting.\r\n\r\n\r\n\r\n\r\nHow is the customer support network at Bet9ja?\r\nIn a word, excellent. Bet9ja offers around the clock support for \r\nall members, through methods such as live chat, email, and phone.\r\nThere is also quite a large FAQ section on the site should you want to look through common questions.\r\n\r\n\r\n\r\n\r\nBet9ja Review: Other things to know\r\n\r\nOpening a brand new Bet9ja betting account\r\nGiven that we have provided you with a direct link above, you \r\ndon’t need to go searching very far to get to the right registration form.\r\n\r\nOn that note, you still need to complete the registration process before \r\nyou can benefit from the welcome bonus and the subsequent sports betting features \r\nthat Bet9ja has. So, without wasting any more time,\r\nhere’s how you can sign up with Bet9ja today:\r\n\r\n\r\n\r\n\r\n\r\n1. Click the button above to get to the Bet9ja site\r\n2. Enter the Bet9ja promotion code (code: YOHAIG) when prompted\r\n3. Create your new sign in details - username and password\r\n4. Provide a few personal details - DOB, name, address, contact, \r\netc.\r\n5. Agree to the site’s terms and conditions\r\n6. Open the account\r\n\r\n\r\nThis registration process can be completed through the main desktop site or via the mobile platforms that \r\nBet9ja has available. The process remains exactly the same on each, and while \r\nthis isn’t required, you may want to set up your preferred deposit option when registering \r\nto speed up the process of securing your welcome offer.\r\nJust before we continue, if you are planning on doing this, make sure you use a \r\ndebit card for the first deposit as this method is guaranteed to qualify for \r\nthe bonus.\r\n\r\n\r\n\r\nMost impressive sportsbook features\r\nHaving identified what you can bet on with Bet9ja, \r\nas well as the range of markets you’ll usually \r\nexpect to see for the most popular sports - we’d like \r\nto now dive into the most noteworthy features. After \r\nall, Bet9ja didn’t get to become a leader in the African market without raising the bar, so \r\ndo check out these top features below.\r\n\r\n\r\n\r\nTips for today\r\nBet9ja is evidently a pretty extensive site, as we’ve discussed \r\nthroughout - but this is something that we feel benefits a lot of punters on the site.\r\nAlthough there isn’t specifically a ‘tips for today’ section, punters can combine statistics and \r\nalso follow Bet9ja on Twitter to see recommended bets and the figures that back them up.\r\nFocusing on the statistics section, first of all, you can immediately see important facts and figures that \r\nrelate to the various markets you may be looking to wager \r\non. This allows you to make your own conclusions if you didn’t want to run through any of the \r\ntips for today, which brings us to the next point - following Bet9ja on Twitter.\r\nNot only does Bet9ja advertise exclusive markets through this social media platform, but it will also come up with various tips and predictions \r\nfor specific events.\r\n\r\n\r\n\r\nFilters for markets\r\nHave you ever had the experience of endless scrolling trying to find a market that suits your preferences?\r\nWe certainly have, and it’s something that can be super frustrating!\r\nHowever, this is where Bet9ja particularly excels, as they have designed the sportsbook in such a manner that allows \r\nyou to filter through specific options. For \r\nexample, Bet9ja allows you to set filters such as minimum odds, timeframe for the event \r\nto begin, and you can even establish your own fixed wager values to save a bit of time!\r\n\r\nFor us, this whole system makes the sportsbook easy to work your \r\nway around, and to a certain extent - it allows you to \r\nset up the Bet9ja platform in a way that is ideal for you.\r\nIt\'s also a good way to find the tips for today and \r\nwhat markets they relate to, without any of the headache.\r\n\r\n\r\n\r\n\r\nLive betting\r\nBet9ja certainly isn’t the first sportsbook in Africa to have \r\na rather large live betting offering, but it’s one of the better ones for a number of reasons.\r\n\r\nFirstly, bets can be placed with just the touch of a button, especially if you’ve predetermined what values you \r\nwish to stake. Secondly, there are thousands \r\nof live betting markets that are available for punters to explore every single \r\nday, so you’ll never run dry of options here. And finally, it’s pretty cool that live bets can also be cashed out, which makes the whole environment very \r\nquick, quite intense, and above all, super fun to explore whenever \r\nyou please.\r\n\r\n\r\n\r\nBet9ja mobile - what to look out for\r\nIf you plan on using the Bet9ja mobile platforms, there are a few tools and tricks \r\nyou should keep a lookout for - as identified right here.\r\n\r\n\r\n\r\nThe Bet9ja mobile experience\r\n\r\n\r\n\r\nIf you’d rather make sports bets and access your account on mobile, Bet9ja has two main platforms - the mobile app (available on Android \r\nand iOS), and the mobile site. When you compare the two, \r\nit’s clear that the mobile app offers a better experience, \r\nwith quicker response times, a sharper interface, and a great layout to \r\nallow you to navigate through the mass of sports betting markets with ease.\r\nThere is also the chance to enable push notifications on the app, giving you direct updates on new Bet9ja bonuses and features.\r\nWith this said, it’s not that the mobile site is poor by \r\nany means. This site still supports all markets \r\nand sports, but we’d simply say that the performance isn’t quite as good as \r\nit is with the native app.\r\n\r\n\r\nAnd before we continue, should you want to sign up directly through \r\nthe mobile app, the same Bet9ja promotion code can be used to \r\nclaim the welcome offer.\r\n\r\n\r\n\r\nImproved security for your account\r\nAs and when you’ve installed the Bet9ja mobile app, either for Android or iOS, you will immediately reap the benefits of enhanced security measures.\r\nFor iOS, you can enable features such as Touch ID and Face ID, meaning \r\nthat if someone did get hold of your account and try to \r\naccess it - they’d have a rather difficult time in doing so.\r\nOn top of that, Bet9ja allows you to create a unique four-digit \r\nPIN to enter in addition to your username and password, which is another way to add an extra layer of security.\r\nAnd finally, if you want to make your account almost unbreakable, you can enable \r\ntwo-factor authentication via Google - something which we highly recommend if you’ll have quite a bit of money in your account.\r\n\r\n\r\n\r\n\r\nInstant deposits\r\nMany people overlook the benefits of quick and easy transactions, but \r\nthat’s precisely what the Bet9ja mobile app provides.\r\nOnce you have saved your payment details and/or your payment \r\npreferences, you will be able to simply enter a stake and get the deposit processed, with quite literally the touch of \r\na button. Not only is this great for avoiding frustration relating to long waiting times,\r\nbut it’s also ideal if you see a bet that you want to make, but then you realize that your account balance is low or empty.\r\n\r\n\r\n\r\n\r\nCustomized events\r\nOnce you are signed in, whether through the Bet9ja mobile site or via the mobile app, you can actually choose your favourite sports.\r\nBy doing so, these sports will be added to your shortlist on whichever mobile platform you are using, and once again - this helps to avoid long scrolling times, \r\nlooking through sports/markets you may have zero interest in. These sports will then be indicated with a little star symbol too, although this is something you can swap and change whenever you’d like.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nPros &amp; Cons\r\n\r\nWhat can you do if the Bet9ja promotion code doesn\'t work?\r\n\r\nWith Bet9ja being quite a well put together betting site, you shouldn’t encounter too many \r\nproblems and/or difficulties with using the site.\r\nBut if things get a little confusing or you find that you’re not too sure on how to resolve something, \r\nit’s always important to be able to reach a member of the customer support team.\r\nOn that note, Bet9ja has several key methods you \r\nmay use to reach the team, including email, phone, and our favourite - live chat.\r\nWhile these are the standard methods offered by most betting sites, \r\nBet9ja has taken things into the modern age and listed Twitter messaging as \r\nan available method too. This is all super convenient, and the fact that agents are working around the clock to respond to all inquiries is particularly comforting.\r\nIf you are looking for an alternative to Bet9ja, Wazobet is a great option. If you use a Wazobet \r\npromocode, you can even avail of their welcome offer.\r\n\r\n\r\n\r\n\r\nFootball Whispers verdict - definitely recommended\r\nTo assess the quality of just about any betting site, there are set features that we look for.\r\nThis includes a competitive sign-up offer, which you can get by using the Bet9ja promo code,\r\nas well as the overall sportsbook range, quality of odds, supported payment options, and \r\nmore. Having looked at Bet9ja in quite intensive detail, we can see that \r\nthe site ticks most of the boxes. Not only can you wager on all of your favourite sports on this site, but you can benefit from live betting, a \r\ngreat mobile app for on-the-go wagering, as well as ongoing promotions that \r\nrival even the best offers in the market today. All of these elements are things that \r\nyou don’t find with just any old bookmaker in Africa today, which makes Bet9ja stand out as a market leader - in our \r\nopinion.\r\n\r\n\r\nAnd don’t forget - the Bet9ja promotion code can be used by anyone that \r\nis over the age of 18, based in Africa, and fancies a shot at \r\nsome free bets! So if you like what you’ve seen within this \r\nreview, and you feel that Bet9ja is a site that would serve you well with your \r\nsports betting adventures, make sure you sign up for \r\na new account today.\r\n\r\n\r\nNew customers will enjoy live betting on sports markets on Bet9ja.\r\n\r\n\r\nThey can sports bet on their phone mobile device (mobile app) on football matches, american football, horse \r\nracing, the premier league and more.\r\n\r\nTheir wagering requirements include a minimum deposit of ₦100.\r\n\r\n\r\nUse the Bet9ja promotion code YOHAIG for a chance to win mini jackpots, titan jackpots, red titan jackpot or the gold titan jackpot.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(11,1,'Bet9ja Bonus Money YOHAIG 2021','jayme.lance@bigstring.com','https://www.ukm.my/hbpmaya/hello-world/','196.247.160.199','2021-10-03 21:20:45','2021-10-03 21:20:45','The accurate Bet9ja promo code to get your NGN100k exclusive bonus \r\nis YOHAIG.\r\n\r\nThe Bet9ja promotion code or bonus code will give you welcome bonus money and \r\nfree bets with your successful first deposit.\r\n\r\nYou can use your free get on sports betting, virtual \r\nsports, virtual football betting, virtual soccer game, virtual \r\ngames, casino games, horse racing, european leagues, english premier league, american football, zoom soccer, football matches and other popular european leagues.\r\n\r\n\r\nBet9ja is the largest Nigerian online bookmaker and it \r\nis owned by KC Gaming Networks Limited.For you to get the bonus \r\noffer, use this code when signing up and get an exclusive match \r\nbonus of up to 100% and 100,000 Naira + 50% extra \r\ncasino bonus.\r\n\r\n\r\n\r\nRead our step by step guide below on how to get \r\nthe promotional code for bet9ja.\r\n\r\nVisit the Official Site!\r\n\r\n\r\nGet up to a 100% bonus based on your first deposit. With this exclusive promotion code, Bet9ja will up the bonus amount \r\naccording to your deposit amount.\r\n\r\n\r\nThis review will give you all the background information you need to \r\nknow about Bet9ja and how to maximise your winnings using the Bet9ja promotion code YOHAIG.\r\n\r\n\r\n\r\n\r\n\r\n\r\nIt’s fast and easy to enter your promotion code, which instantly qualifies you for a \r\nbonus of 100% up to ₦100,000. To qualify for this bet9ja \r\nbonus and receive a bonus of up to 100% - make sure you use only the \r\npromotion code bet9ja has already approved.\r\n\r\n\r\n\r\nContinue with this Bet9ja review and you will get all the relevant information. You will \r\nlearn how to use your Bet9ja promotion code to get this bonus \r\nand get tips on other offers and betting markets.\r\n\r\n\r\n\r\n\r\nHow to Claim the Bet9ja Promotion Code - Sports Bonus\r\nFollow these instructions to get your Bet9ja bonus:\r\n\r\n\r\n1. Register as a customer at Bet9ja at the top right-hand side of the screen\r\n2. Enter the Bet9ja Promotion Code: YOHAIG\r\n3. Deposit 100 Naira or more\r\n4. Stake your full deposit at odds of 3.00\r\n5. Your account will then be credited with a first deposit \r\nmatch.\r\n\r\n\r\nThe full terms of the promotion code bet9ja offers are listed out in the Terms and Conditions section.\r\n\r\n\r\n\r\n\r\n\r\n\r\nRegister with the Bet9ja Promotion Code Here\r\n\r\n\r\nBet9ja Promotion Code T&amp;Cs - Sports\r\nThe Bet9ja Promotion Code entitles you to the Match Bonus 100% Up To ₦100,000.\r\nThe way the bonus works is fairly simple. When using \r\nthis promotion code Bet9ja gives you, the following conditions apply:\r\n\r\n\r\n- Register a unique account (make sure you’re the first time user \r\nwith a unique address, email, credit card or debit card etc.).\r\nOnly new users have the possibility to receive the exclusive bonus.\r\n\r\n- While registering do not forget to use the bonus code YOHAIG - this \r\nis the signal for the bookmaker that you want to receive the bonus.\r\n\r\n- Make a deposit. Use ANY of the Bet9ja payment methods - none of them are excluded from the promotion.\r\n- The deposit amount has to be between 100 and 100,000 Naira.\r\n\r\n- You must stake your entire deposit amount.\r\n- The bonus will be 100% of the deposit amount. If you \r\ndeposit 2,500 Naira, you will get 2,500 Naira extra.\r\n\r\n- To withdraw the money you have to wager \r\nthe sum of deposit and bonus 10 times. In our \r\nexample it’s (2,500+2,500)*10=50,000 Naira… Only \r\nthen you will be able to withdraw the bonus.\r\n- Remember to only bet on bets with odds higher than 3.00.\r\n\r\n\r\n\r\nKey T&amp;Cs for the Welcome Offer: \r\n\r\n\r\n\r\n- awarded upon 1st deposit\r\n- full t&amp;cs apply.\r\n\r\nClaim this bonus with Bet9ja Promotion Code: YOHAIG\r\n\r\n\r\n\r\n\r\n\r\n\r\nBet9ja Promotion Code - Casino Bonus\r\n\r\n\r\n\r\nNote: The 50% Casino Welcome Bonus cannot be converted into cash and/or withdrawn unless the \r\nentire 50% Casino Welcome Bonus has been staked no less than 40 times with the minimum \r\nbet of N50 and the maximum bet of N10,000 within 7 (seven) calendar days from the \r\n50% Casino Welcome Bonus fund are credited into the Account.\r\nT&amp;Cs apply._\r\n\r\n\r\n\r\nAbout Bet9ja\r\nBet9ja is a Nigeria-based online sports betting and casino website.\r\nThey have a safe and secure platform for online \r\nbetting, optimized for the Nigerian market.\r\n\r\n\r\nThe company is licensed to legally operate in Nigeria, holding the Lagos \r\nState Lotteries Board license, the Sportsbook and Gaming License \r\nissued by the State of Osun, and hold licenses to operate in all States \r\nwhere sports betting is permitted in Nigeria.\r\n\r\n\r\n\r\n\r\nWith domestic customer support and technical expertise \r\ncoming from Europe, they’ve got the best of both.\r\nThey offer odds on odds on major events in Europe and other parts of the world.\r\n\r\nOn top of the everyday value of sports betting at Bet9ja, \r\nyou can also receive a bonus on multiple bets when you enter the Bet9ja promotion code: YOHAIG.\r\n\r\n\r\n\r\n\r\nRead on to hear more about this special promotion code Bet9ja \r\nwill reward you for.\r\n\r\n- Company Name: Bet9ja.com registered under the trading \r\nname of KC Gaming Networks Limited.\r\n- Registered Office: Tomi’s House, 9 Funsho Williams Avenue, By Fire Station, Ojuelegba Bus Stop, Lagos\r\n- Founded: 2012\r\n- Model: Modern online bookmaker and casino.\r\n- Licenses: State of Osun, Nigeria\r\n- Languages: English\r\n- Restricted countries: No license in the United Kingdom.\r\nNigeria customers only.\r\n- Markets: Nigeria\r\n- Services: FAQ, deposits and withdrawals, tutorials, results, statistics, live score and \r\nlive betting\r\n\r\n\r\n\r\nNo need to go to the shop - Bet online!\r\n\r\n\r\n\r\n\r\n\r\nSports Betting with Bet9ja\r\nWith over 10,000 sport betting options available and additional benefits with the promotion code, Bet9ja gives you quite the selection to choose from.\r\nSoccer is by far the most popular among Bet9ja’s \r\nsports betting markets, of which they offer normal, special, and ante-post betting.\r\n\r\n\r\n\r\n\r\nAlso among Bet9ja’s selection are basketball, tennis, ice hockey, motorsport, American football, \r\nbaseball, handball, rugby, volleyball, cycling, golf, Aussie Rules, cricket, darts, field hockey and \r\npesapallo. You can gain a bonus from bets on any of \r\nthese selections, and the Bet9ja coupon code gives you a higher percentage \r\nfor each additional bet you place.\r\n\r\n\r\n\r\nBet on the Premier League with Bet9ja Promotion Code\r\nAfter months of waiting, we can finally watch and bet on the \r\nEnglish Premier League again. You can start your football \r\nbetting experience at Bet9ja which covers all of the most important sports betting markets worldwide.\r\n\r\n\r\n\r\n\r\nBet on Premier League with Bet9ja\r\n\r\n\r\n\r\n\r\n\r\n\r\nBet On the Bundesliga and other European Leagues with \r\nBet9ja\r\nThe German Bundesliga season 2020/21 is back as one of the big European Leagues to continue its \r\nseason. If you can’t wait to dive into sports \r\nbetting excitement again, then head over to Bet9ja to find \r\nexclusive offers for the upcoming live Bundesliga matches.\r\n\r\n\r\n\r\n\r\nBet on Bundesliga with Bet9ja\r\n\r\n\r\nBet9ja Soccer\r\nThe soccer markets are divided by league, with international clubs, \r\nas well as Nigeria, England and the six main European leagues.\r\nOther minor leagues are also offered, and those are listed out in alphabetical order to make them easy \r\nto browse.\r\n\r\n\r\n\r\nSoccer Specials\r\n\r\nYou can also bet on one-off special soccer events in the Soccer Specials area, for example, \r\nasking: \"What team will Jose Mourinho manage after Chelsea?\" These are updated periodically with \r\ncurrent and relevant betting selections.\r\n\r\n\r\n\r\nAntepost\r\n\r\nBet9ja also offers Antepost betting on select Soccer markets, for example, the Euro 2020, \r\nand on all the top International Clubs and national teams.\r\nAntepost, also known as futures, betting gives you fixed odds \r\non these upcoming events. You can select which team you expect to \r\nwin at the specific odds of your choice and there is a listing of when that event \r\nis to be decided.\r\n\r\n\r\n\r\n\r\n\r\n\r\nStart Betting Now!\r\n\r\n\r\nBet9ja UFC Fight Night - Special Promotion\r\nIf you’re into UFC betting then Bet9ja might be the right sportsbook for you.\r\nBet9ja currently offers a special welcome bonus for UFC Fight \r\nNights. Remember to check the UFC schedule regularly to be informed on which match to \r\nbet on. Bet9ja will be updating its offer according to the ufc events \r\nso you have plenty of opportunities to bet on upcoming \r\nufc fights and the world’s top heavyweights.\r\nThere is no UFC special promotion on bet9ja at the moment\r\n\r\n\r\n\r\nBet9ja League: win the Titan Jackpots\r\nBet9ja offers a range of extremely high jackpots, \r\nsuch as the Red Titan Jackpot or the Gold Titan Jackpot.\r\nBy playing, as usual, you additionally have the opportunity to \r\nwin millions of Naira in a jackpot every week.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBet9ja Zoom Soccer\r\nBet9ja has a new feature: Bet9ja Zoom soccer allows you to experience the \r\nreal leagues every day, as there will always be a match available daily and throughout the year so you no longer have to worry about \r\nthe league coming to an end.\r\n\r\n\r\nIt is basically a virtual soccer game that resembles virtual football \r\nbetting. Zoom Soccer is a great product worth trying out \r\nif you have not tried it already.\r\n\r\n\r\n\r\n\r\n\r\nBet9ja zoom soccer imitates the real sports markets and the \r\nsports leagues. The zoom sports leagues have the same team names.\r\nBet9ja’s Zoom Soccer features some of the most popular European leagues.\r\nThe Zoom Leagues are named after the actual leagues:\r\nBundes-Zoom, Ligue 1-Zoom, Premier-Zoom, Liga-Zoom, Primeira-Zoom, \r\nand Serie A-Zoom respectively.\r\n\r\n\r\nEven the results take time to process, just like the real-life \r\nprocess of football matches. At the same time, you can book \r\nmatches with your phone mobile device or visit any of the Bet9ja outlets nationwide\r\n\r\n\r\nYou can find all of your favourite teams like Barcelona, Manchester United, \r\nReal Madrid or Bayern Munich on the Zoom Soccer platform.\r\nAgain, all the teams will start with the letter Z. Unlike other virtual games, zoom soccer played on your mobile device with a coupon code or played in a shop which makes \r\nit more of a real bet.\r\n\r\n\r\n\r\n\r\nBet9ja Cut 1 Promotion\r\n\r\n\r\n\r\n\r\nLive Betting, Racing, Casino &amp; Virtual Sports\r\nYou might also enjoy the other areas of the Bet9ja \r\nwebsite, including their Live Betting, Racing, Casino, and Virtual sections.\r\n\r\nLive Betting allows you to place bets on events that are ongoing at the same time while you are browsing \r\nBet9ja’s website, with odds that fluctuate based on live market \r\nchanges, going up and down dynamically based on the development of \r\nthe game.\r\n\r\n\r\nBet9ja Racing comprises dog as well as horse racing selections.\r\nIn the Casino, Bet9ja has all the classic casino games you love including blackjack, dice, roulette, Mahjong, keno, Vegas-style games, table games, slots, scratch \r\ncards and draws and numbers. Last but not least, they \r\nhave Virtual Football, Virtual Horse Racing, \r\nVirtual Tennis and Virtual Dog Racing.\r\n\r\n\r\n\r\nBet9ja Mobile\r\nThe same great Bet9ja markets are available in a fresh and easy-to-use format for mobile.\r\nThe new Bet9ja App is available by clicking on the Mobile tab \r\nof the Bet9ja website, then clicking on the Go button. This mobile interface is \r\noptimized for portable devices, whether you use an iPhone,\r\niPad, Android, or other mobile devices. It lets you bet while you’re on the go, and \r\ngives you access to every single one of Bet9ja’s regular markets available through their regular web platform, all from the convenience of \r\nyour phone.\r\n\r\n\r\n\r\nSecurity\r\nThe company uses advanced technical systems in the background, which make for \r\na positive betting experience upfront. Bet9ja \r\nuses up-to-date encryption methods to keep data secure.\r\nThe computer system and data are protected using Dell \r\nservers and Fortinet Firewall and feature a Thawte SSL encryption certificate.\r\nBet9ja treats all data you provide them with as strictly private and it shall only be used following the privacy statement \r\nreleased on their website.\r\n\r\n\r\n\r\nOpinions on bet9ja\r\nBet9ja’s Nigeria-based online betting services cater directly to the Nigerian market and they offer domestic customer service to ensure their customers are completely satisfied \r\nwith their experience. That means the staff are available during regular Nigerian business hours, to provide the best possible support to local customers.\r\nAll business is conducted in Naira, so there is no need to convert currencies,\r\nkeeping things simple and straightforward.\r\n\r\n\r\nBet9ja offers a large selection of the most popular sports, \r\nand give their customers a bonus deal with the bet9 bonus code,\r\nto up the ante. There are also options for those markets for those who \r\nare more into casino games, racing or virtual betting.\r\n\r\n\r\n\r\nNew customers will enjoy live betting on sports markets on Bet9ja.\r\n\r\n\r\n\r\nThey can sports bet on their phone mobile device (mobile app) on football matches, american football, horse racing, the premier league and more.\r\n\r\n\r\nTheir wagering requirements include a minimum deposit of ₦100.\r\n\r\n\r\n\r\nUse the Bet9ja promotion code YOHAIG for a chance to win mini jackpots, titan jackpots, red titan jackpot or the gold titan jackpot.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; IEeleven; rv:11.0) like Gecko','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=21195 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://demoweblinks.in/marlins','yes'),(2,'home','http://demoweblinks.in/marlins','yes'),(3,'blogname','Marlins','yes'),(4,'blogdescription','wardrobe','yes'),(5,'users_can_register','1','yes'),(6,'admin_email','joaijo93@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:310:{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:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:16:\"dc_commission/?$\";s:33:\"index.php?post_type=dc_commission\";s:46:\"dc_commission/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=dc_commission&feed=$matches[1]\";s:41:\"dc_commission/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=dc_commission&feed=$matches[1]\";s:33:\"dc_commission/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=dc_commission&paged=$matches[1]\";s:19:\"wcmp_transaction/?$\";s:36:\"index.php?post_type=wcmp_transaction\";s:49:\"wcmp_transaction/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wcmp_transaction&feed=$matches[1]\";s:44:\"wcmp_transaction/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=wcmp_transaction&feed=$matches[1]\";s:36:\"wcmp_transaction/page/([0-9]{1,})/?$\";s:54:\"index.php?post_type=wcmp_transaction&paged=$matches[1]\";s:16:\"featured_item/?$\";s:33:\"index.php?post_type=featured_item\";s:46:\"featured_item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:41:\"featured_item/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=featured_item&feed=$matches[1]\";s:33:\"featured_item/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=featured_item&paged=$matches[1]\";s:32:\"blocks/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"blocks/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"blocks/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"blocks/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"blocks/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"blocks/(.+?)/embed/?$\";s:39:\"index.php?blocks=$matches[1]&embed=true\";s:25:\"blocks/(.+?)/trackback/?$\";s:33:\"index.php?blocks=$matches[1]&tb=1\";s:33:\"blocks/(.+?)/page/?([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&paged=$matches[2]\";s:40:\"blocks/(.+?)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?blocks=$matches[1]&cpage=$matches[2]\";s:30:\"blocks/(.+?)/wc-api(/(.*))?/?$\";s:47:\"index.php?blocks=$matches[1]&wc-api=$matches[3]\";s:36:\"blocks/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"blocks/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"blocks/(.+?)(?:/([0-9]+))?/?$\";s:45:\"index.php?blocks=$matches[1]&page=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s: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:57:\"block_categories/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=block_categories&term=$matches[1]&feed=$matches[2]\";s:52:\"block_categories/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=block_categories&term=$matches[1]&feed=$matches[2]\";s:33:\"block_categories/([^/]+)/embed/?$\";s:63:\"index.php?taxonomy=block_categories&term=$matches[1]&embed=true\";s:45:\"block_categories/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?taxonomy=block_categories&term=$matches[1]&paged=$matches[2]\";s:27:\"block_categories/([^/]+)/?$\";s:52:\"index.php?taxonomy=block_categories&term=$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:39:\"dc_commission/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"dc_commission/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"dc_commission/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"dc_commission/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"dc_commission/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"dc_commission/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"dc_commission/(.+?)/embed/?$\";s:65:\"index.php?post_type=dc_commission&pagename=$matches[1]&embed=true\";s:32:\"dc_commission/(.+?)/trackback/?$\";s:59:\"index.php?post_type=dc_commission&pagename=$matches[1]&tb=1\";s:52:\"dc_commission/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:71:\"index.php?post_type=dc_commission&pagename=$matches[1]&feed=$matches[2]\";s:47:\"dc_commission/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:71:\"index.php?post_type=dc_commission&pagename=$matches[1]&feed=$matches[2]\";s:40:\"dc_commission/(.+?)/page/?([0-9]{1,})/?$\";s:72:\"index.php?post_type=dc_commission&pagename=$matches[1]&paged=$matches[2]\";s:47:\"dc_commission/(.+?)/comment-page-([0-9]{1,})/?$\";s:72:\"index.php?post_type=dc_commission&pagename=$matches[1]&cpage=$matches[2]\";s:37:\"dc_commission/(.+?)/wc-api(/(.*))?/?$\";s:73:\"index.php?post_type=dc_commission&pagename=$matches[1]&wc-api=$matches[3]\";s:43:\"dc_commission/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:54:\"dc_commission/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:36:\"dc_commission/(.+?)(?:/([0-9]+))?/?$\";s:71:\"index.php?post_type=dc_commission&pagename=$matches[1]&page=$matches[2]\";s:42:\"wcmp_transaction/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"wcmp_transaction/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"wcmp_transaction/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"wcmp_transaction/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"wcmp_transaction/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"wcmp_transaction/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"wcmp_transaction/(.+?)/embed/?$\";s:68:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&embed=true\";s:35:\"wcmp_transaction/(.+?)/trackback/?$\";s:62:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&tb=1\";s:55:\"wcmp_transaction/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:74:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&feed=$matches[2]\";s:50:\"wcmp_transaction/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:74:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&feed=$matches[2]\";s:43:\"wcmp_transaction/(.+?)/page/?([0-9]{1,})/?$\";s:75:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&paged=$matches[2]\";s:50:\"wcmp_transaction/(.+?)/comment-page-([0-9]{1,})/?$\";s:75:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&cpage=$matches[2]\";s:40:\"wcmp_transaction/(.+?)/wc-api(/(.*))?/?$\";s:76:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&wc-api=$matches[3]\";s:46:\"wcmp_transaction/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"wcmp_transaction/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"wcmp_transaction/(.+?)(?:/([0-9]+))?/?$\";s:74:\"index.php?post_type=wcmp_transaction&pagename=$matches[1]&page=$matches[2]\";s:44:\"wcmp_vendor_notice/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"wcmp_vendor_notice/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"wcmp_vendor_notice/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"wcmp_vendor_notice/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"wcmp_vendor_notice/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"wcmp_vendor_notice/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"wcmp_vendor_notice/(.+?)/embed/?$\";s:70:\"index.php?post_type=wcmp_vendor_notice&pagename=$matches[1]&embed=true\";s:37:\"wcmp_vendor_notice/(.+?)/trackback/?$\";s:64:\"index.php?post_type=wcmp_vendor_notice&pagename=$matches[1]&tb=1\";s:45:\"wcmp_vendor_notice/(.+?)/page/?([0-9]{1,})/?$\";s:77:\"index.php?post_type=wcmp_vendor_notice&pagename=$matches[1]&paged=$matches[2]\";s:52:\"wcmp_vendor_notice/(.+?)/comment-page-([0-9]{1,})/?$\";s:77:\"index.php?post_type=wcmp_vendor_notice&pagename=$matches[1]&cpage=$matches[2]\";s:42:\"wcmp_vendor_notice/(.+?)/wc-api(/(.*))?/?$\";s:78:\"index.php?post_type=wcmp_vendor_notice&pagename=$matches[1]&wc-api=$matches[3]\";s:48:\"wcmp_vendor_notice/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:59:\"wcmp_vendor_notice/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:41:\"wcmp_vendor_notice/(.+?)(?:/([0-9]+))?/?$\";s:76:\"index.php?post_type=wcmp_vendor_notice&pagename=$matches[1]&page=$matches[2]\";s:41:\"wcmp_university/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"wcmp_university/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"wcmp_university/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wcmp_university/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wcmp_university/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"wcmp_university/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"wcmp_university/(.+?)/embed/?$\";s:67:\"index.php?post_type=wcmp_university&pagename=$matches[1]&embed=true\";s:34:\"wcmp_university/(.+?)/trackback/?$\";s:61:\"index.php?post_type=wcmp_university&pagename=$matches[1]&tb=1\";s:42:\"wcmp_university/(.+?)/page/?([0-9]{1,})/?$\";s:74:\"index.php?post_type=wcmp_university&pagename=$matches[1]&paged=$matches[2]\";s:49:\"wcmp_university/(.+?)/comment-page-([0-9]{1,})/?$\";s:74:\"index.php?post_type=wcmp_university&pagename=$matches[1]&cpage=$matches[2]\";s:39:\"wcmp_university/(.+?)/wc-api(/(.*))?/?$\";s:75:\"index.php?post_type=wcmp_university&pagename=$matches[1]&wc-api=$matches[3]\";s:45:\"wcmp_university/.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"wcmp_university/.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"wcmp_university/(.+?)(?:/([0-9]+))?/?$\";s:73:\"index.php?post_type=wcmp_university&pagename=$matches[1]&page=$matches[2]\";s:47:\"vendor/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?dc_vendor_shop=$matches[1]&feed=$matches[2]\";s:42:\"vendor/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?dc_vendor_shop=$matches[1]&feed=$matches[2]\";s:23:\"vendor/([^/]+)/embed/?$\";s:47:\"index.php?dc_vendor_shop=$matches[1]&embed=true\";s:35:\"vendor/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?dc_vendor_shop=$matches[1]&paged=$matches[2]\";s:17:\"vendor/([^/]+)/?$\";s:36:\"index.php?dc_vendor_shop=$matches[1]\";s:41:\"featured_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"featured_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"featured_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"featured_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"featured_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"featured_item/([^/]+)/embed/?$\";s:46:\"index.php?featured_item=$matches[1]&embed=true\";s:34:\"featured_item/([^/]+)/trackback/?$\";s:40:\"index.php?featured_item=$matches[1]&tb=1\";s:54:\"featured_item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:49:\"featured_item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?featured_item=$matches[1]&feed=$matches[2]\";s:42:\"featured_item/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&paged=$matches[2]\";s:49:\"featured_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?featured_item=$matches[1]&cpage=$matches[2]\";s:39:\"featured_item/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?featured_item=$matches[1]&wc-api=$matches[3]\";s:45:\"featured_item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"featured_item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"featured_item/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?featured_item=$matches[1]&page=$matches[2]\";s:30:\"featured_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"featured_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"featured_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"featured_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"featured_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:63:\"featured_item_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:58:\"featured_item_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?featured_item_category=$matches[1]&feed=$matches[2]\";s:39:\"featured_item_category/([^/]+)/embed/?$\";s:55:\"index.php?featured_item_category=$matches[1]&embed=true\";s:51:\"featured_item_category/([^/]+)/page/?([0-9]{1,})/?$\";s:62:\"index.php?featured_item_category=$matches[1]&paged=$matches[2]\";s:33:\"featured_item_category/([^/]+)/?$\";s:44:\"index.php?featured_item_category=$matches[1]\";s:58:\"featured_item_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:53:\"featured_item_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?featured_item_tag=$matches[1]&feed=$matches[2]\";s:34:\"featured_item_tag/([^/]+)/embed/?$\";s:50:\"index.php?featured_item_tag=$matches[1]&embed=true\";s:46:\"featured_item_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?featured_item_tag=$matches[1]&paged=$matches[2]\";s:28:\"featured_item_tag/([^/]+)/?$\";s:39:\"index.php?featured_item_tag=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=64&cpage=$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:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s: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:39:\"(.?.+?)/vendor-announcements(/(.*))?/?$\";s:63:\"index.php?pagename=$matches[1]&vendor-announcements=$matches[3]\";s:26:\"(.?.+?)/profile(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&profile=$matches[3]\";s:29:\"(.?.+?)/storefront(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&storefront=$matches[3]\";s:33:\"(.?.+?)/vendor-billing(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&vendor-billing=$matches[3]\";s:34:\"(.?.+?)/vendor-policies(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&vendor-policies=$matches[3]\";s:34:\"(.?.+?)/vendor-shipping(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&vendor-shipping=$matches[3]\";s:32:\"(.?.+?)/vendor-report(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&vendor-report=$matches[3]\";s:35:\"(.?.+?)/banking-overview(/(.*))?/?$\";s:59:\"index.php?pagename=$matches[1]&banking-overview=$matches[3]\";s:30:\"(.?.+?)/add-product(/(.*))?/?$\";s:54:\"index.php?pagename=$matches[1]&add-product=$matches[3]\";s:31:\"(.?.+?)/edit-product(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-product=$matches[3]\";s:27:\"(.?.+?)/products(/(.*))?/?$\";s:51:\"index.php?pagename=$matches[1]&products=$matches[3]\";s:29:\"(.?.+?)/add-coupon(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&add-coupon=$matches[3]\";s:26:\"(.?.+?)/coupons(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&coupons=$matches[3]\";s:32:\"(.?.+?)/vendor-orders(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&vendor-orders=$matches[3]\";s:36:\"(.?.+?)/vendor-withdrawal(/(.*))?/?$\";s:60:\"index.php?pagename=$matches[1]&vendor-withdrawal=$matches[3]\";s:38:\"(.?.+?)/transaction-details(/(.*))?/?$\";s:62:\"index.php?pagename=$matches[1]&transaction-details=$matches[3]\";s:39:\"(.?.+?)/vendor-knowledgebase(/(.*))?/?$\";s:63:\"index.php?pagename=$matches[1]&vendor-knowledgebase=$matches[3]\";s:31:\"(.?.+?)/vendor-tools(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&vendor-tools=$matches[3]\";s:31:\"(.?.+?)/products-qna(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&products-qna=$matches[3]\";s:42:\"(.?.+?)/rejected-vendor-reapply(/(.*))?/?$\";s:66:\"index.php?pagename=$matches[1]&rejected-vendor-reapply=$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'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:5:{i:0;s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:49:\"dc-woocommerce-multi-vendor/dc_product_vendor.php\";i:3;s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";i:4;s:27:\"woocommerce/woocommerce.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','flatsome','yes'),(41,'stylesheet','flatsome-child','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','dc_vendor','yes'),(46,'db_version','48748','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','280','yes'),(57,'thumbnail_size_h','280','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','800','yes'),(60,'medium_size_h','400','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1400','yes'),(63,'large_size_h','800','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:5:{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;i:5;a:0:{}i:7;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:14;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}}','yes'),(77,'widget_text','a:4:{i:1;a:0:{}i:4;a:3:{s:5:\"title\";s:4:\"asdf\";s:4:\"text\";s:4:\"asdf\";s:6:\"filter\";b:0;}i:13;a:3:{s:5:\"title\";s:5:\"About\";s:4:\"text\";s:98:\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:24:\"wp-whatsapp/whatsapp.php\";s:27:\"nta_whatsapp_uninstall_hook\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";a:2:{i:0;s:15:\"HT_CTC_Register\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','89','yes'),(82,'page_on_front','64','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','301','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1629959301','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'initial_db_version','48748','yes'),(96,'wp_user_roles','a:10:{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;}}s:17:\"dc_pending_vendor\";a:2:{s:4:\"name\";s:14:\"Pending Vendor\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:18:\"dc_rejected_vendor\";a:2:{s:4:\"name\";s:15:\"Rejected Vendor\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:9:\"dc_vendor\";a:2:{s:4:\"name\";s:6:\"Vendor\";s:12:\"capabilities\";a:25:{s:4:\"read\";b:1;s:14:\"manage_product\";b:1;s:9:\"edit_post\";b:1;s:10:\"edit_posts\";b:1;s:12:\"delete_posts\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:20:\"assign_product_terms\";b:1;s:12:\"upload_files\";b:1;s:12:\"read_product\";b:1;s:16:\"read_shop_coupon\";b:1;s:16:\"edit_shop_orders\";b:1;s:12:\"edit_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:15:\"delete_products\";b:1;s:16:\"publish_products\";b:0;s:23:\"edit_published_products\";b:1;s:25:\"delete_published_products\";b:1;s:16:\"edit_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:18:\"delete_shop_coupon\";b:1;s:19:\"delete_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:0;s:27:\"edit_published_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;}}}','yes'),(97,'fresh_site','0','yes'),(98,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:4;a:1:{s:5:\"title\";s:6:\"Search\";}}','yes'),(99,'widget_recent-posts','a:5:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:6;a:3:{s:5:\"title\";s:4:\"asdf\";s:6:\"number\";i:3;s:9:\"show_date\";b:0;}i:8;a:0:{}}','yes'),(100,'widget_recent-comments','a:4:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:5;a:2:{s:5:\"title\";s:15:\"Recent Comments\";s:6:\"number\";i:5;}}','yes'),(101,'widget_archives','a:5:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}i:6;a:3:{s:5:\"title\";s:7:\"Archive\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;}i:7;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:1;s:8:\"dropdown\";i:0;}}','yes'),(102,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:70:{i:0;s:7:\"pages-3\";i:1;s:7:\"pages-5\";i:2;s:7:\"pages-6\";i:3;s:7:\"pages-8\";i:4;s:10:\"calendar-3\";i:5;s:10:\"calendar-5\";i:6;s:10:\"archives-4\";i:7;s:10:\"archives-6\";i:8;s:8:\"search-4\";i:9;s:6:\"text-4\";i:10;s:12:\"categories-5\";i:11;s:12:\"categories-7\";i:12;s:14:\"recent-posts-4\";i:13;s:14:\"recent-posts-6\";i:14;s:14:\"recent-posts-8\";i:15;s:17:\"recent-comments-4\";i:16;s:11:\"tag_cloud-3\";i:17;s:11:\"tag_cloud-8\";i:18;s:10:\"nav_menu-3\";i:19;s:10:\"nav_menu-4\";i:20;s:25:\"woocommerce_widget_cart-3\";i:21;s:25:\"woocommerce_widget_cart-5\";i:22;s:33:\"woocommerce_layered_nav_filters-3\";i:23;s:33:\"woocommerce_layered_nav_filters-5\";i:24;s:33:\"woocommerce_layered_nav_filters-7\";i:25;s:33:\"woocommerce_layered_nav_filters-9\";i:26;s:25:\"woocommerce_layered_nav-3\";i:27;s:25:\"woocommerce_layered_nav-5\";i:28;s:25:\"woocommerce_layered_nav-7\";i:29;s:26:\"woocommerce_layered_nav-10\";i:30;s:26:\"woocommerce_price_filter-3\";i:31;s:26:\"woocommerce_price_filter-5\";i:32;s:26:\"woocommerce_price_filter-7\";i:33;s:27:\"woocommerce_price_filter-11\";i:34;s:32:\"woocommerce_product_categories-5\";i:35;s:32:\"woocommerce_product_categories-7\";i:36;s:32:\"woocommerce_product_categories-9\";i:37;s:33:\"woocommerce_product_categories-10\";i:38;s:33:\"woocommerce_product_categories-12\";i:39;s:31:\"woocommerce_product_tag_cloud-3\";i:40;s:31:\"woocommerce_product_tag_cloud-5\";i:41;s:31:\"woocommerce_product_tag_cloud-6\";i:42;s:31:\"woocommerce_product_tag_cloud-7\";i:43;s:22:\"woocommerce_products-3\";i:44;s:22:\"woocommerce_products-4\";i:45;s:22:\"woocommerce_products-5\";i:46;s:22:\"woocommerce_products-7\";i:47;s:22:\"woocommerce_products-9\";i:48;s:23:\"woocommerce_products-10\";i:49;s:27:\"woocommerce_rating_filter-2\";i:50;s:27:\"woocommerce_rating_filter-3\";i:51;s:28:\"woocommerce_recent_reviews-3\";i:52;s:38:\"woocommerce_recently_viewed_products-3\";i:53;s:38:\"woocommerce_recently_viewed_products-5\";i:54;s:38:\"woocommerce_recently_viewed_products-7\";i:55;s:32:\"woocommerce_top_rated_products-2\";i:56;s:21:\"null-instagram-feed-3\";i:57;s:21:\"null-instagram-feed-4\";i:58;s:23:\"flatsome_recent_posts-3\";i:59;s:23:\"flatsome_recent_posts-5\";i:60;s:23:\"flatsome_recent_posts-6\";i:61;s:23:\"flatsome_recent_posts-8\";i:62;s:23:\"flatsome_recent_posts-9\";i:63;s:24:\"flatsome_recent_posts-11\";i:64;s:24:\"flatsome_recent_posts-13\";i:65;s:24:\"flatsome_recent_posts-14\";i:66;s:24:\"flatsome_recent_posts-16\";i:67;s:15:\"upsell_widget-3\";i:68;s:15:\"upsell_widget-5\";i:69;s:15:\"upsell_widget-7\";}s:12:\"sidebar-main\";a:7:{i:0;s:7:\"text-13\";i:1;s:24:\"flatsome_recent_posts-17\";i:2;s:17:\"recent-comments-5\";i:3;s:11:\"tag_cloud-9\";i:4;s:13:\"categories-14\";i:5;s:10:\"archives-7\";i:6;s:21:\"null-instagram-feed-5\";}s:16:\"sidebar-footer-1\";a:4:{i:0;s:23:\"woocommerce_products-12\";i:1;s:23:\"woocommerce_products-11\";i:2;s:23:\"woocommerce_products-13\";i:3;s:32:\"woocommerce_top_rated_products-3\";}s:16:\"sidebar-footer-2\";a:3:{i:0;s:14:\"block_widget-2\";i:1;s:24:\"flatsome_recent_posts-18\";i:2;s:14:\"block_widget-3\";}s:13:\"array_version\";i:3;s:12:\"shop-sidebar\";a:5:{i:0;s:34:\"woocommerce_layered_nav_filters-10\";i:1;s:33:\"woocommerce_product_categories-13\";i:2;s:26:\"woocommerce_layered_nav-11\";i:3;s:26:\"woocommerce_price_filter-9\";i:4;s:38:\"woocommerce_recently_viewed_products-8\";}s:15:\"product-sidebar\";a:0:{}}','yes'),(104,'cron','a:21:{i:1653031649;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1653031744;a:1:{s:31:\"wcmp_spmv_excluded_products_map\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:13:\"every_5minute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1653032615;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:1653032913;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1653032919;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1653035244;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:1653040815;a:1:{s:25:\"vendor_weekly_order_stats\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1653055005;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:1653057814;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653057815;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:1653057827;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653057829;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:1653058113;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1653076615;a:2:{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;}}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:1653087405;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:1653091200;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:1653403414;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1653422265;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1655330415;a:1:{s:26:\"vendor_monthly_order_stats\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}i:1655330539;a:1:{s:18:\"masspay_cron_start\";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'),(105,'widget_pages','a:6:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:3:{s:5:\"title\";s:5:\"Pages\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}i:5;a:0:{}i:6;a:3:{s:5:\"title\";s:0:\"\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}i:8;a:0:{}}','yes'),(106,'widget_calendar','a:4:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}}','yes'),(107,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_tag_cloud','a:5:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:8;a:0:{}i:9;a:2:{s:5:\"title\";s:9:\"Tag Cloud\";s:8:\"taxonomy\";s:8:\"post_tag\";}}','yes'),(112,'widget_nav_menu','a:2:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}}','yes'),(113,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'recovery_keys','a:0:{}','yes'),(117,'theme_mods_twentytwenty','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1604933203;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(130,'can_compress_scripts','0','no'),(143,'finished_updating_comment_type','1','yes'),(146,'current_theme','Flatsome Child','yes'),(147,'theme_mods_flatsome','a:32:{i:0;b:0;s:17:\"flatsome_fallback\";i:0;s:20:\"topbar_elements_left\";a:1:{i:0;s:4:\"html\";}s:21:\"topbar_elements_right\";a:3:{i:0;s:7:\"nav-top\";i:1;s:10:\"newsletter\";i:2;s:6:\"social\";}s:20:\"header_elements_left\";a:2:{i:0;s:6:\"search\";i:1;s:3:\"nav\";}s:21:\"header_elements_right\";a:3:{i:0;s:7:\"account\";i:1;s:7:\"divider\";i:2;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:1:{i:0;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:7:{i:0;s:11:\"search-form\";i:1;s:3:\"nav\";i:2;s:7:\"account\";i:3;s:10:\"newsletter\";i:4;s:6:\"social\";i:5;s:6:\"html-2\";i:6;s:6:\"html-3\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:10:\"type_texts\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"400\";}s:8:\"type_nav\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:3:\"400\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.12.3\";s:18:\"nav_menu_locations\";a:0:{}s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Mon, 09 Nov 2020 14:46:45 +0000\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1604933249;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-main\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:16:\"sidebar-footer-1\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:16:\"sidebar-footer-2\";a:0:{}}}}','yes'),(148,'theme_switched','','yes'),(149,'widget_flatsome_recent_posts','a:13:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:3;s:5:\"image\";s:2:\"on\";}i:5;a:3:{s:5:\"title\";s:5:\"Posts\";s:6:\"number\";i:5;s:5:\"image\";s:2:\"on\";}i:6;a:3:{s:5:\"title\";s:16:\"Latest From Blog\";s:6:\"number\";i:4;s:5:\"image\";N;}i:8;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;s:5:\"image\";N;}i:9;a:3:{s:5:\"title\";s:10:\"Thumbnail \";s:6:\"number\";i:5;s:5:\"image\";s:2:\"on\";}i:11;a:3:{s:5:\"title\";s:17:\"Latest Blog Posts\";s:6:\"number\";i:5;s:5:\"image\";N;}i:13;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:4;s:5:\"image\";N;}i:14;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;s:5:\"image\";N;}i:16;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:3;s:5:\"image\";N;}i:17;a:3:{s:5:\"title\";s:12:\"Latest Posts\";s:6:\"number\";i:5;s:5:\"image\";N;}i:18;a:3:{s:5:\"title\";s:11:\"Latest News\";s:6:\"number\";i:4;s:5:\"image\";N;}}','yes'),(150,'widget_block_widget','a:3:{s:12:\"_multiwidget\";i:1;i:2;a:2:{s:5:\"title\";s:8:\"About us\";s:5:\"block\";s:15:\"footer-about-us\";}i:3;a:2:{s:5:\"title\";s:21:\"Signup for Newsletter\";s:5:\"block\";s:24:\"footer-newsletter-signup\";}}','yes'),(154,'allowedthemes','a:1:{s:14:\"flatsome-child\";b:1;}','no'),(155,'fl_has_child_theme','flatsome-child','yes'),(157,'theme_mods_flatsome-child','a:117:{i:0;b:0;s:17:\"flatsome_fallback\";i:0;s:20:\"topbar_elements_left\";a:1:{i:0;s:4:\"html\";}s:21:\"topbar_elements_right\";a:2:{i:0;s:7:\"nav-top\";i:1;s:6:\"social\";}s:20:\"header_elements_left\";a:2:{i:0;s:6:\"search\";i:1;s:3:\"nav\";}s:21:\"header_elements_right\";a:3:{i:0;s:7:\"account\";i:1;s:7:\"divider\";i:2;s:4:\"cart\";}s:27:\"header_elements_bottom_left\";a:0:{}s:29:\"header_elements_bottom_center\";a:0:{}s:28:\"header_elements_bottom_right\";a:0:{}s:27:\"header_mobile_elements_left\";a:1:{i:0;s:9:\"menu-icon\";}s:28:\"header_mobile_elements_right\";a:1:{i:0;s:4:\"cart\";}s:26:\"header_mobile_elements_top\";a:1:{i:0;s:4:\"html\";}s:14:\"mobile_sidebar\";a:5:{i:0;s:11:\"search-form\";i:1;s:3:\"nav\";i:2;s:7:\"account\";i:3;s:6:\"html-2\";i:4;s:6:\"html-3\";}s:14:\"product_layout\";s:19:\"right-sidebar-small\";s:23:\"payment_icons_placement\";s:6:\"footer\";s:14:\"follow_twitter\";s:10:\"http://url\";s:15:\"follow_facebook\";s:10:\"http://url\";s:16:\"follow_instagram\";s:10:\"http://url\";s:12:\"follow_email\";s:10:\"your@email\";s:16:\"flatsome_version\";i:3;s:24:\"portfolio_archive_filter\";s:4:\"left\";s:13:\"type_headings\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:10:\"type_texts\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"400\";}s:8:\"type_nav\";a:2:{s:11:\"font-family\";s:4:\"Lato\";s:7:\"variant\";s:3:\"700\";}s:8:\"type_alt\";a:2:{s:11:\"font-family\";s:14:\"Dancing Script\";s:7:\"variant\";s:3:\"400\";}s:14:\"pages_template\";s:7:\"default\";s:11:\"site_loader\";s:0:\"\";s:19:\"flatsome_db_version\";s:6:\"3.12.3\";s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:67;s:6:\"footer\";i:66;s:11:\"top_bar_nav\";i:66;}s:7:\"backups\";N;s:9:\"smof_init\";s:31:\"Mon, 09 Nov 2020 14:47:34 +0000\";s:18:\"custom_css_post_id\";i:-1;s:9:\"site_logo\";s:68:\"http://demoweblinks.in/marlins/wp-content/uploads/2020/11/marlin.png\";s:10:\"logo_width\";s:3:\"398\";s:12:\"logo_padding\";s:2:\"18\";s:11:\"topbar_show\";b:0;s:17:\"header_top_height\";s:2:\"27\";s:13:\"header_height\";s:3:\"101\";s:11:\"preset_demo\";s:21:\"header-default-center\";s:22:\"topbar_elements_center\";a:0:{}s:29:\"header_mobile_elements_bottom\";a:0:{}s:16:\"site_logo_slogan\";b:0;s:13:\"logo_position\";s:4:\"left\";s:12:\"topbar_color\";s:4:\"dark\";s:9:\"topbar_bg\";s:7:\"#fe4850\";s:13:\"nav_style_top\";s:7:\"divided\";s:12:\"header_width\";s:9:\"container\";s:12:\"header_color\";s:5:\"light\";s:9:\"header_bg\";s:21:\"rgba(255,255,255,0.9)\";s:20:\"header_bg_img_repeat\";s:8:\"repeat-x\";s:17:\"box_shadow_header\";b:1;s:9:\"nav_style\";s:7:\"outline\";s:8:\"nav_size\";s:6:\"medium\";s:13:\"nav_uppercase\";b:1;s:14:\"type_nav_color\";s:7:\"#fe4850\";s:20:\"type_nav_color_hover\";s:7:\"#fecc00\";s:25:\"header_height_transparent\";s:3:\"265\";s:21:\"header_bg_transparent\";s:0:\"\";s:27:\"header_bg_transparent_shade\";b:1;s:20:\"header_bottom_height\";s:2:\"16\";s:15:\"nav_position_bg\";s:7:\"#fecc00\";s:16:\"nav_style_bottom\";s:4:\"line\";s:15:\"nav_size_bottom\";s:6:\"xsmall\";s:20:\"nav_uppercase_bottom\";b:0;s:18:\"nav_position_color\";s:4:\"dark\";s:21:\"type_nav_bottom_color\";s:7:\"#fecc00\";s:27:\"type_nav_bottom_color_hover\";s:7:\"#fe4850\";s:17:\"nav_height_bottom\";s:2:\"16\";s:11:\"topbar_left\";s:0:\"\";s:14:\"header-block-1\";s:1:\"0\";s:16:\"footer_1_columns\";s:1:\"1\";s:17:\"footer_1_bg_color\";s:7:\"#ffffff\";s:19:\"footer_bottom_align\";s:6:\"center\";s:19:\"footer_bottom_color\";s:7:\"#fe4850\";s:17:\"back_to_top_shape\";s:6:\"circle\";s:18:\"back_to_top_mobile\";b:1;s:10:\"nav_height\";s:2:\"16\";s:8:\"nav_push\";s:2:\"-5\";s:18:\"header_icons_color\";s:7:\"#fe4850\";s:24:\"header_icons_color_hover\";s:7:\"#fecc00\";s:14:\"header_divider\";b:1;s:16:\"footer_2_columns\";s:1:\"3\";s:13:\"color_primary\";s:7:\"#fe4850\";s:15:\"color_secondary\";s:7:\"#fecc00\";s:19:\"type_headings_color\";s:7:\"#fe4850\";s:11:\"color_texts\";s:7:\"#777777\";s:11:\"color_links\";s:7:\"#fe4850\";s:17:\"color_links_hover\";s:7:\"#fecc00\";s:20:\"header_height_sticky\";s:2:\"70\";s:19:\"sticky_logo_padding\";s:1:\"0\";s:17:\"nav_height_sticky\";s:2:\"50\";s:13:\"disable_fonts\";b:0;s:13:\"topbar_sticky\";b:1;s:12:\"sticky_style\";s:4:\"jump\";s:21:\"sticky_hide_on_scroll\";b:0;s:17:\"dropdown_nav_size\";s:3:\"100\";s:8:\"footer_1\";b:0;s:13:\"color_divider\";s:7:\"#fecc00\";s:14:\"color_checkout\";s:7:\"#fe4850\";s:18:\"color_widget_links\";s:7:\"#fe4850\";s:24:\"color_widget_links_hover\";s:7:\"#fecc00\";s:17:\"footer_2_bg_color\";s:7:\"#ffffff\";s:8:\"footer_2\";b:0;s:18:\"footer_bottom_text\";s:4:\"dark\";s:16:\"footer_left_text\";s:138:\"Copyright [ux_current_year] © Marlins <br> made with <i class=\"fa fa-heart\" aria-hidden=\"true\"></i> <strong> Amaeka Technologies</strong>\";s:20:\"back_to_top_position\";s:4:\"left\";s:17:\"header_cart_style\";s:8:\"dropdown\";s:18:\"account_icon_style\";s:5:\"plain\";s:20:\"header_account_title\";b:0;s:17:\"header_cart_total\";b:0;s:17:\"header_cart_title\";b:0;s:19:\"header_search_style\";s:8:\"dropdown\";s:19:\"header_search_width\";s:2:\"49\";s:17:\"search_icon_style\";s:0:\"\";s:24:\"header_search_form_style\";s:0:\"\";s:15:\"cart_icon_style\";s:5:\"plain\";s:23:\"header_account_register\";b:1;}','yes'),(160,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.3.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1604933273;s:7:\"version\";s:3:\"5.3\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(161,'recently_activated','a:3:{s:31:\"creame-whatsapp-me/joinchat.php\";i:1606309473;s:24:\"wp-whatsapp/whatsapp.php\";i:1606309348;s:34:\"tidio-live-chat/tidio-elements.php\";i:1606309077;}','yes'),(163,'nsl-version','3.0.26','yes'),(164,'widget_nextend_social_login','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(166,'action_scheduler_hybrid_store_demarkation','7','yes'),(167,'schema-ActionScheduler_StoreSchema','3.0.1604933309','yes'),(168,'schema-ActionScheduler_LoggerSchema','2.0.1604933309','yes'),(171,'woocommerce_schema_version','430','yes'),(172,'woocommerce_store_address','','yes'),(173,'woocommerce_store_address_2','','yes'),(174,'woocommerce_store_city','','yes'),(175,'woocommerce_default_country','IN:KL','yes'),(176,'woocommerce_store_postcode','','yes'),(177,'woocommerce_allowed_countries','all','yes'),(178,'woocommerce_all_except_countries','a:0:{}','yes'),(179,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(180,'woocommerce_ship_to_countries','','yes'),(181,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(182,'woocommerce_default_customer_address','base','yes'),(183,'woocommerce_calc_taxes','no','yes'),(184,'woocommerce_enable_coupons','yes','yes'),(185,'woocommerce_calc_discounts_sequentially','no','no'),(186,'woocommerce_currency','INR','yes'),(187,'woocommerce_currency_pos','left','yes'),(188,'woocommerce_price_thousand_sep',',','yes'),(189,'woocommerce_price_decimal_sep','.','yes'),(190,'woocommerce_price_num_decimals','2','yes'),(191,'woocommerce_shop_page_id','8','yes'),(192,'woocommerce_cart_redirect_after_add','no','yes'),(193,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(194,'woocommerce_placeholder_image','7','yes'),(195,'woocommerce_weight_unit','kg','yes'),(196,'woocommerce_dimension_unit','cm','yes'),(197,'woocommerce_enable_reviews','yes','yes'),(198,'woocommerce_review_rating_verification_label','yes','no'),(199,'woocommerce_review_rating_verification_required','no','no'),(200,'woocommerce_enable_review_rating','yes','yes'),(201,'woocommerce_review_rating_required','yes','no'),(202,'woocommerce_manage_stock','yes','yes'),(203,'woocommerce_hold_stock_minutes','60','no'),(204,'woocommerce_notify_low_stock','yes','no'),(205,'woocommerce_notify_no_stock','yes','no'),(206,'woocommerce_stock_email_recipient','joaijo93@gmail.com','no'),(207,'woocommerce_notify_low_stock_amount','2','no'),(208,'woocommerce_notify_no_stock_amount','0','yes'),(209,'woocommerce_hide_out_of_stock_items','no','yes'),(210,'woocommerce_stock_format','','yes'),(211,'woocommerce_file_download_method','force','no'),(212,'woocommerce_downloads_require_login','no','no'),(213,'woocommerce_downloads_grant_access_after_payment','yes','no'),(214,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(215,'woocommerce_prices_include_tax','no','yes'),(216,'woocommerce_tax_based_on','shipping','yes'),(217,'woocommerce_shipping_tax_class','inherit','yes'),(218,'woocommerce_tax_round_at_subtotal','no','yes'),(219,'woocommerce_tax_classes','','yes'),(220,'woocommerce_tax_display_shop','excl','yes'),(221,'woocommerce_tax_display_cart','excl','yes'),(222,'woocommerce_price_display_suffix','','yes'),(223,'woocommerce_tax_total_display','itemized','no'),(224,'woocommerce_enable_shipping_calc','yes','no'),(225,'woocommerce_shipping_cost_requires_address','no','yes'),(226,'woocommerce_ship_to_destination','billing','no'),(227,'woocommerce_shipping_debug_mode','no','yes'),(228,'woocommerce_enable_guest_checkout','yes','no'),(229,'woocommerce_enable_checkout_login_reminder','no','no'),(230,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(231,'woocommerce_enable_myaccount_registration','yes','no'),(232,'woocommerce_registration_generate_username','yes','no'),(233,'woocommerce_registration_generate_password','yes','no'),(234,'woocommerce_erasure_request_removes_order_data','no','no'),(235,'woocommerce_erasure_request_removes_download_data','no','no'),(236,'woocommerce_allow_bulk_remove_personal_data','no','no'),(237,'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'),(238,'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'),(239,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(240,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(241,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(242,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(243,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(244,'woocommerce_email_from_name','Marlins','no'),(245,'woocommerce_email_from_address','joaijo93@gmail.com','no'),(246,'woocommerce_email_header_image','','no'),(247,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(248,'woocommerce_email_base_color','#96588a','no'),(249,'woocommerce_email_background_color','#f7f7f7','no'),(250,'woocommerce_email_body_background_color','#ffffff','no'),(251,'woocommerce_email_text_color','#3c3c3c','no'),(252,'woocommerce_cart_page_id','9','no'),(253,'woocommerce_checkout_page_id','10','no'),(254,'woocommerce_myaccount_page_id','11','no'),(255,'woocommerce_terms_page_id','','no'),(256,'woocommerce_force_ssl_checkout','no','yes'),(257,'woocommerce_unforce_ssl_checkout','no','yes'),(258,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(259,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(260,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(261,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(262,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(263,'woocommerce_myaccount_orders_endpoint','orders','yes'),(264,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(265,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(266,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(267,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(268,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(269,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(270,'woocommerce_logout_endpoint','customer-logout','yes'),(271,'woocommerce_api_enabled','no','yes'),(272,'woocommerce_allow_tracking','no','no'),(273,'woocommerce_show_marketplace_suggestions','yes','no'),(274,'woocommerce_single_image_width','600','yes'),(275,'woocommerce_thumbnail_image_width','300','yes'),(276,'woocommerce_checkout_highlight_required_fields','yes','yes'),(277,'woocommerce_demo_store','no','no'),(278,'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'),(279,'current_theme_supports_woocommerce','yes','yes'),(280,'woocommerce_queue_flush_rewrite_rules','no','yes'),(283,'default_product_cat','15','yes'),(290,'action_scheduler_lock_async-request-runner','1653000291','yes'),(291,'woocommerce_admin_notices','a:2:{i:0;s:6:\"update\";i:1;s:14:\"template_files\";}','yes'),(292,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"tXIruHGrmo9lmxPCL7bY46mNFfLbtSnl\";}','yes'),(293,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(294,'widget_woocommerce_widget_cart','a:4:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:2:{s:5:\"title\";s:6:\"Cart12\";s:13:\"hide_if_empty\";i:0;}i:5;a:0:{}}','yes'),(295,'widget_woocommerce_layered_nav_filters','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:0:{}i:9;a:1:{s:5:\"title\";s:14:\"Active Filters\";}i:10;a:1:{s:5:\"title\";s:14:\"Active Filters\";}}','yes'),(296,'widget_woocommerce_layered_nav','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:4:{s:5:\"title\";s:9:\"Filter by\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:2:\"or\";}i:10;a:4:{s:5:\"title\";s:9:\"Filter by\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:2:\"or\";}i:11;a:4:{s:5:\"title\";s:9:\"Filter by\";s:9:\"attribute\";s:5:\"color\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";}}','yes'),(297,'widget_woocommerce_price_filter','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:0:{}i:9;a:0:{}i:11;a:1:{s:5:\"title\";s:15:\"Filter by price\";}}','yes'),(298,'widget_woocommerce_product_categories','a:8:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:5;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:7;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:9;a:7:{s:5:\"title\";s:9:\"Browse By\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:10;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:12;a:7:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:1;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}i:13;a:7:{s:5:\"title\";s:6:\"Browse\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:1;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:0;}}','yes'),(299,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(300,'widget_woocommerce_product_tag_cloud','a:7:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:1:{s:5:\"title\";s:4:\"Tags\";}i:6;a:1:{s:5:\"title\";s:12:\"Product Tags\";}i:7;a:1:{s:5:\"title\";s:12:\"Product Tags\";}i:8;a:1:{s:5:\"title\";s:4:\"Tags\";}}','yes'),(301,'widget_woocommerce_products','a:11:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:7:{s:5:\"title\";s:8:\"Products\";s:6:\"number\";s:1:\"4\";s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:4;a:7:{s:5:\"title\";s:12:\"Best Sellers\";s:6:\"number\";s:1:\"4\";s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:5:\"sales\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:5;a:7:{s:5:\"title\";s:7:\"On Sale\";s:6:\"number\";i:3;s:4:\"show\";s:6:\"onsale\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:7;a:7:{s:5:\"title\";s:8:\"Products\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:9;a:7:{s:5:\"title\";s:15:\"Latest Products\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"rand\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:10;a:7:{s:5:\"title\";s:17:\"Featured Products\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:11;a:7:{s:5:\"title\";s:12:\"Best Selling\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:5:\"sales\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:12;a:7:{s:5:\"title\";s:6:\"Latest\";s:6:\"number\";i:4;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}i:13;a:7:{s:5:\"title\";s:8:\"Featured\";s:6:\"number\";i:4;s:4:\"show\";s:8:\"featured\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"desc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}}','yes'),(302,'widget_woocommerce_recently_viewed_products','a:6:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";s:1:\"3\";}i:5;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";i:4;}i:7;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";i:10;}i:8;a:2:{s:5:\"title\";s:15:\"Recently Viewed\";s:6:\"number\";i:3;}}','yes'),(303,'widget_woocommerce_top_rated_products','a:4:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:2;a:2:{s:5:\"title\";s:18:\"Top Rated Products\";s:6:\"number\";i:5;}i:3;a:2:{s:5:\"title\";s:9:\"Top Rated\";s:6:\"number\";i:3;}}','yes'),(304,'widget_woocommerce_recent_reviews','a:3:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:2:{s:5:\"title\";s:14:\"Recent Reviews\";s:6:\"number\";s:1:\"3\";}}','yes'),(305,'widget_woocommerce_rating_filter','a:3:{s:12:\"_multiwidget\";i:1;i:2;a:1:{s:5:\"title\";s:14:\"Average Rating\";}i:3;a:1:{s:5:\"title\";s:14:\"Average Rating\";}}','yes'),(306,'widget_upsell_widget','a:5:{s:12:\"_multiwidget\";i:1;i:1;a:0:{}i:3;a:0:{}i:5;a:0:{}i:7;a:1:{s:5:\"title\";s:16:\"Complete the loo\";}}','yes'),(310,'woocommerce_admin_install_timestamp','1604933313','yes'),(314,'wc_admin_note_home_screen_feedback_homescreen_accessed','1604933314','yes'),(315,'wc_remote_inbox_notifications_specs','a:35:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:118:\"https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:135:\"https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:116:\"https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:16:48\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:270:\"Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:01\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:144:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:175:\"Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:130:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:20:31\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:122:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:137:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"We’d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:134:\"We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:38:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}s:42:\"woocommerce-core-paypal-march-2022-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:391:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-core-paypal-march-2022-dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:44:57\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"5.5\";}i:1;a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}}}}}}}s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-core-paypal-march-2022-updated-nopp\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Security auto-update of WooCommerce\";s:7:\"content\";s:237:\"<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:88:\"https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-10 18:45:04\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:28:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.5.10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.7\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.3\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.5\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.4\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.5\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.6\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.5\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.5\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.5\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.5\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.2.2\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:42:\"woocommerce-core-paypal-march-2022-updated\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}s:24:\"pinterest_03_2022_update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"pinterest_03_2022_update\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Your Pinterest for WooCommerce plugin is out of date!\";s:7:\"content\";s:262:\"Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"pinterest_03_2022_update\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"Update Instructions\";}}s:3:\"url\";s:148:\"https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-03-23 00:00:39\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"pinterest-for-woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"1.0.8\";}}}s:36:\"setup_task_initiative_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:36:\"setup_task_initiative_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"setup_task_initiative_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-04-26 00:00:37\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:180;}}}s:14:\"affirm_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:14:\"affirm_q2_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"Boost your business with flexible payments\";s:7:\"content\";s:286:\"Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point – from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"affirm_q2_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Get started for free\";}}s:3:\"url\";s:129:\"https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 00:00:33\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-28 23:59:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}}}}}s:32:\"setup_task_second_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"setup_task_second_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:40:\"We want to know what matters most to you\";s:7:\"content\";s:144:\"Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"setup_task_second_survey_q2_2022_share_your_input\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:16:\"Share your input\";}}s:3:\"url\";s:26:\"https://t.maze.co/87390007\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-10 01:44:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:180;}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:365;}}}}}}s:33:\"store_setup_survey_survey_q2_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:33:\"store_setup_survey_survey_q2_2022\";s:4:\"type\";s:6:\"survey\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:30:\"How is your store setup going?\";s:7:\"content\";s:232:\"Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:53:\"store_setup_survey_survey_q2_2022_share_your_thoughts\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Tell us how it’s going\";}}s:3:\"url\";s:52:\"https://automattic.survey.fm/store-setup-survey-2022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-09 08:42:10\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:7;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:9;}}}s:31:\"wc-admin-EU-consumer-protection\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-admin-EU-consumer-protection\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Important changes to EU consumer protection laws\";s:7:\"content\";s:317:\"New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:31:\"wc-admin-EU-consumer-protection\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Learn more about these changes\";}}s:3:\"url\";s:98:\"https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-14 11:42:55\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-07-01 23:59:00\";}}}s:37:\"googlelistings_multicountrygtm_q22022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"googlelistings_multicountrygtm_q22022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:51:\"Expand your audience with Multi-Country Advertising\";s:7:\"content\";s:263:\"It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:37:\"googlelistings_multicountrygtm_q22022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:34:\"Get Google Listings & Ads – free\";}}s:3:\"url\";s:149:\"https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-05-15 15:55:35\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-05-21 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google-listings-and-ads\";}}}}}}}','yes'),(316,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','yes'),(317,'wc_blocks_db_schema_version','260','yes'),(318,'woocommerce_meta_box_errors','a:0:{}','yes'),(323,'_transient_woocommerce_reports-transient-version','1646942205','yes'),(337,'_transient_product_query-transient-version','1629700104','yes'),(360,'featured_item_category_children','a:0:{}','yes'),(361,'widget_null-instagram-feed','a:4:{i:3;a:0:{}i:4;a:6:{s:5:\"title\";s:9:\"Instagram\";s:8:\"username\";s:21:\"beautifuldestinations\";s:6:\"number\";s:2:\"10\";s:4:\"size\";s:5:\"large\";s:6:\"target\";s:5:\"_self\";s:4:\"link\";s:10:\"Follow Me!\";}i:5;a:6:{s:5:\"title\";s:9:\"Instagram\";s:8:\"username\";s:7:\"topshop\";s:6:\"number\";s:1:\"6\";s:4:\"size\";s:9:\"thumbnail\";s:6:\"target\";s:5:\"_self\";s:4:\"link\";s:9:\"Follow us\";}s:12:\"_multiwidget\";i:1;}','yes'),(362,'yith_wcwl_button_position','shortcode','yes'),(367,'envato_setup_complete','1604933508','yes'),(368,'_transient_shipping-transient-version','1604933517','yes'),(371,'_transient_product-transient-version','1607593343','yes'),(431,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(436,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(560,'_transient_health-check-site-status-result','{\"good\":11,\"recommended\":9,\"critical\":0}','yes'),(659,'wcmp_general_settings_name','a:9:{s:23:\"approve_vendor_manually\";s:6:\"Enable\";s:15:\"sold_by_catalog\";s:6:\"Enable\";s:27:\"is_singleproductmultiseller\";s:6:\"Enable\";s:35:\"singleproductmultiseller_show_order\";s:9:\"min-price\";s:14:\"is_gtin_enable\";s:6:\"Enable\";s:24:\"is_sellerreview_varified\";s:6:\"Enable\";s:12:\"is_policy_on\";s:6:\"Enable\";s:21:\"is_vendor_shipping_on\";s:6:\"Enable\";s:21:\"show_related_products\";s:11:\"all_related\";}','yes'),(660,'wcmp_capabilities_product_settings_name','a:11:{s:15:\"is_upload_files\";s:6:\"Enable\";s:32:\"is_edit_delete_published_product\";s:6:\"Enable\";s:17:\"is_submit_product\";s:6:\"Enable\";s:16:\"is_submit_coupon\";s:6:\"Enable\";s:31:\"is_edit_delete_published_coupon\";s:6:\"Enable\";s:6:\"simple\";s:6:\"Enable\";s:8:\"variable\";s:6:\"Enable\";s:7:\"grouped\";s:6:\"Enable\";s:8:\"external\";s:6:\"Enable\";s:7:\"virtual\";s:6:\"Enable\";s:12:\"downloadable\";s:6:\"Enable\";}','yes'),(661,'wcmp_payment_settings_name','a:30:{s:20:\"revenue_sharing_mode\";s:6:\"vendor\";s:18:\"default_commission\";d:0;s:18:\"default_percentage\";d:0;s:25:\"fixed_with_percentage_qty\";d:0;s:21:\"fixed_with_percentage\";d:0;s:20:\"commission_threshold\";d:0;s:25:\"commission_threshold_time\";i:0;s:19:\"commission_transfer\";d:0;s:12:\"no_of_orders\";i:0;s:15:\"commission_type\";s:7:\"percent\";s:25:\"commission_include_coupon\";s:6:\"Enable\";s:8:\"give_tax\";s:6:\"Enable\";s:13:\"give_shipping\";s:6:\"Enable\";s:25:\"wcmp_disbursal_mode_admin\";s:6:\"Enable\";s:26:\"wcmp_disbursal_mode_vendor\";s:6:\"Enable\";s:29:\"payment_method_paypal_masspay\";s:6:\"Enable\";s:29:\"gateway_charge_paypal_masspay\";d:0;s:40:\"gateway_charge_fixed_with_paypal_masspay\";d:0;s:28:\"payment_method_paypal_payout\";s:6:\"Enable\";s:28:\"gateway_charge_paypal_payout\";d:0;s:39:\"gateway_charge_fixed_with_paypal_payout\";d:0;s:29:\"payment_method_stripe_masspay\";s:6:\"Enable\";s:29:\"gateway_charge_stripe_masspay\";d:0;s:40:\"gateway_charge_fixed_with_stripe_masspay\";d:0;s:26:\"payment_method_direct_bank\";s:6:\"Enable\";s:26:\"gateway_charge_direct_bank\";d:0;s:37:\"gateway_charge_fixed_with_direct_bank\";d:0;s:16:\"payment_schedule\";s:7:\"monthly\";s:27:\"payment_gateway_charge_type\";s:7:\"percent\";s:28:\"gateway_charges_cost_carrier\";s:6:\"vendor\";}','yes'),(662,'wcmp_table_created','1','yes'),(663,'wcmp_product_vendor_vendor_page_id','279','yes'),(664,'wcmp_product_vendor_registration_page_id','280','yes'),(665,'wcmp_vendor_general_settings_name','a:2:{s:11:\"wcmp_vendor\";s:3:\"279\";s:19:\"vendor_registration\";s:3:\"281\";}','yes'),(669,'dc_product_vendor_plugin_installed','1','yes'),(670,'widget_dc_product_vendors_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(671,'widget_dc_product_vendors_list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(672,'widget_dc-vendor-quick-info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(673,'widget_dc-vendor-store-location','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(674,'widget_wcmp_vendor_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(675,'widget_wcmp_vendor_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(676,'widget_dc-vendor-vendor-review','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(677,'widget_wcmp_vendor_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(678,'widget_wcmp_vendor_widget_policy','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(679,'widget_wcmp_vendor_coupons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(680,'widget_wcmp_vendor_on_sale_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(681,'widget_wcmp_vendor_recent_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(684,'_transient_timeout_wcmp_spmv_exclude_products_data','1684567644','no'),(685,'_transient_wcmp_spmv_exclude_products_data','a:0:{}','no'),(686,'spmv_multivendor_table_migrated','1','yes'),(687,'dc_product_vendor_plugin_db_version','3.5.12','yes'),(689,'dc_commission_offset_to_migrate','1','yes'),(690,'commission_data_migrated','1','yes'),(715,'wcmp_vendor_registration_form_data','a:3:{i:0;a:6:{s:2:\"id\";i:0;s:4:\"type\";s:9:\"separator\";s:5:\"label\";s:15:\"Company Details\";s:6:\"hidden\";b:1;s:7:\"partial\";s:14:\"separator.html\";s:8:\"cssClass\";s:0:\"\";}i:1;a:9:{s:2:\"id\";i:1;s:4:\"type\";s:8:\"textarea\";s:5:\"label\";s:19:\"Company Description\";s:6:\"hidden\";b:1;s:7:\"partial\";s:13:\"textarea.html\";s:12:\"defaultValue\";s:0:\"\";s:5:\"limit\";s:0:\"\";s:8:\"required\";b:0;s:8:\"cssClass\";s:0:\"\";}i:2;a:8:{s:2:\"id\";i:2;s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:19:\"Quality Certificate\";s:6:\"hidden\";b:1;s:7:\"partial\";s:13:\"checkbox.html\";s:12:\"defaultValue\";s:7:\"checked\";s:8:\"required\";b:0;s:8:\"cssClass\";s:0:\"\";}}','yes'),(725,'wcmp_vendor_dashboard_settings_name','a:6:{s:24:\"wcmp_dashboard_site_logo\";s:0:\"\";s:14:\"google_api_key\";s:0:\"\";s:26:\"vendor_color_scheme_picker\";s:16:\"outer_space_blue\";s:25:\"wcmp_vendor_shop_template\";s:9:\"template3\";s:32:\"wcmp_vendor_dashboard_custom_css\";s:0:\"\";s:25:\"setup_wizard_introduction\";s:0:\"\";}','yes'),(795,'WPLANG','','yes'),(796,'new_admin_email','joaijo93@gmail.com','yes'),(813,'dc_product_vendor_plugin_page_install','1','yes'),(814,'wcmp_flushed_rewrite_rules','1','yes'),(838,'_transient_wcmp_customer_qna_for_vendor_2','a:0:{}','yes'),(852,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1607338332;}','no'),(861,'woocommerce_cod_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";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:3:\"yes\";}','yes'),(862,'woocommerce_gateway_order','a:4:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;}','yes'),(863,'_transient_orders-transient-version','1605266455','yes'),(890,'woocommerce_admin_last_orders_milestone','1','yes'),(974,'woocommerce_sales_record_date','2020-11-13','yes'),(975,'woocommerce_sales_record_amount','3998','yes'),(2062,'tidio-async-load','1','yes'),(2068,'tidio-one-private-key','kcxdn4h7za5xs3qa0dod2telyvbqi2lr','yes'),(2069,'tidio-one-public-key','nsrtnbpfquvo8ib4mvrwyzkvuhaxhlxe','yes'),(2473,'nta_wabutton_setting','a:4:{s:11:\"button-text\";s:28:\"Need help? Chat via Whatsapp\";s:12:\"button_style\";s:5:\"round\";s:17:\"button_back_color\";s:7:\"#2db742\";s:17:\"button_text_color\";s:4:\"#fff\";}','yes'),(2511,'ht_ctc_othersettings','a:6:{s:7:\"an_type\";s:12:\"no-animation\";s:8:\"an_delay\";s:1:\"0\";s:6:\"an_itr\";s:1:\"1\";s:11:\"show_effect\";s:11:\"From Corner\";s:16:\"google_analytics\";s:1:\"1\";s:8:\"fb_pixel\";s:1:\"1\";}','yes'),(2512,'ht_ctc_chat_options','a:21:{s:6:\"number\";s:10:\"9567056240\";s:10:\"pre_filled\";s:0:\"\";s:14:\"call_to_action\";s:11:\"WhatsApp us\";s:9:\"webandapi\";s:1:\"1\";s:13:\"style_desktop\";s:1:\"2\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"15px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"15px\";s:12:\"style_mobile\";s:1:\"2\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:14:\"woo_pre_filled\";s:0:\"\";s:18:\"woo_call_to_action\";s:0:\"\";}','yes'),(2513,'ht_ctc_group','a:17:{s:8:\"group_id\";s:0:\"\";s:14:\"call_to_action\";s:14:\"WhatsApp Group\";s:13:\"style_desktop\";s:1:\"4\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:4:\"left\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:4:\"left\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(2514,'ht_ctc_share','a:17:{s:10:\"share_text\";s:34:\"Checkout this Awesome page {{url}}\";s:14:\"call_to_action\";s:14:\"WhatsApp Share\";s:13:\"style_desktop\";s:1:\"1\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:3:\"top\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:3:\"top\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(2515,'ht_ctc_switch','a:1:{s:9:\"interface\";s:3:\"yes\";}','yes'),(2516,'ht_ctc_s1','a:1:{s:5:\"hello\";s:5:\"world\";}','yes'),(2517,'ht_ctc_s2','a:4:{s:11:\"s2_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25D366\";s:8:\"cta_type\";s:5:\"hover\";}','yes'),(2518,'ht_ctc_s3','a:4:{s:11:\"s3_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";s:8:\"cta_type\";s:5:\"hover\";}','yes'),(2519,'ht_ctc_s3_1','a:9:{s:11:\"s3_img_size\";s:4:\"40px\";s:11:\"s3_bg_color\";s:7:\"#25D366\";s:17:\"s3_bg_color_hover\";s:7:\"#25D366\";s:10:\"s3_padding\";s:4:\"14px\";s:13:\"s3_box_shadow\";s:1:\"1\";s:19:\"s3_box_shadow_hover\";s:1:\"1\";s:8:\"cta_type\";s:5:\"hover\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(2520,'ht_ctc_s4','a:5:{s:13:\"s4_text_color\";s:7:\"#7f7d7d\";s:11:\"s4_bg_color\";s:7:\"#e4e4e4\";s:10:\"s4_img_url\";s:0:\"\";s:15:\"s4_img_position\";s:4:\"left\";s:11:\"s4_img_size\";s:4:\"32px\";}','yes'),(2521,'ht_ctc_s5','a:12:{s:9:\"s5_line_1\";s:0:\"\";s:9:\"s5_line_2\";s:35:\"We will respond as soon as possible\";s:15:\"s5_line_1_color\";s:7:\"#000000\";s:15:\"s5_line_2_color\";s:7:\"#000000\";s:19:\"s5_background_color\";s:7:\"#ffffff\";s:15:\"s5_border_color\";s:7:\"#dddddd\";s:6:\"s5_img\";s:0:\"\";s:13:\"s5_img_height\";s:4:\"70px\";s:12:\"s5_img_width\";s:4:\"70px\";s:17:\"s5_content_height\";s:4:\"70px\";s:16:\"s5_content_width\";s:5:\"270px\";s:15:\"s5_img_position\";s:5:\"right\";}','yes'),(2522,'ht_ctc_s6','a:4:{s:12:\"s6_txt_color\";s:0:\"\";s:21:\"s6_txt_color_on_hover\";s:0:\"\";s:17:\"s6_txt_decoration\";s:0:\"\";s:26:\"s6_txt_decoration_on_hover\";s:0:\"\";}','yes'),(2523,'ht_ctc_s7','a:10:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:15:\"s7_border_color\";s:7:\"#25D366\";s:21:\"s7_border_color_hover\";s:7:\"#25d366\";s:16:\"s7_border_radius\";s:3:\"50%\";s:8:\"cta_type\";s:5:\"hover\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(2524,'ht_ctc_s7_1','a:7:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:10:\"s7_bgcolor\";s:7:\"#25D366\";s:16:\"s7_bgcolor_hover\";s:7:\"#00d34d\";s:8:\"cta_type\";s:5:\"hover\";}','yes'),(2525,'ht_ctc_s8','a:10:{s:12:\"s8_txt_color\";s:7:\"#ffffff\";s:21:\"s8_txt_color_on_hover\";s:7:\"#ffffff\";s:11:\"s8_bg_color\";s:7:\"#26a69a\";s:20:\"s8_bg_color_on_hover\";s:7:\"#26a69a\";s:13:\"s8_icon_color\";s:7:\"#ffffff\";s:22:\"s8_icon_color_on_hover\";s:7:\"#ffffff\";s:16:\"s8_icon_position\";s:4:\"left\";s:12:\"s8_text_size\";s:4:\"16px\";s:12:\"s8_icon_size\";s:4:\"16px\";s:11:\"s8_btn_size\";s:3:\"btn\";}','yes'),(2526,'ht_ctc_s99','a:6:{s:19:\"s99_dekstop_img_url\";s:0:\"\";s:18:\"s99_mobile_img_url\";s:0:\"\";s:22:\"s99_desktop_img_height\";s:4:\"50px\";s:21:\"s99_desktop_img_width\";s:0:\"\";s:21:\"s99_mobile_img_height\";s:4:\"50px\";s:20:\"s99_mobile_img_width\";s:0:\"\";}','yes'),(2527,'ht_ctc_cs_options','a:1:{s:5:\"hello\";s:5:\"world\";}','yes'),(2528,'ht_ctc_plugin_details','a:2:{s:7:\"version\";s:3:\"3.1\";s:2:\"v3\";s:2:\"v3\";}','yes'),(2529,'ht_ctc_one_time','a:1:{s:13:\"first_version\";s:3:\"3.1\";}','yes'),(2531,'action_scheduler_migration_status','complete','yes'),(2554,'woocommerce_task_list_tracked_completed_tasks','a:2:{i:0;s:8:\"products\";i:1;s:8:\"payments\";}','yes'),(3749,'product_cat_children','a:0:{}','yes'),(3813,'category_children','a:0:{}','yes'),(9084,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:18:\"joaijo93@gmail.com\";s:7:\"version\";s:5:\"5.5.9\";s:9:\"timestamp\";i:1646973060;}','no'),(12437,'woocommerce_db_version','4.6.3','yes'),(12440,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(12441,'woocommerce_task_list_hidden','yes','yes'),(19466,'woocommerce_version','4.6.5','yes'),(19472,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(19475,'woocommerce_admin_version','1.6.4','yes'),(19494,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:6:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.3\";s:7:\"version\";s:5:\"5.9.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.2\";s:7:\"version\";s:5:\"5.9.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.4.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.8.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.4\";s:7:\"version\";s:5:\"5.8.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.6-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.6\";s:7:\"version\";s:5:\"5.7.6\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.6.8.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.6.8.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.6.8-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.6.8-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.6.8\";s:7:\"version\";s:5:\"5.6.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1653031645;s:15:\"version_checked\";s:5:\"5.5.9\";s:12:\"translations\";a:0:{}}','no'),(20596,'_transient_timeout_wc_term_counts','1653640575','no'),(20597,'_transient_wc_term_counts','a:28:{i:89;s:1:\"2\";i:91;s:1:\"3\";i:88;s:1:\"2\";i:90;s:1:\"2\";i:85;s:1:\"2\";i:81;s:1:\"2\";i:24;s:1:\"3\";i:25;s:1:\"9\";i:26;s:1:\"9\";i:27;s:1:\"2\";i:87;s:1:\"5\";i:83;s:1:\"3\";i:43;s:1:\"5\";i:44;s:1:\"1\";i:15;s:1:\"1\";i:42;s:1:\"1\";i:37;s:1:\"1\";i:38;s:1:\"1\";i:39;s:1:\"1\";i:40;s:1:\"1\";i:41;s:1:\"1\";i:93;s:0:\"\";i:92;s:0:\"\";i:86;s:0:\"\";i:84;s:1:\"1\";i:29;s:1:\"1\";i:30;s:1:\"1\";i:31;s:1:\"1\";}','no'),(20799,'_transient_timeout_wc_product_children_173','1654080411','no'),(20800,'_transient_wc_product_children_173','a:2:{s:3:\"all\";a:0:{}s:7:\"visible\";a:0:{}}','no'),(20801,'_transient_timeout_wc_var_prices_173','1654080411','no'),(20802,'_transient_wc_var_prices_173','{\"version\":\"1607593343\",\"f9e544f77b7eac7add281ef28ca5559f\":{\"price\":[],\"regular_price\":[],\"sale_price\":[]}}','no'),(21090,'_transient_timeout_wc_related_494','1653118045','no'),(21091,'_transient_wc_related_494','a:1:{s:51:\"limit=8&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=494\";a:1:{i:0;s:3:\"518\";}}','no'),(21176,'_transient_timeout_wc_related_177','1653086626','no'),(21177,'_transient_wc_related_177','a:1:{s:51:\"limit=8&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=177\";a:9:{i:0;s:3:\"166\";i:1;s:3:\"172\";i:2;s:3:\"173\";i:3;s:3:\"174\";i:4;s:3:\"175\";i:5;s:3:\"176\";i:6;s:3:\"178\";i:7;s:3:\"179\";i:8;s:3:\"168\";}}','no'),(21183,'_transient_timeout__woocommerce_helper_updates','1653043427','no'),(21184,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1653000227;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(21189,'_transient_timeout__woocommerce_helper_subscriptions','1653032545','no'),(21190,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(21191,'_site_transient_timeout_theme_roots','1653033445','no'),(21192,'_site_transient_theme_roots','a:5:{s:14:\"flatsome-child\";s:7:\"/themes\";s:8:\"flatsome\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}','no'),(21193,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1653031647;s:7:\"checked\";a:5:{s:14:\"flatsome-child\";s:3:\"3.0\";s:8:\"flatsome\";s:6:\"3.12.3\";s:14:\"twentynineteen\";s:3:\"1.7\";s:15:\"twentyseventeen\";s:3:\"2.4\";s:12:\"twentytwenty\";s:3:\"1.5\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.2.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(21194,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1653031647;s:7:\"checked\";a:8:{s:19:\"akismet/akismet.php\";s:5:\"4.1.7\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:3:\"3.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.3.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";s:6:\"3.0.26\";s:34:\"tidio-live-chat/tidio-elements.php\";s:5:\"4.2.1\";s:49:\"dc-woocommerce-multi-vendor/dc_product_vendor.php\";s:6:\"3.5.12\";s:27:\"woocommerce/woocommerce.php\";s:5:\"4.6.5\";}s:8:\"response\";a:5:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{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.2.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.2.3.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:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:40:\"w.org/plugins/click-to-chat-for-whatsapp\";s:4:\"slug\";s:26:\"click-to-chat-for-whatsapp\";s:6:\"plugin\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:11:\"new_version\";s:5:\"3.9.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/click-to-chat-for-whatsapp/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.3.9.4.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-128x128.png?rev=2413139\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/banner-772x250.png?rev=2158946\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:38:\"w.org/plugins/nextend-facebook-connect\";s:4:\"slug\";s:24:\"nextend-facebook-connect\";s:6:\"plugin\";s:53:\"nextend-facebook-connect/nextend-facebook-connect.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/nextend-facebook-connect/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/nextend-facebook-connect.3.1.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:77:\"https://ps.w.org/nextend-facebook-connect/assets/icon-256x256.png?rev=1825061\";s:2:\"1x\";s:69:\"https://ps.w.org/nextend-facebook-connect/assets/icon.svg?rev=1825061\";s:3:\"svg\";s:69:\"https://ps.w.org/nextend-facebook-connect/assets/icon.svg?rev=1825061\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/nextend-facebook-connect/assets/banner-1544x500.png?rev=2159749\";s:2:\"1x\";s:79:\"https://ps.w.org/nextend-facebook-connect/assets/banner-772x250.png?rev=2159749\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:34:\"tidio-live-chat/tidio-elements.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/tidio-live-chat\";s:4:\"slug\";s:15:\"tidio-live-chat\";s:6:\"plugin\";s:34:\"tidio-live-chat/tidio-elements.php\";s:11:\"new_version\";s:5:\"5.0.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/tidio-live-chat/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/tidio-live-chat.5.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/tidio-live-chat/assets/icon-256x256.gif?rev=2726775\";s:2:\"1x\";s:68:\"https://ps.w.org/tidio-live-chat/assets/icon-128x128.gif?rev=2726775\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/tidio-live-chat/assets/banner-1544x500.png?rev=2726775\";s:2:\"1x\";s:70:\"https://ps.w.org/tidio-live-chat/assets/banner-772x250.png?rev=2726775\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:49:\"dc-woocommerce-multi-vendor/dc_product_vendor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:41:\"w.org/plugins/dc-woocommerce-multi-vendor\";s:4:\"slug\";s:27:\"dc-woocommerce-multi-vendor\";s:6:\"plugin\";s:49:\"dc-woocommerce-multi-vendor/dc_product_vendor.php\";s:11:\"new_version\";s:8:\"3.8.11.3\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/dc-woocommerce-multi-vendor/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/dc-woocommerce-multi-vendor.3.8.11.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/dc-woocommerce-multi-vendor/assets/icon-256x256.png?rev=1636499\";s:2:\"1x\";s:80:\"https://ps.w.org/dc-woocommerce-multi-vendor/assets/icon-128x128.png?rev=1593013\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:82:\"https://ps.w.org/dc-woocommerce-multi-vendor/assets/banner-772x250.jpg?rev=1601838\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.9.3\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:7:\"5.5.6.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.5.5.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":13:{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:\"6.5.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.6.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.7\";s:6:\"tested\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.2\";s:13:\"compatibility\";a:0:{}}}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(5,6,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(6,6,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(7,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:41:\"[_site_title] <wordpress@demoweblinks.in>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(8,6,'_messages','a:22:{s:12:\"mail_sent_ok\";s:27:\"Thank you for your message.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(9,6,'_additional_settings',''),(10,6,'_locale','en_US'),(11,7,'_wp_attached_file','woocommerce-placeholder.png'),(12,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-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:35:\"woocommerce-placeholder-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:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),(13,12,'_form','<div class=\"form-flat\">\n[text* your-name placeholder \"Your Name (required)\"]\n\n[email* your-email placeholder \"Your Email (required)\"] </p>\n\n[textarea your-message placeholder \"Your Message (required)\"] </p>\n\n[submit class:button primary \"Submit\"]\n</div>'),(14,12,'_mail',''),(15,12,'_mail_2',''),(16,12,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(17,12,'_additional_settings',''),(18,12,'_locale','en_US'),(19,13,'_form','<div class=\"form-flat\">\n	[email* your-email placeholder \"Your Email (required)\"]\n\n	[submit class:button primary \"Sign Up\"]\n</div>'),(20,13,'_mail','a:8:{s:7:\"subject\";s:11:\"New signup!\";s:6:\"sender\";s:34:\"Flatsome Theme <mail@flatsome.dev>\";s:4:\"body\";s:24:\"New signup: [your-email]\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(21,13,'_mail_2',''),(22,13,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(23,13,'_additional_settings',''),(24,13,'_locale','en_US'),(25,14,'_form','<div class=\"flex-row form-flat medium-flex-wrap\">\n<div class=\"flex-col flex-grow\">\n	[email* your-email placeholder \"Your Email (required)\"]\n</div>\n<div class=\"flex-col ml-half\">\n	[submit class:button primary \"Sign Up\"]\n</div>\n</div>'),(26,14,'_mail',''),(27,14,'_mail_2',''),(28,14,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(29,14,'_additional_settings',''),(30,14,'_locale','en_US'),(31,15,'_form','<label>Your Name (required)</label>\n[text* your-name]\n\n<label>Your Email (required)</label>\n[email*  your-email] </p>\n\n<label>Your Message (required)</label>\n[textarea your-message] </p>\n\n[submit class:button primary \"Submit\"]'),(32,15,'_mail',''),(33,15,'_mail_2',''),(34,15,'_messages','a:23:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(35,15,'_additional_settings',''),(36,15,'_locale','en_US'),(37,16,'_wp_attached_file','2016/08/dummy-1.jpg'),(38,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:260;s:4:\"file\";s:19:\"2016/08/dummy-1.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"dummy-1-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;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:\"dummy-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dummy-1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"dummy-1-300x260.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(39,17,'_wp_attached_file','2016/08/dummy-2.jpg'),(40,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:650;s:4:\"file\";s:19:\"2016/08/dummy-2.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"dummy-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:19:\"dummy-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:19:\"dummy-2-600x390.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"dummy-2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"dummy-2-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"dummy-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:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"dummy-2-600x390.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"dummy-2-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(41,18,'_wp_attached_file','2016/08/dummy-prod-1.jpg'),(42,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2016/08/dummy-prod-1.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"dummy-prod-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:24:\"dummy-prod-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-250x300.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"dummy-prod-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:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"dummy-prod-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(45,19,'_thumbnail_id','16'),(48,20,'_thumbnail_id','16'),(51,21,'_thumbnail_id','16'),(54,22,'_thumbnail_id','16'),(57,23,'_thumbnail_id','16'),(60,24,'_thumbnail_id','16'),(63,25,'_thumbnail_id','16'),(66,26,'_thumbnail_id','16'),(67,27,'_footer','normal'),(68,27,'_wp_page_template','default'),(69,28,'_footer','normal'),(70,28,'_wp_page_template','page-left-sidebar.php'),(71,29,'_footer','normal'),(72,29,'_thumbnail_id','16'),(73,29,'_wp_page_template','page-blank.php'),(74,30,'_footer','transparent'),(75,30,'_wp_page_template','page-transparent-header-light.php'),(76,30,'_thumbnail_id','16'),(77,31,'_footer','normal'),(78,31,'_wp_page_template','page-blank-landingpage.php'),(79,32,'_footer','transparent'),(80,32,'_wp_page_template','page-transparent-header-light.php'),(81,32,'_thumbnail_id','16'),(82,33,'_footer','normal'),(83,33,'_wp_page_template','page-blank.php'),(84,33,'_thumbnail_id','16'),(85,34,'_footer','normal'),(86,34,'_wp_page_template','page-blank.php'),(87,34,'_thumbnail_id','16'),(88,35,'_footer','transparent'),(89,35,'_wp_page_template','page-transparent-header-light.php'),(90,35,'_thumbnail_id','16'),(91,36,'_footer','normal'),(92,36,'_wp_page_template','page-blank.php'),(93,36,'_thumbnail_id','16'),(94,37,'_footer','normal'),(95,37,'_wp_page_template','default'),(96,37,'_thumbnail_id','16'),(97,38,'_footer','normal'),(98,38,'_wp_page_template','page-blank.php'),(99,38,'_thumbnail_id','16'),(100,39,'_footer','normal'),(101,39,'_wp_page_template','page-blank.php'),(102,39,'_thumbnail_id','16'),(103,40,'_footer','normal'),(104,40,'_wp_page_template','default'),(105,40,'_thumbnail_id','16'),(106,41,'_footer','normal'),(107,41,'_wp_page_template','page-blank.php'),(108,41,'_thumbnail_id','16'),(109,42,'_footer','normal'),(110,42,'_wp_page_template','page-blank.php'),(111,42,'_thumbnail_id','16'),(112,43,'_wp_page_template','page-transparent-header.php'),(113,43,'_footer','normal'),(114,43,'_thumbnail_id','16'),(115,44,'_wp_page_template','page-blank.php'),(116,44,'_footer','normal'),(117,44,'_thumbnail_id','16'),(118,45,'_thumbnail_id','16'),(119,45,'_wp_page_template','page-blank.php'),(120,45,'_footer','normal'),(121,46,'_thumbnail_id','16'),(122,46,'_wp_page_template','page-blank.php'),(123,46,'_footer','normal'),(124,47,'_thumbnail_id','16'),(125,47,'_wp_page_template','page-blank.php'),(126,47,'_footer','normal'),(127,48,'_thumbnail_id','16'),(128,48,'_wp_page_template','page-blank.php'),(129,48,'_footer','normal'),(130,49,'_wp_page_template','page-blank.php'),(131,49,'_thumbnail_id','16'),(132,49,'_footer','normal'),(133,50,'_wp_page_template','page-blank.php'),(134,50,'_thumbnail_id','16'),(135,50,'_footer','normal'),(136,51,'_thumbnail_id','16'),(137,51,'_wp_page_template','page-blank.php'),(138,51,'_footer','normal'),(139,52,'_thumbnail_id','16'),(140,52,'_wp_page_template','page-transparent-header-light.php'),(141,52,'_footer','normal'),(142,53,'_wp_page_template','page-blank.php'),(143,53,'_thumbnail_id','16'),(144,53,'_footer','normal'),(145,54,'_wp_page_template','page-blank.php'),(146,54,'_thumbnail_id','16'),(147,54,'_footer','normal'),(148,55,'_wp_page_template','page-transparent-header-light.php'),(149,55,'_footer','normal'),(150,55,'_thumbnail_id','16'),(151,56,'_wp_page_template','page-blank.php'),(152,56,'_thumbnail_id','16'),(153,56,'_footer','normal'),(154,57,'_wp_page_template','page-blank.php'),(155,57,'_footer','normal'),(156,57,'_thumbnail_id','16'),(157,58,'_wp_page_template','page-blank.php'),(158,58,'_footer','normal'),(159,58,'_thumbnail_id','16'),(160,59,'_wp_page_template','page-blank.php'),(161,59,'_footer','normal'),(162,59,'_thumbnail_id','16'),(163,60,'_wp_page_template','page-blank.php'),(164,60,'_footer','normal'),(165,60,'_thumbnail_id','16'),(166,61,'_wp_page_template','page-blank.php'),(167,61,'_footer','normal'),(168,61,'_thumbnail_id','16'),(169,62,'_wp_page_template','page-blank.php'),(170,62,'_footer','normal'),(171,62,'_thumbnail_id','16'),(172,63,'_wp_page_template','default'),(173,64,'_wp_page_template','page-blank.php'),(174,64,'_thumbnail_id','16'),(175,64,'_footer','normal'),(176,65,'_wp_page_template','default'),(177,65,'_footer','normal'),(178,65,'_thumbnail_id','16'),(179,66,'_wp_page_template','default'),(180,66,'_footer','normal'),(181,66,'_thumbnail_id','16'),(182,67,'_wp_page_template','page-transparent-header-light.php'),(183,67,'_footer','normal'),(184,67,'_thumbnail_id','16'),(185,68,'_wp_page_template','page-blank.php'),(186,68,'_footer','normal'),(187,69,'_wp_page_template','default'),(188,70,'_wp_page_template','default'),(189,70,'_footer','normal'),(190,71,'_wp_page_template','page-blank.php'),(191,71,'_footer','normal'),(192,71,'_thumbnail_id','16'),(193,72,'_wp_page_template','page-blank.php'),(194,72,'_thumbnail_id','16'),(195,72,'_footer','normal'),(196,73,'_wp_page_template','page-blank.php'),(197,73,'_footer','normal'),(198,73,'_thumbnail_id','16'),(199,74,'_wp_page_template','page-blank.php'),(200,74,'_thumbnail_id','16'),(201,74,'_footer','normal'),(202,75,'_wp_page_template','page-transparent-header-light.php'),(203,75,'_footer','normal'),(204,75,'_thumbnail_id','16'),(205,76,'_wp_page_template','page-my-account.php'),(206,77,'_wp_page_template','page-blank.php'),(207,77,'_thumbnail_id','16'),(208,77,'_footer','normal'),(209,78,'_wp_page_template','page-blank.php'),(210,78,'_thumbnail_id','16'),(211,78,'_footer','normal'),(212,79,'_wp_page_template','page-blank.php'),(213,79,'_thumbnail_id','16'),(214,79,'_footer','normal'),(215,80,'_wp_page_template','page-blank.php'),(216,80,'_thumbnail_id','16'),(217,80,'_footer','normal'),(218,81,'_wp_page_template','page-blank.php'),(219,81,'_thumbnail_id','16'),(220,81,'_footer','normal'),(221,82,'_wp_page_template','page-blank.php'),(222,82,'_thumbnail_id','16'),(223,82,'_footer','normal'),(224,83,'_wp_page_template','page-blank.php'),(225,83,'_thumbnail_id','16'),(226,83,'_footer','normal'),(227,84,'_wp_page_template','page-blank.php'),(228,84,'_footer','normal'),(229,84,'_thumbnail_id','16'),(230,85,'_wp_page_template','default'),(231,86,'_wp_page_template','page-blank.php'),(232,86,'_thumbnail_id','16'),(233,86,'_footer','normal'),(234,87,'_wp_page_template','page-blank.php'),(235,87,'_footer','normal'),(236,87,'_thumbnail_id','16'),(237,88,'_wp_page_template','page-blank.php'),(238,88,'_footer','normal'),(239,88,'_thumbnail_id','16'),(240,89,'_wp_page_template','default'),(241,90,'_wp_page_template','page-blank.php'),(242,90,'_footer','normal'),(243,90,'_thumbnail_id','16'),(244,91,'_wp_page_template','page-blank.php'),(245,91,'_thumbnail_id','16'),(246,91,'_footer','normal'),(247,92,'_wp_page_template','default'),(248,92,'_thumbnail_id','16'),(249,92,'_footer','normal'),(250,93,'_wp_page_template','page-my-account.php'),(251,93,'_footer','normal'),(252,94,'_wp_page_template','page-transparent-header-light.php'),(253,94,'_thumbnail_id','16'),(254,94,'_footer','normal'),(255,95,'_wp_page_template','page-blank.php'),(256,95,'_footer','normal'),(257,95,'_thumbnail_id','16'),(258,96,'_wp_page_template','page-blank.php'),(259,96,'_footer','normal'),(260,96,'_thumbnail_id','16'),(261,97,'_wp_page_template','page-blank.php'),(262,97,'_footer','normal'),(263,97,'_thumbnail_id','16'),(264,98,'_wp_page_template','page-blank.php'),(265,98,'_footer','normal'),(266,98,'_thumbnail_id','16'),(267,160,'_thumbnail_id','16'),(268,161,'_thumbnail_id','16'),(269,162,'_thumbnail_id','16'),(270,163,'_thumbnail_id','16'),(271,165,'_wp_page_template',''),(272,165,'_footer',''),(273,166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(274,166,'_edit_last','1'),(275,166,'_visibility','visible'),(276,166,'_stock_status','instock'),(277,166,'total_sales','156'),(278,166,'_downloadable','no'),(279,166,'_virtual','no'),(280,166,'_product_image_gallery','523,524'),(281,166,'_regular_price','1800'),(282,166,'_sale_price','1599'),(283,166,'_tax_status',''),(284,166,'_tax_class',''),(285,166,'_purchase_note',''),(286,166,'_featured','no'),(287,166,'_weight',''),(288,166,'_length',''),(289,166,'_width',''),(290,166,'_height',''),(291,166,'_sku',''),(292,166,'_sale_price_dates_from',''),(293,166,'_sale_price_dates_to',''),(294,166,'_price','1599'),(295,166,'_sold_individually',''),(296,166,'_stock',NULL),(297,166,'_backorders','no'),(298,166,'_manage_stock','no'),(299,166,'_min_variation_price','39'),(300,166,'_max_variation_price','39'),(301,166,'_min_variation_regular_price','39'),(302,166,'_max_variation_regular_price','39'),(303,166,'_min_variation_sale_price',''),(304,166,'_max_variation_sale_price',''),(305,166,'_default_attributes','a:0:{}'),(306,166,'_dp_original','389'),(307,166,'_wc_rating_count','a:3:{i:3;s:1:\"1\";i:4;s:1:\"2\";i:5;s:1:\"1\";}'),(308,166,'_wc_average_rating','4.00'),(309,166,'_wc_review_count','4'),(310,166,'_edit_lock','1607590954:1'),(311,166,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(312,166,'_upsell_ids','a:0:{}'),(313,166,'_crosssell_ids','a:0:{}'),(314,166,'_product_version','4.6.2'),(315,166,'_thumbnail_id','522'),(316,167,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(317,167,'_visibility','visible'),(318,167,'_stock_status','outofstock'),(319,167,'total_sales','402337'),(320,167,'_downloadable','no'),(321,167,'_virtual','no'),(322,167,'_product_image_gallery','528,529,530'),(323,167,'_regular_price','17500'),(324,167,'_sale_price',''),(325,167,'_tax_status',''),(326,167,'_tax_class',''),(327,167,'_purchase_note',''),(328,167,'_featured','yes'),(329,167,'_weight',''),(330,167,'_length',''),(331,167,'_width',''),(332,167,'_height',''),(333,167,'_sku',''),(334,167,'_sale_price_dates_from',''),(335,167,'_sale_price_dates_to',''),(336,167,'_sold_individually',''),(337,167,'_stock',NULL),(338,167,'_backorders','no'),(339,167,'_manage_stock','no'),(340,167,'_min_variation_price','29'),(341,167,'_max_variation_price','29'),(342,167,'_min_variation_regular_price','29'),(343,167,'_max_variation_regular_price','29'),(344,167,'_min_variation_sale_price',NULL),(345,167,'_max_variation_sale_price',NULL),(347,167,'_dp_original','250'),(348,167,'_thumbnail_id','527'),(349,167,'_upsell_ids','a:1:{i:0;i:187;}'),(350,167,'_max_regular_price_variation_id','8870'),(351,167,'_min_sale_price_variation_id',NULL),(352,167,'_max_sale_price_variation_id',NULL),(353,167,'_wc_rating_count','a:2:{i:4;s:1:\"2\";i:5;s:1:\"1\";}'),(354,167,'_wc_average_rating','4.33'),(355,167,'_wc_review_count','3'),(356,167,'_edit_lock','1607592375:1'),(357,167,'_edit_last','1'),(358,167,'pv_commission_rate',''),(359,167,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(360,167,'_crosssell_ids','a:0:{}'),(361,167,'_product_version','4.6.2'),(362,167,'_price','17500'),(363,168,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(364,168,'_edit_last','1'),(365,168,'_visibility','visible'),(366,168,'_stock_status','instock'),(367,168,'total_sales','127'),(368,168,'_downloadable','no'),(369,168,'_virtual','no'),(370,168,'_product_image_gallery','18,18,18'),(371,168,'_regular_price','2300'),(372,168,'_sale_price','1200'),(373,168,'_tax_status',''),(374,168,'_tax_class',''),(375,168,'_purchase_note',''),(376,168,'_featured','no'),(377,168,'_weight',''),(378,168,'_length',''),(379,168,'_width',''),(380,168,'_height',''),(381,168,'_sku',''),(382,168,'_sale_price_dates_from',''),(383,168,'_sale_price_dates_to',''),(384,168,'_price','1200'),(385,168,'_sold_individually',''),(386,168,'_stock',NULL),(387,168,'_backorders','no'),(388,168,'_manage_stock','no'),(389,168,'_min_variation_price','39'),(390,168,'_max_variation_price','39'),(391,168,'_min_variation_regular_price','39'),(392,168,'_max_variation_regular_price','39'),(393,168,'_min_variation_sale_price',''),(394,168,'_max_variation_sale_price',''),(395,168,'_default_attributes','a:0:{}'),(396,168,'_dp_original','157'),(397,168,'_thumbnail_id','395'),(398,168,'_wc_rating_count','a:0:{}'),(399,168,'_wc_average_rating','0'),(400,168,'_wc_review_count','0'),(401,168,'_edit_lock','1606297881:1'),(402,169,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(403,169,'_edit_last','1'),(404,169,'_visibility','visible'),(405,169,'_stock_status','instock'),(406,169,'total_sales','125'),(407,169,'_downloadable','no'),(408,169,'_virtual','no'),(409,169,'_product_image_gallery','18,18,18'),(410,169,'_regular_price','2900'),(411,169,'_sale_price','1500'),(412,169,'_tax_status',''),(413,169,'_tax_class',''),(414,169,'_purchase_note',''),(415,169,'_featured','yes'),(416,169,'_weight',''),(417,169,'_length',''),(418,169,'_width',''),(419,169,'_height',''),(420,169,'_sku',''),(421,169,'_sale_price_dates_from',''),(422,169,'_sale_price_dates_to',''),(423,169,'_price','1500'),(424,169,'_sold_individually',''),(425,169,'_stock',NULL),(426,169,'_backorders','no'),(427,169,'_manage_stock','no'),(428,169,'_min_variation_price','39'),(429,169,'_max_variation_price','39'),(430,169,'_min_variation_regular_price','39'),(431,169,'_max_variation_regular_price','39'),(432,169,'_min_variation_sale_price',''),(433,169,'_max_variation_sale_price',''),(434,169,'_default_attributes','a:0:{}'),(435,169,'_dp_original','111'),(436,169,'_thumbnail_id','388'),(437,169,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:5:\"\"yes\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(438,169,'_wc_rating_count','a:2:{i:2;s:1:\"1\";i:5;s:1:\"1\";}'),(439,169,'_wc_average_rating','3.50'),(440,169,'_wc_review_count','2'),(441,169,'_edit_lock','1606298099:1'),(442,170,'_edit_last','1'),(443,170,'_edit_lock','1606298066:1'),(444,170,'_visibility','visible'),(445,170,'_stock_status','instock'),(446,170,'_disable_va','setting'),(447,170,'_name_style','label'),(448,170,'_only_va','no'),(449,170,'pv_commission_rate',''),(450,170,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:5:\"\"yes\"\";s:12:\"_bubble_text\";s:3:\"HOT\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(451,170,'total_sales','0'),(452,170,'_downloadable','no'),(453,170,'_virtual','no'),(454,170,'_purchase_note',''),(455,170,'_featured','no'),(456,170,'_weight',''),(457,170,'_length',''),(458,170,'_width',''),(459,170,'_height',''),(460,170,'_sku',''),(461,170,'_regular_price','29'),(462,170,'_sale_price','199'),(463,170,'_sale_price_dates_from',''),(464,170,'_sale_price_dates_to',''),(465,170,'_price','29'),(466,170,'_sold_individually',''),(467,170,'_manage_stock','no'),(468,170,'_backorders','no'),(469,170,'_stock',NULL),(470,170,'_upsell_ids','a:0:{}'),(471,170,'_crosssell_ids','a:0:{}'),(472,170,'_product_version','4.6.2'),(473,170,'_product_image_gallery','18,18,18'),(474,170,'_wc_rating_count','a:0:{}'),(475,170,'_wc_review_count','0'),(476,170,'_wc_average_rating','0'),(477,170,'_thumbnail_id','390'),(478,171,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(479,171,'_edit_last','1'),(480,171,'_visibility','visible'),(481,171,'_stock_status','instock'),(482,171,'total_sales','75'),(483,171,'_downloadable','no'),(484,171,'_virtual','no'),(485,171,'_product_image_gallery','414'),(486,171,'_regular_price','3200'),(487,171,'_sale_price','3100'),(488,171,'_tax_status',''),(489,171,'_tax_class',''),(490,171,'_purchase_note',''),(491,171,'_featured','no'),(492,171,'_weight',''),(493,171,'_length',''),(494,171,'_width',''),(495,171,'_height',''),(496,171,'_sku',''),(497,171,'_sale_price_dates_from',''),(498,171,'_sale_price_dates_to',''),(499,171,'_price','3100'),(500,171,'_sold_individually',''),(501,171,'_stock',NULL),(502,171,'_backorders','no'),(503,171,'_manage_stock','no'),(504,171,'_min_variation_price','39'),(505,171,'_max_variation_price','39'),(506,171,'_min_variation_regular_price','39'),(507,171,'_max_variation_regular_price','39'),(508,171,'_min_variation_sale_price',''),(509,171,'_max_variation_sale_price',''),(510,171,'_default_attributes','a:0:{}'),(511,171,'_wp_old_slug','hash-tag-sweat-vero-moda'),(512,171,'_dp_original','226'),(513,171,'_thumbnail_id','414'),(514,171,'_wc_rating_count','a:2:{i:2;s:1:\"1\";i:4;s:1:\"1\";}'),(515,171,'_wc_average_rating','3.00'),(516,171,'_wc_review_count','2'),(517,171,'_edit_lock','1607497497:1'),(518,172,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(519,172,'_visibility','visible'),(520,172,'_stock_status','instock'),(521,172,'total_sales','32'),(522,172,'_downloadable','no'),(523,172,'_virtual','no'),(524,172,'_product_image_gallery','18,18,18'),(525,172,'_regular_price','2999'),(526,172,'_sale_price',''),(527,172,'_tax_status','taxable'),(528,172,'_tax_class',''),(529,172,'_purchase_note',''),(530,172,'_featured','yes'),(531,172,'_weight',''),(532,172,'_length',''),(533,172,'_width',''),(534,172,'_height',''),(535,172,'_sku',''),(536,172,'_sale_price_dates_from',''),(537,172,'_sale_price_dates_to',''),(538,172,'_price','2999'),(539,172,'_sold_individually',''),(540,172,'_stock',NULL),(541,172,'_backorders','no'),(542,172,'_manage_stock','no'),(543,172,'_min_variation_price','39'),(544,172,'_max_variation_price','39'),(545,172,'_min_variation_regular_price','39'),(546,172,'_max_variation_regular_price','39'),(547,172,'_min_variation_sale_price',''),(548,172,'_max_variation_sale_price',''),(549,172,'_default_attributes','a:0:{}'),(550,172,'_dp_original','427'),(551,172,'_thumbnail_id','405'),(552,172,'_enable_sidebar','no'),(553,172,'_edit_lock','1607597109:1'),(554,172,'_wc_rating_count','a:2:{i:3;s:1:\"1\";i:4;s:1:\"2\";}'),(555,172,'_wc_average_rating','3.67'),(556,172,'_edit_last','1'),(557,172,'_wc_review_count','3'),(558,173,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(559,173,'_edit_last','1'),(560,173,'_visibility','visible'),(561,173,'_stock_status','outofstock'),(562,173,'total_sales','266'),(563,173,'_downloadable','no'),(564,173,'_virtual','no'),(565,173,'_product_image_gallery','532,533'),(566,173,'_regular_price','29'),(567,173,'_sale_price',''),(568,173,'_tax_status',''),(569,173,'_tax_class',''),(570,173,'_purchase_note',''),(571,173,'_featured','no'),(572,173,'_weight',''),(573,173,'_length',''),(574,173,'_width',''),(575,173,'_height',''),(576,173,'_sku',''),(577,173,'_sale_price_dates_from',''),(578,173,'_sale_price_dates_to',''),(579,173,'_price','29'),(580,173,'_sold_individually',''),(581,173,'_stock','0'),(582,173,'_backorders','no'),(583,173,'_manage_stock','yes'),(584,173,'_min_variation_price','15'),(585,173,'_max_variation_price','15'),(586,173,'_min_variation_regular_price','15'),(587,173,'_max_variation_regular_price','15'),(588,173,'_min_variation_sale_price',''),(589,173,'_max_variation_sale_price',''),(590,173,'_default_attributes','a:0:{}'),(591,173,'_dp_original','422'),(592,173,'_thumbnail_id','534'),(593,173,'_max_regular_price_variation_id','5893'),(594,173,'_min_sale_price_variation_id',''),(595,173,'_max_sale_price_variation_id',''),(596,173,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:5:\"\"yes\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(597,173,'_wc_rating_count','a:1:{i:4;s:1:\"2\";}'),(598,173,'_wc_average_rating','4.00'),(599,173,'_wc_review_count','2'),(600,173,'_edit_lock','1607592962:1'),(601,173,'pv_commission_rate',''),(602,173,'_upsell_ids','a:0:{}'),(603,173,'_crosssell_ids','a:0:{}'),(604,173,'_product_version','4.6.2'),(605,174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(606,174,'_visibility','visible'),(607,174,'_stock_status','instock'),(608,174,'total_sales','2928'),(609,174,'_downloadable','no'),(610,174,'_virtual','no'),(611,174,'_product_image_gallery','536,537,538'),(612,174,'_regular_price','48000'),(613,174,'_sale_price','46800'),(614,174,'_tax_status',''),(615,174,'_tax_class',''),(616,174,'_purchase_note',''),(617,174,'_featured','no'),(618,174,'_weight',''),(619,174,'_length',''),(620,174,'_width',''),(621,174,'_height',''),(622,174,'_sku',''),(623,174,'_sale_price_dates_from',''),(624,174,'_sale_price_dates_to',''),(625,174,'_price','46800'),(626,174,'_sold_individually',''),(627,174,'_stock',NULL),(628,174,'_backorders','no'),(629,174,'_manage_stock','no'),(630,174,'_min_variation_price','39'),(631,174,'_max_variation_price','39'),(632,174,'_min_variation_regular_price','39'),(633,174,'_max_variation_regular_price','39'),(634,174,'_min_variation_sale_price',''),(635,174,'_max_variation_sale_price',''),(636,174,'_default_attributes','a:0:{}'),(637,174,'_dp_original','416'),(638,174,'_thumbnail_id','535'),(639,174,'_wc_rating_count','a:2:{i:3;s:1:\"1\";i:4;s:1:\"1\";}'),(640,174,'_wc_average_rating','3.50'),(641,174,'_wc_review_count','2'),(642,175,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(643,175,'_edit_last','1'),(644,175,'_visibility','visible'),(645,175,'_stock_status','instock'),(646,175,'total_sales','1312'),(647,175,'_downloadable','no'),(648,175,'_virtual','no'),(649,175,'_product_image_gallery','540,541'),(650,175,'_regular_price','29000'),(651,175,'_sale_price','26500'),(652,175,'_tax_status',''),(653,175,'_tax_class',''),(654,175,'_purchase_note',''),(655,175,'_featured','yes'),(656,175,'_weight',''),(657,175,'_length',''),(658,175,'_width',''),(659,175,'_height',''),(660,175,'_sku','00012'),(661,175,'_sale_price_dates_from',''),(662,175,'_sale_price_dates_to',''),(663,175,'_price','26500'),(664,175,'_sold_individually',''),(665,175,'_stock',NULL),(666,175,'_backorders','no'),(667,175,'_manage_stock','no'),(668,175,'_min_variation_price','39'),(669,175,'_max_variation_price','39'),(670,175,'_min_variation_regular_price','39'),(671,175,'_max_variation_regular_price','39'),(672,175,'_min_variation_sale_price',''),(673,175,'_max_variation_sale_price',''),(674,175,'_default_attributes','a:0:{}'),(675,175,'_dp_original','411'),(676,175,'_thumbnail_id','539'),(677,175,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:43:\"https://www.youtube.com/watch?v=BBwBfBS3REs\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(678,175,'_upsell_ids','a:0:{}'),(679,175,'_crosssell_ids','a:0:{}'),(680,175,'_product_version','4.6.2'),(681,175,'_wc_rating_count','a:1:{i:4;s:1:\"3\";}'),(682,175,'_wc_review_count','3'),(683,175,'_wc_average_rating','4.00'),(684,175,'_edit_lock','1607593114:1'),(685,176,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(686,176,'_edit_last','1'),(687,176,'_visibility','visible'),(688,176,'_stock_status','instock'),(689,176,'total_sales','100'),(690,176,'_downloadable','no'),(691,176,'_virtual','no'),(692,176,'_product_image_gallery','18,18,18'),(693,176,'_regular_price','2933'),(694,176,'_sale_price','2876'),(695,176,'_tax_status',''),(696,176,'_tax_class',''),(697,176,'_purchase_note',''),(698,176,'_featured','no'),(699,176,'_weight',''),(700,176,'_length',''),(701,176,'_width',''),(702,176,'_height',''),(703,176,'_sku',''),(704,176,'_sale_price_dates_from',''),(705,176,'_sale_price_dates_to',''),(706,176,'_price','2876'),(707,176,'_sold_individually',''),(708,176,'_stock',NULL),(709,176,'_backorders','no'),(710,176,'_manage_stock','no'),(711,176,'_min_variation_price','39'),(712,176,'_max_variation_price','39'),(713,176,'_min_variation_regular_price','39'),(714,176,'_max_variation_regular_price','39'),(715,176,'_min_variation_sale_price',''),(716,176,'_max_variation_sale_price',''),(717,176,'_default_attributes','a:0:{}'),(718,176,'_dp_original','405'),(719,176,'_thumbnail_id','400'),(720,176,'_wc_rating_count','a:2:{i:4;s:1:\"1\";i:5;s:1:\"1\";}'),(721,176,'_wc_average_rating','4.50'),(722,176,'_wc_review_count','2'),(723,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(724,177,'_edit_last','1'),(725,177,'_visibility','visible'),(726,177,'_stock_status','instock'),(727,177,'total_sales','54'),(728,177,'_downloadable','no'),(729,177,'_virtual','no'),(730,177,'_product_image_gallery','18,18,18'),(731,177,'_regular_price','2912'),(732,177,'_sale_price','1233'),(733,177,'_tax_status',''),(734,177,'_tax_class',''),(735,177,'_purchase_note',''),(736,177,'_featured','no'),(737,177,'_weight',''),(738,177,'_length',''),(739,177,'_width',''),(740,177,'_height',''),(741,177,'_sku',''),(742,177,'_sale_price_dates_from',''),(743,177,'_sale_price_dates_to',''),(744,177,'_price','1233'),(745,177,'_sold_individually',''),(746,177,'_stock',NULL),(747,177,'_backorders','no'),(748,177,'_manage_stock','no'),(749,177,'_min_variation_price','39'),(750,177,'_max_variation_price','39'),(751,177,'_min_variation_regular_price','39'),(752,177,'_max_variation_regular_price','39'),(753,177,'_min_variation_sale_price',''),(754,177,'_max_variation_sale_price',''),(755,177,'_default_attributes','a:0:{}'),(756,177,'_dp_original','395'),(757,177,'_thumbnail_id','399'),(758,177,'_wc_rating_count','a:0:{}'),(759,177,'_wc_average_rating','0'),(760,177,'_wc_review_count','0'),(761,178,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(762,178,'_visibility','visible'),(763,178,'_stock_status','instock'),(764,178,'total_sales','35634'),(765,178,'_downloadable','no'),(766,178,'_virtual','no'),(767,178,'_product_image_gallery','543'),(768,178,'_regular_price','35000'),(769,178,'_sale_price','32500'),(770,178,'_tax_status',''),(771,178,'_tax_class',''),(772,178,'_purchase_note',''),(773,178,'_featured','no'),(774,178,'_weight',''),(775,178,'_length',''),(776,178,'_width',''),(777,178,'_height',''),(778,178,'_sku',''),(779,178,'_sale_price_dates_from',''),(780,178,'_sale_price_dates_to',''),(781,178,'_price','32500'),(782,178,'_sold_individually',''),(783,178,'_stock',NULL),(784,178,'_backorders','no'),(785,178,'_manage_stock','no'),(786,178,'_min_variation_price','39'),(787,178,'_max_variation_price','39'),(788,178,'_min_variation_regular_price','39'),(789,178,'_max_variation_regular_price','39'),(790,178,'_min_variation_sale_price',''),(791,178,'_max_variation_sale_price',''),(792,178,'_default_attributes','a:0:{}'),(793,178,'_dp_original','395'),(794,178,'_thumbnail_id','542'),(795,178,'_wc_rating_count','a:0:{}'),(796,178,'_wc_average_rating','0'),(797,178,'_wc_review_count','0'),(798,178,'_edit_lock','1607593307:1'),(799,178,'_edit_last','1'),(800,178,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:5:\"\"yes\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(801,178,'_upsell_ids','a:0:{}'),(802,178,'_crosssell_ids','a:0:{}'),(803,178,'_product_version','4.6.2'),(804,179,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(805,179,'_edit_last','1'),(806,179,'_visibility','visible'),(807,179,'_stock_status','instock'),(808,179,'total_sales','63'),(809,179,'_downloadable','no'),(810,179,'_virtual','no'),(811,179,'_product_image_gallery','545'),(812,179,'_regular_price','45000'),(813,179,'_sale_price','39999'),(814,179,'_tax_status',''),(815,179,'_tax_class',''),(816,179,'_purchase_note',''),(817,179,'_featured','no'),(818,179,'_weight',''),(819,179,'_length',''),(820,179,'_width',''),(821,179,'_height',''),(822,179,'_sku',''),(823,179,'_sale_price_dates_from',''),(824,179,'_sale_price_dates_to',''),(825,179,'_price','39999'),(826,179,'_sold_individually',''),(827,179,'_stock',NULL),(828,179,'_backorders','no'),(829,179,'_manage_stock','no'),(830,179,'_min_variation_price','39'),(831,179,'_max_variation_price','39'),(832,179,'_min_variation_regular_price','39'),(833,179,'_max_variation_regular_price','39'),(834,179,'_min_variation_sale_price',''),(835,179,'_max_variation_sale_price',''),(836,179,'_default_attributes','a:0:{}'),(837,179,'_dp_original','149'),(838,179,'_thumbnail_id','544'),(839,179,'_wc_rating_count','a:1:{i:5;s:1:\"1\";}'),(840,179,'_wc_average_rating','5.00'),(841,179,'_wc_review_count','1'),(842,179,'_edit_lock','1607593234:1'),(843,179,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(844,179,'_upsell_ids','a:0:{}'),(845,179,'_crosssell_ids','a:0:{}'),(846,179,'_product_version','4.6.2'),(2477,223,'_thumbnail_id','16'),(2478,224,'_thumbnail_id','16'),(2479,225,'_thumbnail_id','16'),(2480,226,'_thumbnail_id','16'),(2481,227,'_thumbnail_id','16'),(2482,228,'_thumbnail_id','16'),(2483,229,'_thumbnail_id','16'),(2484,230,'_thumbnail_id','16'),(2485,231,'_menu_item_type','post_type'),(2486,231,'_menu_item_menu_item_parent','0'),(2487,231,'_menu_item_object_id','33'),(2488,231,'_menu_item_object','page'),(2489,231,'_menu_item_target',''),(2490,231,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2491,231,'_menu_item_xfn',''),(2492,231,'_menu_item_url',''),(2686,254,'_menu_item_type','post_type'),(2687,254,'_menu_item_menu_item_parent','0'),(2688,254,'_menu_item_object_id','90'),(2689,254,'_menu_item_object','page'),(2690,254,'_menu_item_target',''),(2691,254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2692,254,'_menu_item_xfn',''),(2693,254,'_menu_item_url',''),(2694,255,'_menu_item_type','post_type'),(2695,255,'_menu_item_menu_item_parent','0'),(2696,255,'_menu_item_object_id','89'),(2697,255,'_menu_item_object','page'),(2698,255,'_menu_item_target',''),(2699,255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2700,255,'_menu_item_xfn',''),(2701,255,'_menu_item_url',''),(2702,256,'_menu_item_type','post_type'),(2703,256,'_menu_item_menu_item_parent','0'),(2704,256,'_menu_item_object_id','88'),(2705,256,'_menu_item_object','page'),(2706,256,'_menu_item_target',''),(2707,256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2708,256,'_menu_item_xfn',''),(2709,256,'_menu_item_url',''),(2795,267,'_menu_item_type','post_type'),(2796,267,'_menu_item_menu_item_parent','0'),(2797,267,'_menu_item_object_id','90'),(2798,267,'_menu_item_object','page'),(2799,267,'_menu_item_target',''),(2800,267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2801,267,'_menu_item_xfn',''),(2802,267,'_menu_item_url',''),(2803,267,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(2804,268,'_menu_item_type','post_type'),(2805,268,'_menu_item_menu_item_parent','0'),(2806,268,'_menu_item_object_id','85'),(2807,268,'_menu_item_object','page'),(2808,268,'_menu_item_target',''),(2809,268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2810,268,'_menu_item_xfn',''),(2811,268,'_menu_item_url',''),(2812,269,'_wp_attached_file','2020/11/marlin.png'),(2813,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:86;s:4:\"file\";s:18:\"2020/11/marlin.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"marlin-100x86.png\";s:5:\"width\";i:100;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"marlin-100x86.png\";s:5:\"width\";i:100;s:6:\"height\";i:86;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:{}}}'),(2821,274,'_wp_attached_file','2020/11/pexels-jose-luis-photographer-2576788-scaled.jpg'),(2822,274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:56:\"2020/11/pexels-jose-luis-photographer-2576788-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"pexels-jose-luis-photographer-2576788-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"pexels-jose-luis-photographer-2576788-100x100.jpg\";s:5:\"width\";i:100;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:{}}s:14:\"original_image\";s:41:\"pexels-jose-luis-photographer-2576788.jpg\";}'),(2823,275,'_wp_attached_file','2020/11/pexels-lucas-da-miranda-1967902-scaled.jpg'),(2824,275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2020/11/pexels-lucas-da-miranda-1967902-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"pexels-lucas-da-miranda-1967902-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"pexels-lucas-da-miranda-1967902-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"pexels-lucas-da-miranda-1967902-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"pexels-lucas-da-miranda-1967902-100x100.jpg\";s:5:\"width\";i:100;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:{}}s:14:\"original_image\";s:35:\"pexels-lucas-da-miranda-1967902.jpg\";}'),(2825,276,'_wp_attached_file','2020/11/pexels-adam-sabljakovic-3214409-scaled.jpg'),(2826,276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2020/11/pexels-adam-sabljakovic-3214409-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"pexels-adam-sabljakovic-3214409-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"pexels-adam-sabljakovic-3214409-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"pexels-adam-sabljakovic-3214409-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"pexels-adam-sabljakovic-3214409-100x100.jpg\";s:5:\"width\";i:100;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:{}}s:14:\"original_image\";s:35:\"pexels-adam-sabljakovic-3214409.jpg\";}'),(2827,278,'_wp_attached_file','2020/11/pexels-jose-luis-photographer-2576788-1-scaled.jpg'),(2828,278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:58:\"2020/11/pexels-jose-luis-photographer-2576788-1-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"pexels-jose-luis-photographer-2576788-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"pexels-jose-luis-photographer-2576788-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"pexels-jose-luis-photographer-2576788-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"pexels-jose-luis-photographer-2576788-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}s:14:\"original_image\";s:43:\"pexels-jose-luis-photographer-2576788-1.jpg\";}'),(2829,280,'_edit_lock','1605786181:1'),(2830,281,'_edit_lock','1605798359:1'),(2831,281,'_edit_last','1'),(2832,281,'_footer','normal'),(2833,285,'_wp_attached_file','2020/11/scarters-the-informal_black_hover_480x480.png'),(2834,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:480;s:4:\"file\";s:53:\"2020/11/scarters-the-informal_black_hover_480x480.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"scarters-the-informal_black_hover_480x480-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"scarters-the-informal_black_hover_480x480-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:53:\"scarters-the-informal_black_hover_480x480-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:53:\"scarters-the-informal_black_hover_480x480-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:53:\"scarters-the-informal_black_hover_480x480-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:53:\"scarters-the-informal_black_hover_480x480-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(2865,286,'_order_key','wc_order_tRC1ZHrwcv2Qr'),(2866,286,'_customer_user','1'),(2867,286,'_payment_method','cod'),(2868,286,'_payment_method_title','Cash on delivery'),(2869,286,'_customer_ip_address','157.44.203.7'),(2870,286,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36'),(2871,286,'_created_via','checkout'),(2872,286,'_cart_hash','b07755f07521df634bc8a2cd112a0cef'),(2873,286,'_billing_first_name','sonu'),(2874,286,'_billing_last_name','s'),(2875,286,'_billing_company','ghjkl'),(2876,286,'_billing_address_1','dfgfhj'),(2877,286,'_billing_address_2','ftygu'),(2878,286,'_billing_city','kochi'),(2879,286,'_billing_state','KL'),(2880,286,'_billing_postcode','68316'),(2881,286,'_billing_country','IN'),(2882,286,'_billing_email','sonuvalakam@gmail.com'),(2883,286,'_billing_phone','09447727591'),(2884,286,'_order_currency','GBP'),(2885,286,'_cart_discount','0'),(2886,286,'_cart_discount_tax','0'),(2887,286,'_order_shipping','0'),(2888,286,'_order_shipping_tax','0'),(2889,286,'_order_tax','0'),(2890,286,'_order_total','1999.00'),(2891,286,'_order_version','4.6.2'),(2892,286,'_prices_include_tax','no'),(2893,286,'_billing_address_index','sonu s ghjkl dfgfhj ftygu kochi KL 68316 IN sonuvalakam@gmail.com 09447727591'),(2894,286,'_shipping_address_index','        '),(2895,286,'is_vat_exempt','no'),(2896,286,'has_wcmp_sub_order','1'),(2897,287,'order_items_commission_rates','a:1:{i:2;a:4:{s:4:\"mode\";s:6:\"vendor\";s:4:\"type\";s:7:\"percent\";s:14:\"commission_val\";d:0;s:16:\"commission_fixed\";i:0;}}'),(2898,287,'_billing_first_name','sonu'),(2899,287,'_billing_last_name','s'),(2900,287,'_billing_company','ghjkl'),(2901,287,'_billing_address_1','dfgfhj'),(2902,287,'_billing_address_2','ftygu'),(2903,287,'_billing_city','kochi'),(2904,287,'_billing_state','KL'),(2905,287,'_billing_postcode','68316'),(2906,287,'_billing_country','IN'),(2907,287,'_billing_email','sonuvalakam@gmail.com'),(2908,287,'_billing_phone','09447727591'),(2909,287,'_shipping_first_name',''),(2910,287,'_shipping_last_name',''),(2911,287,'_shipping_company',''),(2912,287,'_shipping_address_1',''),(2913,287,'_shipping_address_2',''),(2914,287,'_shipping_city',''),(2915,287,'_shipping_state',''),(2916,287,'_shipping_postcode',''),(2917,287,'_shipping_country',''),(2918,287,'_payment_method','cod'),(2919,287,'_payment_method_title','Cash on delivery'),(2920,287,'_customer_user','1'),(2921,287,'_prices_include_tax','no'),(2922,287,'_order_currency','GBP'),(2923,287,'_order_key','wc_order_tRC1ZHrwcv2Qr'),(2924,287,'_customer_ip_address','157.44.203.7'),(2925,287,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36'),(2926,287,'_wcmp_order_version','3.5.12'),(2927,287,'_vendor_id','2'),(2928,287,'_created_via','wcmp_vendor_order'),(2929,287,'_order_total','1999.00'),(2930,287,'_order_version','4.6.2'),(2931,287,'_billing_address_index','sonu s ghjkl dfgfhj ftygu kochi KL 68316 IN sonuvalakam@gmail.com 09447727591'),(2932,287,'_shipping_address_index','        '),(2933,287,'_order_shipping','0'),(2934,287,'_order_shipping_tax','0'),(2935,287,'_order_tax','0'),(2936,287,'_cart_discount','0'),(2937,287,'_cart_discount_tax','0'),(2938,288,'_commission_order_id','287'),(2939,288,'_paid_status','unpaid'),(2940,288,'_commission_vendor','80'),(2941,288,'_commission_amount','0'),(2942,288,'_shipping','0'),(2943,288,'_tax','0'),(2944,288,'_commission_total','0'),(2945,287,'_commission_id','288'),(2946,287,'_commissions_processed','yes'),(2947,286,'_download_permissions_granted','yes'),(2948,286,'_recorded_sales','yes'),(2949,286,'_recorded_coupon_usage_counts','yes'),(2950,286,'_order_stock_reduced','yes'),(2951,287,'_download_permissions_granted','yes'),(2952,287,'_recorded_sales','yes'),(2953,287,'_recorded_coupon_usage_counts','yes'),(2954,287,'_order_stock_reduced','yes'),(2955,287,'_wcmp_vendor_new_order_mail_triggered','1'),(2956,286,'wcmp_vendor_order_status_synchronized','1'),(2957,286,'_edit_lock','1605277718:1'),(2958,286,'_edit_last','1'),(2959,286,'_date_completed','1605266418'),(2960,286,'_date_paid','1605266418'),(2961,286,'_paid_date','2020-11-13 11:20:18'),(2962,286,'_completed_date','2020-11-13 11:20:18'),(2963,287,'_date_completed','1605266451'),(2964,287,'_date_paid','1605266451'),(2965,287,'_paid_date','2020-11-13 11:20:51'),(2966,287,'_completed_date','2020-11-13 11:20:51'),(2996,301,'_wp_attached_file','2020/11/cropped-marlin.png'),(2997,301,'_wp_attachment_context','site-icon'),(2998,301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2020/11/cropped-marlin.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-marlin-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-marlin-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"cropped-marlin-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:\"cropped-marlin-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"cropped-marlin-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-marlin-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:26:\"cropped-marlin-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:26:\"cropped-marlin-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:26:\"cropped-marlin-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:24:\"cropped-marlin-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:{}}}'),(3016,64,'_edit_lock','1606807256:1'),(3017,64,'_edit_last','1'),(3031,325,'_wp_attached_file','2020/11/pexels-jessica-ticozzelli-5670181-scaled.jpg'),(3032,325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2020/11/pexels-jessica-ticozzelli-5670181-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"pexels-jessica-ticozzelli-5670181-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"pexels-jessica-ticozzelli-5670181-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"pexels-jessica-ticozzelli-5670181-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"pexels-jessica-ticozzelli-5670181-100x100.jpg\";s:5:\"width\";i:100;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:{}}s:14:\"original_image\";s:37:\"pexels-jessica-ticozzelli-5670181.jpg\";}'),(3034,327,'_wp_attached_file','2020/11/bg-new.jpg'),(3035,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:730;s:4:\"file\";s:18:\"2020/11/bg-new.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"bg-new-767x400.jpg\";s:5:\"width\";i:767;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"bg-new-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"bg-new-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"bg-new-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"bg-new-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"bg-new-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"bg-new-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"bg-new-600x313.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"bg-new-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3036,328,'_wp_attached_file','2020/11/pexels-pixabay-458766.jpg'),(3037,329,'_wp_attached_file','2020/11/pexels-elizaveta-dushechkina-3727149-scaled.jpg'),(3038,329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:55:\"2020/11/pexels-elizaveta-dushechkina-3727149-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-533x400.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"pexels-elizaveta-dushechkina-3727149-1067x800.jpg\";s:5:\"width\";i:1067;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"pexels-elizaveta-dushechkina-3727149-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"pexels-elizaveta-dushechkina-3727149-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"pexels-elizaveta-dushechkina-3727149-100x100.jpg\";s:5:\"width\";i:100;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:{}}s:14:\"original_image\";s:40:\"pexels-elizaveta-dushechkina-3727149.jpg\";}'),(3039,333,'_wp_attached_file','2020/11/slide.jpg'),(3040,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:643;s:6:\"height\";i:378;s:4:\"file\";s:17:\"2020/11/slide.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"slide-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"slide-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"slide-600x353.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"slide-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"slide-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"slide-600x353.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"slide-100x100.jpg\";s:5:\"width\";i:100;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(3044,338,'_wp_attached_file','2014/08/doctor-icon-avatar-white_136162-58.jpg'),(3045,338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:626;s:4:\"file\";s:46:\"2014/08/doctor-icon-avatar-white_136162-58.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"doctor-icon-avatar-white_136162-58-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3046,166,'_wcmp_gtin_code',''),(3047,166,'_download_limit','-1'),(3048,166,'_download_expiry','-1'),(3049,166,'_commission_per_product','0'),(3050,166,'_wcmp_cancallation_policy',''),(3051,166,'_wcmp_refund_policy',''),(3052,166,'_wcmp_shipping_policy',''),(3053,339,'_wp_attached_file','2020/11/pexels-ken-ozuna-2423929.jpg'),(3054,340,'_wp_attached_file','2020/11/pexels-marcio-nascimento-3579181.jpg'),(3055,340,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2258;s:6:\"height\";i:2258;s:4:\"file\";s:44:\"2020/11/pexels-marcio-nascimento-3579181.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"pexels-marcio-nascimento-3579181-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"pexels-marcio-nascimento-3579181-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"pexels-marcio-nascimento-3579181-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3056,341,'_wp_attached_file','2020/11/pexels-aj-nakasone-1707245.jpg'),(3058,343,'_wp_attached_file','2020/11/pexels-janko-ferlic-1493111.jpg'),(3059,344,'_wp_attached_file','2020/11/pexels-marcelo-chagas-1937434.jpg'),(3060,345,'_wp_attached_file','2020/11/pexels-ali-pazani-2587464.jpg'),(3061,345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2500;s:4:\"file\";s:37:\"2020/11/pexels-ali-pazani-2587464.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"pexels-ali-pazani-2587464-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:39:\"pexels-ali-pazani-2587464-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"pexels-ali-pazani-2587464-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3062,346,'_wp_attached_file','2020/11/pexels-hudson-marques-3435323.jpg'),(3063,347,'_wp_attached_file','2020/11/download.jpg'),(3064,347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:20:\"2020/11/download.jpg\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"download-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"download-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3065,348,'_wp_attached_file','2020/11/282.jpg'),(3066,348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:15:\"2020/11/282.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"282-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"282-800x800.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"282-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"282-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"282-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"282-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:15:\"282-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"282-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"282-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"282-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"282-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3067,349,'_wp_attached_file','2020/11/pexels-caio-cardenas-2101839.jpg'),(3068,37,'_oembed_97120786a5d618011442f73be26e093f','<iframe title=\"Most beautiful drone videos ever filmed 2015  – Our planet is amazing\" width=\"1020\" height=\"574\" src=\"https://www.youtube.com/embed/AoPiLg8DZ3A?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(3069,37,'_oembed_time_97120786a5d618011442f73be26e093f','1605786376'),(3070,37,'_oembed_9b3d7988e213d0f6db44b486cf8ab762','<iframe title=\"Tigerilla - TULIPS ft. Gill Bates\" src=\"https://player.vimeo.com/video/180255453?dnt=1&amp;app_id=122963\" width=\"1020\" height=\"574\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>'),(3071,37,'_oembed_time_9b3d7988e213d0f6db44b486cf8ab762','1605786377'),(3075,167,'_wcmp_gtin_code',''),(3076,167,'_download_limit','-1'),(3077,167,'_download_expiry','-1'),(3078,167,'_commission_per_product','0'),(3079,167,'_wcmp_cancallation_policy',''),(3080,167,'_wcmp_refund_policy',''),(3081,167,'_wcmp_shipping_policy',''),(3082,168,'_wcmp_gtin_code',''),(3083,168,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3084,168,'_download_limit','-1'),(3085,168,'_download_expiry','-1'),(3086,168,'_product_version','4.6.2'),(3087,168,'_commission_per_product','0'),(3088,168,'_wcmp_cancallation_policy',''),(3089,168,'_wcmp_refund_policy',''),(3090,168,'_wcmp_shipping_policy',''),(3091,169,'_wcmp_gtin_code',''),(3092,169,'_download_limit','-1'),(3093,169,'_download_expiry','-1'),(3094,169,'_product_version','4.6.2'),(3095,169,'_commission_per_product','0'),(3096,169,'_wcmp_cancallation_policy',''),(3097,169,'_wcmp_refund_policy',''),(3098,169,'_wcmp_shipping_policy',''),(3105,363,'_wp_attached_file','2020/11/doctor.png'),(3106,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:18:\"2020/11/doctor.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"doctor-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"doctor-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"doctor-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:18:\"doctor-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"doctor-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"doctor-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3107,364,'_wp_attached_file','2020/11/newlyweds.png'),(3108,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"2020/11/newlyweds.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"newlyweds-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"newlyweds-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"newlyweds-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:\"newlyweds-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"newlyweds-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"newlyweds-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3109,365,'_wp_attached_file','2020/11/project-management.png'),(3110,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:30:\"2020/11/project-management.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"project-management-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"project-management-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"project-management-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:\"project-management-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"project-management-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"project-management-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3111,366,'_wp_attached_file','2020/11/certification.png'),(3112,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:25:\"2020/11/certification.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"certification-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"certification-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"certification-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:\"certification-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"certification-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"certification-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3113,367,'_wp_attached_file','2020/11/online-appointment.png'),(3114,367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:30:\"2020/11/online-appointment.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"online-appointment-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"online-appointment-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"online-appointment-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:\"online-appointment-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"online-appointment-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"online-appointment-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3115,368,'_wp_attached_file','2020/11/24-hours.png'),(3116,368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:20:\"2020/11/24-hours.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"24-hours-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"24-hours-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"24-hours-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:20:\"24-hours-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"24-hours-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"24-hours-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3136,383,'_wp_attached_file','2020/11/TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004.jpg'),(3137,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:799;s:4:\"file\";s:50:\"2020/11/TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-401x400.jpg\";s:5:\"width\";i:401;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-600x599.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:599;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-600x599.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:599;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3138,384,'_wp_attached_file','2020/11/mg_4551.jpg'),(3139,384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1058;s:4:\"file\";s:19:\"2020/11/mg_4551.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"mg_4551-302x400.jpg\";s:5:\"width\";i:302;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"mg_4551-605x800.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mg_4551-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"mg_4551-768x1016.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1016;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"mg_4551-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"mg_4551-600x794.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:794;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"mg_4551-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"mg_4551-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"mg_4551-600x794.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:794;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"mg_4551-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3140,386,'_wp_attached_file','2020/11/marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles.jpg'),(3141,386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:822;s:6:\"height\";i:1028;s:4:\"file\";s:84:\"2020/11/marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-320x400.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-640x800.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:84:\"marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3142,388,'_wp_attached_file','2020/11/party-gown-500x500-1.jpg'),(3143,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2020/11/party-gown-500x500-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"party-gown-500x500-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"party-gown-500x500-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"party-gown-500x500-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:32:\"party-gown-500x500-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"party-gown-500x500-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"party-gown-500x500-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3144,389,'_wp_attached_file','2020/11/15777093345314.jpg'),(3145,389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:26:\"2020/11/15777093345314.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"15777093345314-267x400.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"15777093345314-533x800.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"15777093345314-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"15777093345314-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"15777093345314-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"15777093345314-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"15777093345314-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"15777093345314-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"15777093345314-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"15777093345314-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3146,390,'_wp_attached_file','2020/11/Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1.jpg'),(3147,390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1799;s:4:\"file\";s:82:\"2020/11/Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-267x400.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-534x800.jpg\";s:5:\"width\";i:534;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:83:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:84:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-1025x1536.jpg\";s:5:\"width\";i:1025;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:82:\"Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3148,393,'_wp_attached_file','2020/11/pure-kanchipuram-silk-sarees-500x500-1.jpg'),(3149,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:376;s:6:\"height\";i:499;s:4:\"file\";s:50:\"2020/11/pure-kanchipuram-silk-sarees-500x500-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"pure-kanchipuram-silk-sarees-500x500-1-301x400.jpg\";s:5:\"width\";i:301;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"pure-kanchipuram-silk-sarees-500x500-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:50:\"pure-kanchipuram-silk-sarees-500x500-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:50:\"pure-kanchipuram-silk-sarees-500x500-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:50:\"pure-kanchipuram-silk-sarees-500x500-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"pure-kanchipuram-silk-sarees-500x500-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3150,394,'_wp_attached_file','2020/11/kerala-saree-with-peacock-design_1024x1024.jpg'),(3151,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:683;s:6:\"height\";i:1024;s:4:\"file\";s:54:\"2020/11/kerala-saree-with-peacock-design_1024x1024.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-267x400.jpg\";s:5:\"width\";i:267;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-534x800.jpg\";s:5:\"width\";i:534;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"kerala-saree-with-peacock-design_1024x1024-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3152,395,'_wp_attached_file','2020/11/orange-weaved-silk-fancy-sarees.jpg'),(3153,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:857;s:6:\"height\";i:1200;s:4:\"file\";s:43:\"2020/11/orange-weaved-silk-fancy-sarees.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-286x400.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-571x800.jpg\";s:5:\"width\";i:571;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"orange-weaved-silk-fancy-sarees-768x1075.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1075;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-600x840.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-600x840.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"orange-weaved-silk-fancy-sarees-100x100.jpg\";s:5:\"width\";i:100;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:19:\"www.gunjfashion.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:31:\"orange-weaved-silk-fancy-sarees\";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:31:\"orange-weaved-silk-fancy-sarees\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3289,170,'_wcmp_gtin_code',''),(3290,170,'_tax_status','taxable'),(3291,170,'_tax_class',''),(3292,170,'_download_limit','-1'),(3293,170,'_download_expiry','-1'),(3294,170,'_commission_per_product','0'),(3295,170,'_wcmp_cancallation_policy',''),(3296,170,'_wcmp_refund_policy',''),(3297,170,'_wcmp_shipping_policy',''),(3298,177,'_edit_lock','1606298183:1'),(3299,399,'_wp_attached_file','2013/08/Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1.jpeg'),(3300,399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:818;s:4:\"file\";s:64:\"2013/08/Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1-293x400.jpeg\";s:5:\"width\";i:293;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1-587x800.jpeg\";s:5:\"width\";i:587;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1-280x280.jpeg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:64:\"Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1-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:64:\"Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:64:\"Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:64:\"Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3301,177,'_wcmp_gtin_code',''),(3302,177,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3303,177,'_download_limit','-1'),(3304,177,'_download_expiry','-1'),(3305,177,'_product_version','4.6.2'),(3306,177,'_commission_per_product','0'),(3307,177,'_wcmp_cancallation_policy',''),(3308,177,'_wcmp_refund_policy',''),(3309,177,'_wcmp_shipping_policy',''),(3310,176,'_edit_lock','1606716711:1'),(3311,400,'_wp_attached_file','2013/08/red-fancy-saree.jpg'),(3312,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:810;s:4:\"file\";s:27:\"2013/08/red-fancy-saree.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"red-fancy-saree-296x400.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"red-fancy-saree-593x800.jpg\";s:5:\"width\";i:593;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"red-fancy-saree-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"red-fancy-saree-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:27:\"red-fancy-saree-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"red-fancy-saree-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"red-fancy-saree-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3313,176,'_wcmp_gtin_code',''),(3314,176,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3315,176,'_download_limit','-1'),(3316,176,'_download_expiry','-1'),(3317,176,'_product_version','4.6.2'),(3318,176,'_commission_per_product','0'),(3319,176,'_wcmp_cancallation_policy',''),(3320,176,'_wcmp_refund_policy',''),(3321,176,'_wcmp_shipping_policy',''),(3322,401,'_wp_attached_file','2013/08/Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress.jpg'),(3323,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1343;s:6:\"height\";i:1500;s:4:\"file\";s:105:\"2013/08/Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-358x400.jpg\";s:5:\"width\";i:358;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-716x800.jpg\";s:5:\"width\";i:716;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-768x858.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:858;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-600x670.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-600x670.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:105:\"Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3324,175,'_wcmp_gtin_code',''),(3325,175,'_download_limit','-1'),(3326,175,'_download_expiry','-1'),(3327,175,'_commission_per_product','0'),(3328,175,'_wcmp_cancallation_policy',''),(3329,175,'_wcmp_refund_policy',''),(3330,175,'_wcmp_shipping_policy',''),(3331,174,'_edit_lock','1607593171:1'),(3332,402,'_wp_attached_file','2013/08/2B800_0.jpg'),(3333,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:375;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2013/08/2B800_0.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"2B800_0-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"2B800_0-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"2B800_0-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:\"2B800_0-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"2B800_0-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"2B800_0-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3334,174,'_edit_last','1'),(3335,174,'_wcmp_gtin_code',''),(3336,174,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3337,174,'_download_limit','-1'),(3338,174,'_download_expiry','-1'),(3339,174,'_product_version','4.6.2'),(3340,174,'_commission_per_product','0'),(3341,174,'_wcmp_cancallation_policy',''),(3342,174,'_wcmp_refund_policy',''),(3343,174,'_wcmp_shipping_policy',''),(3344,403,'_wp_attached_file','2013/08/5e080aeb338a176aaa785c86f560a3cd.jpg'),(3345,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:676;s:4:\"file\";s:44:\"2013/08/5e080aeb338a176aaa785c86f560a3cd.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"5e080aeb338a176aaa785c86f560a3cd-296x400.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"5e080aeb338a176aaa785c86f560a3cd-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"5e080aeb338a176aaa785c86f560a3cd-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:44:\"5e080aeb338a176aaa785c86f560a3cd-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:44:\"5e080aeb338a176aaa785c86f560a3cd-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"5e080aeb338a176aaa785c86f560a3cd-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3346,173,'_wcmp_gtin_code',''),(3347,173,'_download_limit','-1'),(3348,173,'_download_expiry','-1'),(3349,173,'_commission_per_product','0'),(3350,173,'_wcmp_cancallation_policy',''),(3351,173,'_wcmp_refund_policy',''),(3352,173,'_wcmp_shipping_policy',''),(3353,404,'_wp_attached_file','2014/06/218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari.jpg'),(3354,404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:354;s:4:\"file\";s:63:\"2014/06/218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari-236x280.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari-236x300.jpg\";s:5:\"width\";i:236;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:63:\"218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3355,171,'_wcmp_gtin_code',''),(3356,171,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3357,171,'_download_limit','-1'),(3358,171,'_download_expiry','-1'),(3359,171,'_product_version','4.6.2'),(3360,171,'_commission_per_product','0'),(3361,171,'_wcmp_cancallation_policy',''),(3362,171,'_wcmp_refund_policy',''),(3363,171,'_wcmp_shipping_policy',''),(3364,405,'_wp_attached_file','2013/08/fancy-anarkali-500x500-1.jpg'),(3365,405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:388;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2013/08/fancy-anarkali-500x500-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"fancy-anarkali-500x500-1-310x400.jpg\";s:5:\"width\";i:310;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"fancy-anarkali-500x500-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"fancy-anarkali-500x500-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:36:\"fancy-anarkali-500x500-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"fancy-anarkali-500x500-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"fancy-anarkali-500x500-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3366,172,'_wcmp_gtin_code',''),(3367,172,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3368,172,'_download_limit','-1'),(3369,172,'_download_expiry','-1'),(3370,172,'_product_version','4.6.2'),(3371,172,'_commission_per_product','0'),(3372,172,'_wcmp_cancallation_policy',''),(3373,172,'_wcmp_refund_policy',''),(3374,172,'_wcmp_shipping_policy',''),(3376,412,'_wp_attached_file','2020/11/delivery-van.png'),(3377,412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:24:\"2020/11/delivery-van.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"delivery-van-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"delivery-van-280x280.png\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"delivery-van-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:\"delivery-van-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"delivery-van-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"delivery-van-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3378,414,'_wp_attached_file','2014/06/lach.jpg'),(3379,414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:405;s:6:\"height\";i:532;s:4:\"file\";s:16:\"2014/06/lach.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"lach-305x400.jpg\";s:5:\"width\";i:305;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"lach-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"lach-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:16:\"lach-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"lach-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"lach-100x100.jpg\";s:5:\"width\";i:100;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:10:\"Picasa 3.0\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:557:\"D.NO.61    Rs.85,860/-Get a fabulous look with this fish tail lehenga choli over pure georgette base in light onion pink color with Nett Duputta. This awesome set is intricately crafted just for you with lots of detailing done with sequins, stone and cutdana work in various lovely patterns. Portray the glamorous you this season with this spectacularly designed outfit for that most awaited day. (This lehenga can be customized as shown with lehenga length up to 42 inches, choli length 20 inches and waist 38 inches. There might be slight color variation)\";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:{}}}'),(3380,178,'_wp_old_slug','jeansmaker-tee-lee-jeans__trashed'),(3381,179,'_wp_old_slug','pima-ss-o-neck-noos-selected-homme__trashed'),(3382,415,'_wp_attached_file','2013/08/product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332.jpg'),(3383,415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1000;s:4:\"file\";s:87:\"2013/08/product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-320x400.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-640x800.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-600x750.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:87:\"product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3384,178,'_wcmp_gtin_code',''),(3385,178,'_download_limit','-1'),(3386,178,'_download_expiry','-1'),(3387,178,'_commission_per_product','0'),(3388,178,'_wcmp_cancallation_policy',''),(3389,178,'_wcmp_refund_policy',''),(3390,178,'_wcmp_shipping_policy',''),(3391,416,'_wp_attached_file','2013/08/ba40461c91a4e07173e6cdf4b1988284.jpg'),(3392,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:817;s:6:\"height\";i:1024;s:4:\"file\";s:44:\"2013/08/ba40461c91a4e07173e6cdf4b1988284.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-319x400.jpg\";s:5:\"width\";i:319;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-638x800.jpg\";s:5:\"width\";i:638;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-768x963.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-600x752.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:752;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-600x752.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:752;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"ba40461c91a4e07173e6cdf4b1988284-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3393,179,'_wcmp_gtin_code',''),(3394,179,'_download_limit','-1'),(3395,179,'_download_expiry','-1'),(3396,179,'_commission_per_product','0'),(3397,179,'_wcmp_cancallation_policy',''),(3398,179,'_wcmp_refund_policy',''),(3399,179,'_wcmp_shipping_policy',''),(3400,419,'_wp_attached_file','2020/11/test-2.png'),(3401,419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2020/11/test-2.png\";s:5:\"sizes\";a:0:{}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:{}}}'),(3402,420,'_wp_attached_file','2020/11/testimonial_author.png'),(3403,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:30:\"2020/11/testimonial_author.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"testimonial_author-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"testimonial_author-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3404,421,'_wp_attached_file','2020/11/test-1.png'),(3405,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:18:\"2020/11/test-1.png\";s:5:\"sizes\";a:0:{}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:{}}}'),(3417,429,'_menu_item_type','post_type'),(3418,429,'_menu_item_menu_item_parent','0'),(3419,429,'_menu_item_object_id','64'),(3420,429,'_menu_item_object','page'),(3421,429,'_menu_item_target',''),(3422,429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3423,429,'_menu_item_xfn',''),(3424,429,'_menu_item_url',''),(3435,90,'_edit_lock','1606806989:1'),(3436,90,'_edit_last','1'),(3437,89,'_edit_lock','1607585251:1'),(3438,89,'_edit_last','1'),(3439,89,'_footer','normal'),(3440,88,'_edit_lock','1607660260:1'),(3441,438,'_menu_item_type','post_type'),(3442,438,'_menu_item_menu_item_parent','0'),(3443,438,'_menu_item_object_id','88'),(3444,438,'_menu_item_object','page'),(3445,438,'_menu_item_target',''),(3446,438,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3447,438,'_menu_item_xfn',''),(3448,438,'_menu_item_url',''),(3450,444,'_edit_lock','1606805701:1'),(3451,444,'_edit_last','1'),(3452,444,'_footer','normal'),(3453,446,'_wp_attached_file','2020/12/measure-up.png'),(3454,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:275;s:4:\"file\";s:22:\"2020/12/measure-up.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"measure-up-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"measure-up-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3455,447,'_wp_attached_file','2020/12/design.png'),(3456,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:275;s:4:\"file\";s:18:\"2020/12/design.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"design-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"design-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3457,448,'_wp_attached_file','2020/12/get-product-on-your-doorstep.png'),(3458,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:275;s:4:\"file\";s:40:\"2020/12/get-product-on-your-doorstep.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"get-product-on-your-doorstep-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"get-product-on-your-doorstep-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(3459,444,'_wp_page_template',''),(3460,444,'_thumbnail_id',''),(3461,450,'_wp_attached_file','2020/12/banner-6.jpg'),(3462,450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2020/12/banner-6.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"banner-6-800x267.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"banner-6-1400x467.jpg\";s:5:\"width\";i:1400;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-6-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"banner-6-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-6-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"banner-6-600x200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"banner-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"banner-6-600x200.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-6-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3463,97,'_edit_lock','1606806909:1'),(3464,452,'_menu_item_type','post_type'),(3465,452,'_menu_item_menu_item_parent','0'),(3466,452,'_menu_item_object_id','444'),(3467,452,'_menu_item_object','page'),(3468,452,'_menu_item_target',''),(3469,452,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3470,452,'_menu_item_xfn',''),(3471,452,'_menu_item_url',''),(3473,97,'_edit_last','1'),(3530,468,'_menu_item_type','taxonomy'),(3531,468,'_menu_item_menu_item_parent','547'),(3532,468,'_menu_item_object_id','93'),(3533,468,'_menu_item_object','product_cat'),(3534,468,'_menu_item_target',''),(3535,468,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3536,468,'_menu_item_xfn',''),(3537,468,'_menu_item_url',''),(3539,469,'_menu_item_type','taxonomy'),(3540,469,'_menu_item_menu_item_parent','547'),(3541,469,'_menu_item_object_id','92'),(3542,469,'_menu_item_object','product_cat'),(3543,469,'_menu_item_target',''),(3544,469,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3545,469,'_menu_item_xfn',''),(3546,469,'_menu_item_url',''),(3548,470,'_menu_item_type','taxonomy'),(3549,470,'_menu_item_menu_item_parent','547'),(3550,470,'_menu_item_object_id','89'),(3551,470,'_menu_item_object','product_cat'),(3552,470,'_menu_item_target',''),(3553,470,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3554,470,'_menu_item_xfn',''),(3555,470,'_menu_item_url',''),(3557,471,'_menu_item_type','taxonomy'),(3558,471,'_menu_item_menu_item_parent','547'),(3559,471,'_menu_item_object_id','91'),(3560,471,'_menu_item_object','product_cat'),(3561,471,'_menu_item_target',''),(3562,471,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3563,471,'_menu_item_xfn',''),(3564,471,'_menu_item_url',''),(3566,472,'_menu_item_type','taxonomy'),(3567,472,'_menu_item_menu_item_parent','547'),(3568,472,'_menu_item_object_id','88'),(3569,472,'_menu_item_object','product_cat'),(3570,472,'_menu_item_target',''),(3571,472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3572,472,'_menu_item_xfn',''),(3573,472,'_menu_item_url',''),(3575,473,'_menu_item_type','taxonomy'),(3576,473,'_menu_item_menu_item_parent','547'),(3577,473,'_menu_item_object_id','90'),(3578,473,'_menu_item_object','product_cat'),(3579,473,'_menu_item_target',''),(3580,473,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3581,473,'_menu_item_xfn',''),(3582,473,'_menu_item_url',''),(3586,479,'_wp_attached_file','2020/12/pexels-jeshoots-4970-scaled.jpg'),(3587,479,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:39:\"2020/12/pexels-jeshoots-4970-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"pexels-jeshoots-4970-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"pexels-jeshoots-4970-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-jeshoots-4970-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"pexels-jeshoots-4970-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"pexels-jeshoots-4970-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;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:{}}s:14:\"original_image\";s:24:\"pexels-jeshoots-4970.jpg\";}'),(3588,480,'_wp_attached_file','2020/12/pexels-pixabay-326576-1-scaled.jpg'),(3589,480,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1495;s:4:\"file\";s:42:\"2020/12/pexels-pixabay-326576-1-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-685x400.jpg\";s:5:\"width\";i:685;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"pexels-pixabay-326576-1-1370x800.jpg\";s:5:\"width\";i:1370;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-768x448.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"pexels-pixabay-326576-1-1536x897.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:897;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:37:\"pexels-pixabay-326576-1-2048x1196.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"pexels-pixabay-326576-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-600x350.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-600x350.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"pexels-pixabay-326576-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}s:14:\"original_image\";s:27:\"pexels-pixabay-326576-1.jpg\";}'),(3590,43,'_edit_lock','1607585311:1'),(3601,487,'_wp_attached_file','2020/12/lehenga-choli-modern-1.jpg'),(3602,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:508;s:6:\"height\";i:518;s:4:\"file\";s:34:\"2020/12/lehenga-choli-modern-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"lehenga-choli-modern-1-392x400.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"lehenga-choli-modern-1-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"lehenga-choli-modern-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:34:\"lehenga-choli-modern-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"lehenga-choli-modern-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"lehenga-choli-modern-1-100x100.jpg\";s:5:\"width\";i:100;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:\"1\";s:8:\"keywords\";a:0:{}}}'),(3603,488,'_wp_attached_file','2020/12/282ef5282280ee6b61dbf90f57012f45.jpg'),(3604,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:896;s:4:\"file\";s:44:\"2020/12/282ef5282280ee6b61dbf90f57012f45.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-335x400.jpg\";s:5:\"width\";i:335;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-670x800.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-600x717.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:717;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-600x717.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:717;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"282ef5282280ee6b61dbf90f57012f45-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3632,489,'_edit_lock','1607587430:1'),(3633,490,'_wp_attached_file','2020/12/0064642_impeccable-royal-blue-designer-lehenga_324.jpeg'),(3634,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:63:\"2020/12/0064642_impeccable-royal-blue-designer-lehenga_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"0064642_impeccable-royal-blue-designer-lehenga_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"0064642_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;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:63:\"0064642_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"0064642_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"0064642_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3635,491,'_wp_attached_file','2020/12/0064644_impeccable-royal-blue-designer-lehenga_324.jpeg'),(3636,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:63:\"2020/12/0064644_impeccable-royal-blue-designer-lehenga_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"0064644_impeccable-royal-blue-designer-lehenga_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"0064644_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;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:63:\"0064644_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"0064644_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"0064644_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3637,492,'_wp_attached_file','2020/12/0064645_impeccable-royal-blue-designer-lehenga_324.jpeg'),(3638,492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:63:\"2020/12/0064645_impeccable-royal-blue-designer-lehenga_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"0064645_impeccable-royal-blue-designer-lehenga_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"0064645_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;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:63:\"0064645_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"0064645_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"0064645_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3639,493,'_wp_attached_file','2020/12/0064646_impeccable-royal-blue-designer-lehenga_324.jpeg'),(3640,493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:63:\"2020/12/0064646_impeccable-royal-blue-designer-lehenga_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"0064646_impeccable-royal-blue-designer-lehenga_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"0064646_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;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:63:\"0064646_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"0064646_impeccable-royal-blue-designer-lehenga_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"0064646_impeccable-royal-blue-designer-lehenga_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3641,489,'_edit_last','1'),(3642,489,'_thumbnail_id','490'),(3643,489,'_wcmp_gtin_code',''),(3644,489,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3645,489,'_regular_price','8500'),(3646,489,'_sale_price','8000'),(3647,489,'total_sales','0'),(3648,489,'_tax_status','taxable'),(3649,489,'_tax_class',''),(3650,489,'_manage_stock','no'),(3651,489,'_backorders','no'),(3652,489,'_sold_individually','no'),(3653,489,'_virtual','no'),(3654,489,'_downloadable','no'),(3655,489,'_download_limit','-1'),(3656,489,'_download_expiry','-1'),(3657,489,'_stock',NULL),(3658,489,'_stock_status','instock'),(3659,489,'_wc_average_rating','0'),(3660,489,'_wc_review_count','0'),(3661,489,'_product_version','4.6.2'),(3662,489,'_price','8000'),(3663,489,'_product_image_gallery','491,492,493'),(3664,489,'_commission_per_product','0'),(3665,489,'_wcmp_cancallation_policy',''),(3666,489,'_wcmp_refund_policy',''),(3667,489,'_wcmp_shipping_policy',''),(3668,494,'_edit_lock','1607587575:1'),(3669,495,'_wp_attached_file','2020/12/0054982_glorious-grey-designer-bridal-gown_324.jpeg'),(3670,495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:59:\"2020/12/0054982_glorious-grey-designer-bridal-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"0054982_glorious-grey-designer-bridal-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"0054982_glorious-grey-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:59:\"0054982_glorious-grey-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:59:\"0054982_glorious-grey-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"0054982_glorious-grey-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3671,496,'_wp_attached_file','2020/12/0054983_glorious-grey-designer-bridal-gown_324.jpeg'),(3672,496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:59:\"2020/12/0054983_glorious-grey-designer-bridal-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"0054983_glorious-grey-designer-bridal-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"0054983_glorious-grey-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:59:\"0054983_glorious-grey-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:59:\"0054983_glorious-grey-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"0054983_glorious-grey-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3673,497,'_wp_attached_file','2020/12/0054984_glorious-grey-designer-bridal-gown_324.jpeg'),(3674,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:59:\"2020/12/0054984_glorious-grey-designer-bridal-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"0054984_glorious-grey-designer-bridal-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"0054984_glorious-grey-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:59:\"0054984_glorious-grey-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:59:\"0054984_glorious-grey-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"0054984_glorious-grey-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3675,494,'_edit_last','1'),(3676,494,'_thumbnail_id','495'),(3677,494,'_wcmp_gtin_code',''),(3678,494,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3679,494,'_regular_price','32000'),(3680,494,'_sale_price','29500'),(3681,494,'total_sales','0'),(3682,494,'_tax_status','taxable'),(3683,494,'_tax_class',''),(3684,494,'_manage_stock','no'),(3685,494,'_backorders','no'),(3686,494,'_sold_individually','no'),(3687,494,'_virtual','no'),(3688,494,'_downloadable','no'),(3689,494,'_download_limit','-1'),(3690,494,'_download_expiry','-1'),(3691,494,'_stock',NULL),(3692,494,'_stock_status','instock'),(3693,494,'_wc_average_rating','0'),(3694,494,'_wc_review_count','0'),(3695,494,'_product_version','4.6.2'),(3696,494,'_price','29500'),(3697,494,'_product_image_gallery','496,497'),(3698,494,'_commission_per_product','0'),(3699,494,'_wcmp_cancallation_policy',''),(3700,494,'_wcmp_refund_policy',''),(3701,494,'_wcmp_shipping_policy',''),(3705,498,'_edit_lock','1607588410:1'),(3706,499,'_wp_attached_file','2020/12/0071716_distinct-orange-maroon-designer-kurti_324.jpeg'),(3707,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:62:\"2020/12/0071716_distinct-orange-maroon-designer-kurti_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"0071716_distinct-orange-maroon-designer-kurti_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"0071716_distinct-orange-maroon-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;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:62:\"0071716_distinct-orange-maroon-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:62:\"0071716_distinct-orange-maroon-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"0071716_distinct-orange-maroon-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3708,500,'_wp_attached_file','2020/12/0071717_distinct-orange-maroon-designer-kurti_324.jpeg'),(3709,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:62:\"2020/12/0071717_distinct-orange-maroon-designer-kurti_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"0071717_distinct-orange-maroon-designer-kurti_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"0071717_distinct-orange-maroon-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;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:62:\"0071717_distinct-orange-maroon-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:62:\"0071717_distinct-orange-maroon-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"0071717_distinct-orange-maroon-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3710,498,'_edit_last','1'),(3711,498,'_thumbnail_id','499'),(3712,498,'_wcmp_gtin_code',''),(3713,498,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3714,498,'_regular_price','2750'),(3715,498,'_sale_price','2500'),(3716,498,'total_sales','0'),(3717,498,'_tax_status','taxable'),(3718,498,'_tax_class',''),(3719,498,'_manage_stock','no'),(3720,498,'_backorders','no'),(3721,498,'_sold_individually','no'),(3722,498,'_virtual','no'),(3723,498,'_downloadable','no'),(3724,498,'_download_limit','-1'),(3725,498,'_download_expiry','-1'),(3726,498,'_stock',NULL),(3727,498,'_stock_status','instock'),(3728,498,'_wc_average_rating','0'),(3729,498,'_wc_review_count','0'),(3730,498,'_product_version','4.6.2'),(3731,498,'_price','2500'),(3732,498,'_product_image_gallery','500'),(3733,498,'_commission_per_product','0'),(3734,498,'_wcmp_cancallation_policy',''),(3735,498,'_wcmp_refund_policy',''),(3736,498,'_wcmp_shipping_policy',''),(3737,501,'_edit_lock','1607588674:1'),(3738,502,'_wp_attached_file','2020/12/0071705_fabulous-white-red-designer-kurti_324.jpeg'),(3739,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:58:\"2020/12/0071705_fabulous-white-red-designer-kurti_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"0071705_fabulous-white-red-designer-kurti_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:58:\"0071705_fabulous-white-red-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;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:58:\"0071705_fabulous-white-red-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:58:\"0071705_fabulous-white-red-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:58:\"0071705_fabulous-white-red-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3740,503,'_wp_attached_file','2020/12/0071704_fabulous-white-red-designer-kurti_324.jpeg'),(3741,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:58:\"2020/12/0071704_fabulous-white-red-designer-kurti_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"0071704_fabulous-white-red-designer-kurti_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:58:\"0071704_fabulous-white-red-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;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:58:\"0071704_fabulous-white-red-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:58:\"0071704_fabulous-white-red-designer-kurti_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:58:\"0071704_fabulous-white-red-designer-kurti_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3742,501,'_edit_last','1'),(3743,501,'_thumbnail_id','503'),(3744,501,'_wcmp_gtin_code',''),(3745,501,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3746,501,'_regular_price','3200'),(3747,501,'total_sales','0'),(3748,501,'_tax_status','taxable'),(3749,501,'_tax_class',''),(3750,501,'_manage_stock','no'),(3751,501,'_backorders','no'),(3752,501,'_sold_individually','no'),(3753,501,'_virtual','no'),(3754,501,'_downloadable','no'),(3755,501,'_download_limit','-1'),(3756,501,'_download_expiry','-1'),(3757,501,'_stock',NULL),(3758,501,'_stock_status','instock'),(3759,501,'_wc_average_rating','0'),(3760,501,'_wc_review_count','0'),(3761,501,'_product_version','4.6.2'),(3762,501,'_price','3200'),(3763,501,'_product_image_gallery','502'),(3764,501,'_commission_per_product','0'),(3765,501,'_wcmp_cancallation_policy',''),(3766,501,'_wcmp_refund_policy',''),(3767,501,'_wcmp_shipping_policy',''),(3768,504,'_edit_lock','1607589287:1'),(3769,505,'_wp_attached_file','2020/12/0058163_peacock-printed-grey-designer-palazzos_324.jpeg'),(3770,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:63:\"2020/12/0058163_peacock-printed-grey-designer-palazzos_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"0058163_peacock-printed-grey-designer-palazzos_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"0058163_peacock-printed-grey-designer-palazzos_324-216x300.jpeg\";s:5:\"width\";i:216;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:63:\"0058163_peacock-printed-grey-designer-palazzos_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"0058163_peacock-printed-grey-designer-palazzos_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"0058163_peacock-printed-grey-designer-palazzos_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3771,506,'_wp_attached_file','2020/12/0058162_peacock-printed-grey-designer-palazzos_324.jpeg'),(3772,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:63:\"2020/12/0058162_peacock-printed-grey-designer-palazzos_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"0058162_peacock-printed-grey-designer-palazzos_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"0058162_peacock-printed-grey-designer-palazzos_324-216x300.jpeg\";s:5:\"width\";i:216;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:63:\"0058162_peacock-printed-grey-designer-palazzos_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"0058162_peacock-printed-grey-designer-palazzos_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"0058162_peacock-printed-grey-designer-palazzos_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3773,504,'_edit_last','1'),(3774,504,'_thumbnail_id','505'),(3775,504,'_wcmp_gtin_code',''),(3776,504,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3777,504,'_regular_price','1900'),(3778,504,'total_sales','0'),(3779,504,'_tax_status','taxable'),(3780,504,'_tax_class',''),(3781,504,'_manage_stock','no'),(3782,504,'_backorders','no'),(3783,504,'_sold_individually','no'),(3784,504,'_virtual','no'),(3785,504,'_downloadable','no'),(3786,504,'_download_limit','-1'),(3787,504,'_download_expiry','-1'),(3788,504,'_stock',NULL),(3789,504,'_stock_status','instock'),(3790,504,'_wc_average_rating','0'),(3791,504,'_wc_review_count','0'),(3792,504,'_product_version','4.6.2'),(3793,504,'_price','1900'),(3794,504,'_product_image_gallery','506'),(3795,504,'_commission_per_product','0'),(3796,504,'_wcmp_cancallation_policy',''),(3797,504,'_wcmp_refund_policy',''),(3798,504,'_wcmp_shipping_policy',''),(3800,508,'_edit_lock','1607589677:1'),(3801,509,'_wp_attached_file','2020/12/0058116_classy-beige-designer-flared-palazzo_324.jpeg'),(3802,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2020/12/0058116_classy-beige-designer-flared-palazzo_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0058116_classy-beige-designer-flared-palazzo_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0058116_classy-beige-designer-flared-palazzo_324-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0058116_classy-beige-designer-flared-palazzo_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0058116_classy-beige-designer-flared-palazzo_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0058116_classy-beige-designer-flared-palazzo_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3803,510,'_wp_attached_file','2020/12/0058117_classy-beige-designer-flared-palazzo_324.jpeg'),(3804,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2020/12/0058117_classy-beige-designer-flared-palazzo_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0058117_classy-beige-designer-flared-palazzo_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0058117_classy-beige-designer-flared-palazzo_324-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0058117_classy-beige-designer-flared-palazzo_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0058117_classy-beige-designer-flared-palazzo_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0058117_classy-beige-designer-flared-palazzo_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3805,508,'_edit_last','1'),(3806,508,'_thumbnail_id','509'),(3807,508,'_wcmp_gtin_code',''),(3808,508,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3809,508,'_regular_price','1300'),(3810,508,'total_sales','0'),(3811,508,'_tax_status','taxable'),(3812,508,'_tax_class',''),(3813,508,'_manage_stock','no'),(3814,508,'_backorders','no'),(3815,508,'_sold_individually','no'),(3816,508,'_virtual','no'),(3817,508,'_downloadable','no'),(3818,508,'_download_limit','-1'),(3819,508,'_download_expiry','-1'),(3820,508,'_stock',NULL),(3821,508,'_stock_status','instock'),(3822,508,'_wc_average_rating','0'),(3823,508,'_wc_review_count','0'),(3824,508,'_product_version','4.6.2'),(3825,508,'_price','1300'),(3826,508,'_product_image_gallery','510'),(3827,508,'_commission_per_product','0'),(3828,508,'_wcmp_cancallation_policy',''),(3829,508,'_wcmp_refund_policy',''),(3830,508,'_wcmp_shipping_policy',''),(3831,511,'_edit_lock','1607589918:1'),(3832,512,'_wp_attached_file','2020/12/0074064_stunning-pink-gold-half-half-saree_324.jpeg'),(3833,512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:59:\"2020/12/0074064_stunning-pink-gold-half-half-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"0074064_stunning-pink-gold-half-half-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"0074064_stunning-pink-gold-half-half-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:59:\"0074064_stunning-pink-gold-half-half-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:59:\"0074064_stunning-pink-gold-half-half-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"0074064_stunning-pink-gold-half-half-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3834,513,'_wp_attached_file','2020/12/0074065_stunning-pink-gold-half-half-saree_324.jpeg'),(3835,513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:59:\"2020/12/0074065_stunning-pink-gold-half-half-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"0074065_stunning-pink-gold-half-half-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"0074065_stunning-pink-gold-half-half-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:59:\"0074065_stunning-pink-gold-half-half-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:59:\"0074065_stunning-pink-gold-half-half-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"0074065_stunning-pink-gold-half-half-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3836,511,'_edit_last','1'),(3837,511,'_thumbnail_id','512'),(3838,511,'_wcmp_gtin_code',''),(3839,511,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3840,511,'_regular_price','5500'),(3841,511,'total_sales','0'),(3842,511,'_tax_status','taxable'),(3843,511,'_tax_class',''),(3844,511,'_manage_stock','no'),(3845,511,'_backorders','no'),(3846,511,'_sold_individually','no'),(3847,511,'_virtual','no'),(3848,511,'_downloadable','no'),(3849,511,'_download_limit','-1'),(3850,511,'_download_expiry','-1'),(3851,511,'_stock',NULL),(3852,511,'_stock_status','instock'),(3853,511,'_wc_average_rating','0'),(3854,511,'_wc_review_count','0'),(3855,511,'_product_version','4.6.2'),(3856,511,'_price','5500'),(3857,511,'_product_image_gallery','513'),(3858,511,'_commission_per_product','0'),(3859,511,'_wcmp_cancallation_policy',''),(3860,511,'_wcmp_refund_policy',''),(3861,511,'_wcmp_shipping_policy',''),(3862,514,'_edit_lock','1607590229:1'),(3863,515,'_wp_attached_file','2020/12/0079144_adorning-orange-colored-banarasi-silk-saree_324.jpeg'),(3864,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:68:\"2020/12/0079144_adorning-orange-colored-banarasi-silk-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"0079144_adorning-orange-colored-banarasi-silk-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"0079144_adorning-orange-colored-banarasi-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:68:\"0079144_adorning-orange-colored-banarasi-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"0079144_adorning-orange-colored-banarasi-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"0079144_adorning-orange-colored-banarasi-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3865,516,'_wp_attached_file','2020/12/0079145_adorning-orange-colored-banarasi-silk-saree_324.jpeg'),(3866,516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:68:\"2020/12/0079145_adorning-orange-colored-banarasi-silk-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"0079145_adorning-orange-colored-banarasi-silk-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"0079145_adorning-orange-colored-banarasi-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:68:\"0079145_adorning-orange-colored-banarasi-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"0079145_adorning-orange-colored-banarasi-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"0079145_adorning-orange-colored-banarasi-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3867,517,'_wp_attached_file','2020/12/0079146_adorning-orange-colored-banarasi-silk-saree_324.jpeg'),(3868,517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:68:\"2020/12/0079146_adorning-orange-colored-banarasi-silk-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"0079146_adorning-orange-colored-banarasi-silk-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"0079146_adorning-orange-colored-banarasi-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:68:\"0079146_adorning-orange-colored-banarasi-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:68:\"0079146_adorning-orange-colored-banarasi-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:68:\"0079146_adorning-orange-colored-banarasi-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3869,514,'_edit_last','1'),(3870,514,'_thumbnail_id','515'),(3871,514,'_wcmp_gtin_code',''),(3872,514,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3873,514,'_regular_price','6000'),(3874,514,'_sale_price','5650'),(3875,514,'total_sales','0'),(3876,514,'_tax_status','taxable'),(3877,514,'_tax_class',''),(3878,514,'_manage_stock','no'),(3879,514,'_backorders','no'),(3880,514,'_sold_individually','no'),(3881,514,'_virtual','no'),(3882,514,'_downloadable','no'),(3883,514,'_download_limit','-1'),(3884,514,'_download_expiry','-1'),(3885,514,'_stock',NULL),(3886,514,'_stock_status','instock'),(3887,514,'_wc_average_rating','0'),(3888,514,'_wc_review_count','0'),(3889,514,'_product_version','4.6.2'),(3890,514,'_price','5650'),(3891,514,'_product_image_gallery','516,517'),(3892,514,'_commission_per_product','0'),(3893,514,'_wcmp_cancallation_policy',''),(3894,514,'_wcmp_refund_policy',''),(3895,514,'_wcmp_shipping_policy',''),(3896,518,'_edit_lock','1607590766:1'),(3897,519,'_wp_attached_file','2020/12/0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg'),(3898,519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:96:\"2020/12/0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:96:\"0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:96:\"0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x300.jpeg\";s:5:\"width\";i:216;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:96:\"0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:96:\"0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:96:\"0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3899,520,'_wp_attached_file','2020/12/0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg'),(3900,520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:96:\"2020/12/0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:96:\"0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:96:\"0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x300.jpeg\";s:5:\"width\";i:216;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:96:\"0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:96:\"0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:96:\"0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3901,521,'_wp_attached_file','2020/12/0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg'),(3902,521,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:96:\"2020/12/0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:96:\"0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:96:\"0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x300.jpeg\";s:5:\"width\";i:216;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:96:\"0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:96:\"0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:96:\"0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3903,518,'_edit_last','1'),(3904,518,'_thumbnail_id','519'),(3905,518,'_wcmp_gtin_code',''),(3906,518,'wc_productdata_options','a:1:{i:0;a:10:{s:14:\"_product_block\";s:1:\"0\";s:12:\"_top_content\";s:0:\"\";s:15:\"_bottom_content\";s:0:\"\";s:11:\"_bubble_new\";s:0:\"\";s:12:\"_bubble_text\";s:0:\"\";s:17:\"_custom_tab_title\";s:0:\"\";s:11:\"_custom_tab\";s:0:\"\";s:14:\"_product_video\";s:0:\"\";s:19:\"_product_video_size\";s:0:\"\";s:24:\"_product_video_placement\";s:0:\"\";}}'),(3907,518,'_regular_price','4600'),(3908,518,'total_sales','0'),(3909,518,'_tax_status','taxable'),(3910,518,'_tax_class',''),(3911,518,'_manage_stock','no'),(3912,518,'_backorders','no'),(3913,518,'_sold_individually','no'),(3914,518,'_virtual','no'),(3915,518,'_downloadable','no'),(3916,518,'_download_limit','-1'),(3917,518,'_download_expiry','-1'),(3918,518,'_stock',NULL),(3919,518,'_stock_status','instock'),(3920,518,'_wc_average_rating','0'),(3921,518,'_wc_review_count','0'),(3922,518,'_product_version','4.6.2'),(3923,518,'_price','4600'),(3924,518,'_product_image_gallery','520,521'),(3925,518,'_commission_per_product','0'),(3926,518,'_wcmp_cancallation_policy',''),(3927,518,'_wcmp_refund_policy',''),(3928,518,'_wcmp_shipping_policy',''),(3929,522,'_wp_attached_file','2014/08/0093780_subtle-peach-colored-designer-saree_324.jpeg'),(3930,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:60:\"2014/08/0093780_subtle-peach-colored-designer-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"0093780_subtle-peach-colored-designer-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"0093780_subtle-peach-colored-designer-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:60:\"0093780_subtle-peach-colored-designer-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:60:\"0093780_subtle-peach-colored-designer-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:60:\"0093780_subtle-peach-colored-designer-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3931,523,'_wp_attached_file','2014/08/0093781_subtle-peach-colored-designer-saree_324.jpeg'),(3932,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:60:\"2014/08/0093781_subtle-peach-colored-designer-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"0093781_subtle-peach-colored-designer-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"0093781_subtle-peach-colored-designer-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:60:\"0093781_subtle-peach-colored-designer-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:60:\"0093781_subtle-peach-colored-designer-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:60:\"0093781_subtle-peach-colored-designer-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3933,524,'_wp_attached_file','2014/08/0093782_subtle-peach-colored-designer-saree_324.jpeg'),(3934,524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:60:\"2014/08/0093782_subtle-peach-colored-designer-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"0093782_subtle-peach-colored-designer-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"0093782_subtle-peach-colored-designer-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:60:\"0093782_subtle-peach-colored-designer-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:60:\"0093782_subtle-peach-colored-designer-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:60:\"0093782_subtle-peach-colored-designer-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3935,527,'_wp_attached_file','2014/08/0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg'),(3936,527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:77:\"2014/08/0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:77:\"0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:77:\"0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:77:\"0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:77:\"0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:77:\"0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3937,528,'_wp_attached_file','2014/08/0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg'),(3938,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:77:\"2014/08/0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:77:\"0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:77:\"0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:77:\"0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:77:\"0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:77:\"0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3939,529,'_wp_attached_file','2014/08/0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg'),(3940,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:77:\"2014/08/0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:77:\"0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:77:\"0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:77:\"0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:77:\"0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:77:\"0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3941,530,'_wp_attached_file','2014/08/0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg'),(3942,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:77:\"2014/08/0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:77:\"0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:77:\"0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;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:77:\"0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:77:\"0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:77:\"0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3943,531,'_wp_attached_file','2013/08/0054982_glorious-grey-designer-bridal-gown_324-1.jpeg'),(3944,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2013/08/0054982_glorious-grey-designer-bridal-gown_324-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0054982_glorious-grey-designer-bridal-gown_324-1-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0054982_glorious-grey-designer-bridal-gown_324-1-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0054982_glorious-grey-designer-bridal-gown_324-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0054982_glorious-grey-designer-bridal-gown_324-1-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0054982_glorious-grey-designer-bridal-gown_324-1-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3945,532,'_wp_attached_file','2013/08/0054982_glorious-grey-designer-bridal-gown_324-1-1.jpeg'),(3946,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:63:\"2013/08/0054982_glorious-grey-designer-bridal-gown_324-1-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"0054982_glorious-grey-designer-bridal-gown_324-1-1-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:63:\"0054982_glorious-grey-designer-bridal-gown_324-1-1-216x300.jpeg\";s:5:\"width\";i:216;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:63:\"0054982_glorious-grey-designer-bridal-gown_324-1-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:63:\"0054982_glorious-grey-designer-bridal-gown_324-1-1-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:63:\"0054982_glorious-grey-designer-bridal-gown_324-1-1-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3947,533,'_wp_attached_file','2013/08/0054983_glorious-grey-designer-bridal-gown_324-1.jpeg'),(3948,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2013/08/0054983_glorious-grey-designer-bridal-gown_324-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0054983_glorious-grey-designer-bridal-gown_324-1-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0054983_glorious-grey-designer-bridal-gown_324-1-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0054983_glorious-grey-designer-bridal-gown_324-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0054983_glorious-grey-designer-bridal-gown_324-1-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0054983_glorious-grey-designer-bridal-gown_324-1-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3949,534,'_wp_attached_file','2013/08/0054984_glorious-grey-designer-bridal-gown_324-1.jpeg'),(3950,534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2013/08/0054984_glorious-grey-designer-bridal-gown_324-1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0054984_glorious-grey-designer-bridal-gown_324-1-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0054984_glorious-grey-designer-bridal-gown_324-1-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0054984_glorious-grey-designer-bridal-gown_324-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0054984_glorious-grey-designer-bridal-gown_324-1-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0054984_glorious-grey-designer-bridal-gown_324-1-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3951,535,'_wp_attached_file','2013/08/0054949_sensational-mauve-pink-designer-gown_324.jpeg'),(3952,535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2013/08/0054949_sensational-mauve-pink-designer-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0054949_sensational-mauve-pink-designer-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0054949_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0054949_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0054949_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0054949_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3953,536,'_wp_attached_file','2013/08/0054952_sensational-mauve-pink-designer-gown_324.jpeg'),(3954,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2013/08/0054952_sensational-mauve-pink-designer-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0054952_sensational-mauve-pink-designer-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0054952_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0054952_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0054952_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0054952_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3955,537,'_wp_attached_file','2013/08/0054951_sensational-mauve-pink-designer-gown_324.jpeg'),(3956,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2013/08/0054951_sensational-mauve-pink-designer-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0054951_sensational-mauve-pink-designer-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0054951_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0054951_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0054951_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0054951_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3957,538,'_wp_attached_file','2013/08/0054950_sensational-mauve-pink-designer-gown_324.jpeg'),(3958,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:61:\"2013/08/0054950_sensational-mauve-pink-designer-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0054950_sensational-mauve-pink-designer-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:61:\"0054950_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:61:\"0054950_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:61:\"0054950_sensational-mauve-pink-designer-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:61:\"0054950_sensational-mauve-pink-designer-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3959,539,'_wp_attached_file','2013/08/0059165_mesmerizing-pink-designer-bridal-gown_324.jpeg'),(3960,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:62:\"2013/08/0059165_mesmerizing-pink-designer-bridal-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"0059165_mesmerizing-pink-designer-bridal-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"0059165_mesmerizing-pink-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:62:\"0059165_mesmerizing-pink-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:62:\"0059165_mesmerizing-pink-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"0059165_mesmerizing-pink-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3961,540,'_wp_attached_file','2013/08/0059167_mesmerizing-pink-designer-bridal-gown_324.jpeg'),(3962,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:62:\"2013/08/0059167_mesmerizing-pink-designer-bridal-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"0059167_mesmerizing-pink-designer-bridal-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"0059167_mesmerizing-pink-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:62:\"0059167_mesmerizing-pink-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:62:\"0059167_mesmerizing-pink-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"0059167_mesmerizing-pink-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3963,541,'_wp_attached_file','2013/08/0059166_mesmerizing-pink-designer-bridal-gown_324.jpeg'),(3964,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:62:\"2013/08/0059166_mesmerizing-pink-designer-bridal-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"0059166_mesmerizing-pink-designer-bridal-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"0059166_mesmerizing-pink-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:62:\"0059166_mesmerizing-pink-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:62:\"0059166_mesmerizing-pink-designer-bridal-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"0059166_mesmerizing-pink-designer-bridal-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3965,542,'_wp_attached_file','2013/08/0082232_delightful-blue-colored-partywear-net-gown_324.jpeg'),(3966,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:67:\"2013/08/0082232_delightful-blue-colored-partywear-net-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"0082232_delightful-blue-colored-partywear-net-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:67:\"0082232_delightful-blue-colored-partywear-net-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:67:\"0082232_delightful-blue-colored-partywear-net-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:67:\"0082232_delightful-blue-colored-partywear-net-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:67:\"0082232_delightful-blue-colored-partywear-net-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3967,543,'_wp_attached_file','2013/08/0082233_delightful-blue-colored-partywear-net-gown_324.jpeg'),(3968,543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:67:\"2013/08/0082233_delightful-blue-colored-partywear-net-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"0082233_delightful-blue-colored-partywear-net-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:67:\"0082233_delightful-blue-colored-partywear-net-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:67:\"0082233_delightful-blue-colored-partywear-net-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:67:\"0082233_delightful-blue-colored-partywear-net-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:67:\"0082233_delightful-blue-colored-partywear-net-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3969,544,'_wp_attached_file','2013/08/0079092_awesome-maroon-colored-designer-embroidered-gown_324.jpeg'),(3970,544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:73:\"2013/08/0079092_awesome-maroon-colored-designer-embroidered-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"0079092_awesome-maroon-colored-designer-embroidered-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:73:\"0079092_awesome-maroon-colored-designer-embroidered-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:73:\"0079092_awesome-maroon-colored-designer-embroidered-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:73:\"0079092_awesome-maroon-colored-designer-embroidered-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:73:\"0079092_awesome-maroon-colored-designer-embroidered-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3971,545,'_wp_attached_file','2013/08/0079093_awesome-maroon-colored-designer-embroidered-gown_324.jpeg'),(3972,545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:324;s:4:\"file\";s:73:\"2013/08/0079093_awesome-maroon-colored-designer-embroidered-gown_324.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"0079093_awesome-maroon-colored-designer-embroidered-gown_324-216x280.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:73:\"0079093_awesome-maroon-colored-designer-embroidered-gown_324-216x300.jpeg\";s:5:\"width\";i:216;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:73:\"0079093_awesome-maroon-colored-designer-embroidered-gown_324-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:73:\"0079093_awesome-maroon-colored-designer-embroidered-gown_324-216x300.jpeg\";s:5:\"width\";i:216;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:73:\"0079093_awesome-maroon-colored-designer-embroidered-gown_324-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(3973,546,'_menu_item_type','post_type'),(3974,546,'_menu_item_menu_item_parent','0'),(3975,546,'_menu_item_object_id','27'),(3976,546,'_menu_item_object','page'),(3977,546,'_menu_item_target',''),(3978,546,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3979,546,'_menu_item_xfn',''),(3980,546,'_menu_item_url',''),(3981,546,'_menu_item_orphaned','1607602883'),(3982,547,'_menu_item_type','custom'),(3983,547,'_menu_item_menu_item_parent','0'),(3984,547,'_menu_item_object_id','547'),(3985,547,'_menu_item_object','custom'),(3986,547,'_menu_item_target',''),(3987,547,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3988,547,'_menu_item_xfn',''),(3989,547,'_menu_item_url','#'),(3991,88,'_edit_last','1'),(3997,554,'_wp_attached_file','2020/12/marlins-wardrobe-ernakulam-1luz4dwsav.jpg'),(3998,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:49:\"2020/12/marlins-wardrobe-ernakulam-1luz4dwsav.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-533x400.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"marlins-wardrobe-ernakulam-1luz4dwsav-1067x800.jpg\";s:5:\"width\";i:1067;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"marlins-wardrobe-ernakulam-1luz4dwsav-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-1luz4dwsav-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(3999,555,'_wp_attached_file','2020/12/marlins-wardrobe-ernakulam-0vhxbhdwep.jpg'),(4000,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:49:\"2020/12/marlins-wardrobe-ernakulam-0vhxbhdwep.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-533x400.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-0vhxbhdwep-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(4001,556,'_wp_attached_file','2020/12/marlins-wardrobe-ernakulam-lbbfkejaye.jpg'),(4002,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:49:\"2020/12/marlins-wardrobe-ernakulam-lbbfkejaye.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-533x400.jpg\";s:5:\"width\";i:533;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"marlins-wardrobe-ernakulam-lbbfkejaye-1067x800.jpg\";s:5:\"width\";i:1067;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-280x280.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"marlins-wardrobe-ernakulam-lbbfkejaye-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-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:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"marlins-wardrobe-ernakulam-lbbfkejaye-100x100.jpg\";s:5:\"width\";i:100;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:{}}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2020-11-09 14:43:33','2020-11-09 14:43:33','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2020-11-09 14:43:33','2020-11-09 14:43:33','',0,'http://demoweblinks.in/marlins/?p=1',0,'post','',1),(2,1,'2020-11-09 14:43:33','2020-11-09 14:43:33','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://demoweblinks.in/marlins/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2020-11-09 14:43:33','2020-11-09 14:43:33','',0,'http://demoweblinks.in/marlins/?page_id=2',0,'page','',0),(3,1,'2020-11-09 14:43:33','2020-11-09 14:43:33','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://demoweblinks.in/marlins.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2020-11-09 14:43:33','2020-11-09 14:43:33','',0,'http://demoweblinks.in/marlins/?page_id=3',0,'page','',0),(6,1,'2020-11-09 14:47:53','2020-11-09 14:47:53','<label> Your name\r\n    [text* your-name] </label>\r\n\r\n<label> Your email\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text* your-subject] </label>\r\n\r\n<label> Your message (optional)\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@demoweblinks.in>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2020-12-11 03:49:28','2020-12-11 03:49:28','',0,'http://demoweblinks.in/marlins/?post_type=wpcf7_contact_form&#038;p=6',0,'wpcf7_contact_form','',0),(7,1,'2020-11-09 14:48:30','2020-11-09 14:48:30','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2020-11-09 14:48:30','2020-11-09 14:48:30','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/woocommerce-placeholder.png',0,'attachment','image/png',0),(8,1,'2020-11-09 14:48:31','2020-11-09 14:48:31','','Shop','','publish','closed','closed','','shop','','','2020-11-09 14:48:31','2020-11-09 14:48:31','',0,'http://demoweblinks.in/marlins/shop/',0,'page','',0),(9,1,'2020-11-09 14:48:31','2020-11-09 14:48:31','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2020-11-09 14:48:31','2020-11-09 14:48:31','',0,'http://demoweblinks.in/marlins/cart/',0,'page','',0),(10,1,'2020-11-09 14:48:31','2020-11-09 14:48:31','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2020-11-09 14:48:31','2020-11-09 14:48:31','',0,'http://demoweblinks.in/marlins/checkout/',0,'page','',0),(11,1,'2020-11-09 14:48:31','2020-11-09 14:48:31','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2020-11-09 14:48:31','2020-11-09 14:48:31','',0,'http://demoweblinks.in/marlins/my-account/',0,'page','',0),(12,1,'2016-08-29 14:03:10','2016-08-29 14:03:10','<div class=\"form-flat\">\r\n[text* your-name placeholder \"Your Name (required)\"]\r\n\r\n[email* your-email placeholder \"Your Email (required)\"] </p>\r\n\r\n[textarea your-message placeholder \"Your Message (required)\"] </p>\r\n\r\n[submit class:button primary \"Submit\"]\r\n</div>\nFlatsome \"[your-subject]\"\n[your-name] <wordpress@flatsome.dev>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\nemail@mail.com\nReply-To: [your-email]\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Form Flat','','publish','closed','closed','','contact-form-outline','','','2016-08-29 14:03:10','2016-08-29 14:03:10','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&amp;p=8979',0,'wpcf7_contact_form','',0),(13,1,'2016-08-25 13:56:17','2016-08-25 13:56:17','<div class=\"form-flat\">\r\n	[email* your-email placeholder \"Your Email (required)\"]\r\n\r\n	[submit class:button primary \"Sign Up\"]\r\n</div>\nNew signup!\nFlatsome Theme <mail@flatsome.dev>\nNew signup: [your-email]\n[your-email]\n\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter Vertical','','publish','closed','closed','','newsletter-horizontal','','','2016-08-25 13:56:17','2016-08-25 13:56:17','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&amp;p=8787',0,'wpcf7_contact_form','',0),(14,1,'2016-04-04 11:38:11','2016-04-04 11:38:11','<div class=\"flex-row form-flat medium-flex-wrap\">\r\n<div class=\"flex-col flex-grow\">\r\n	[email* your-email placeholder \"Your Email (required)\"]\r\n</div>\r\n<div class=\"flex-col ml-half\">\r\n	[submit class:button primary \"Sign Up\"]\r\n</div>\r\n</div>\nFlatsome \"[your-subject]\"\n[your-name] <wordpress@flatsome.dev>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\nemail@mail.com\n\n\n\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Newsletter Horizontal','','publish','closed','closed','','contact-form','','','2016-04-04 11:38:11','2016-04-04 11:38:11','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&amp;p=7042',0,'wpcf7_contact_form','',0),(15,1,'2016-04-04 11:33:38','2016-04-04 11:33:38','<label>Your Name (required)</label>\r\n[text* your-name]\r\n\r\n<label>Your Email (required)</label>\r\n[email*  your-email] </p>\r\n\r\n<label>Your Message (required)</label>\r\n[textarea your-message] </p>\r\n\r\n[submit class:button primary \"Submit\"]\nNew Message!\nmail@flatsome.dev\nMessage:\r\n[your-message]\nemail@mail.com\n\n\n1\n\n\nFlatsome \"[your-subject]\"\nFlatsome <wordpress@flatsome.dev>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Flatsome (http://flatsome.dev)\n[your-email]\nReply-To: email@mail.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nYour entered code is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form','','publish','closed','closed','','contact-form-1-2','','','2016-04-04 11:33:38','2016-04-04 11:33:38','',0,'http://flatsome.dev/?post_type=wpcf7_contact_form&amp;p=7041',0,'wpcf7_contact_form','',0),(16,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Dummy Image 1','','inherit','open','closed','','dummy-image-1','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2016/08/dummy-1.jpg',0,'attachment','image/jpeg',0),(17,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Dummy Image 2','','inherit','open','closed','','dummy-image-2','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2016/08/dummy-2.jpg',0,'attachment','image/jpeg',0),(18,1,'2016-08-09 13:43:25','2016-08-09 13:43:25','','Product Dummy Image','','inherit','open','closed','','prod-dummy-image-1','','','2016-08-09 13:43:25','2016-08-09 13:43:25','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2016/08/dummy-prod-1.jpg',0,'attachment','image/jpeg',0),(19,1,'2015-11-19 10:26:13','2015-11-19 10:26:13','<p class=\"lead\">Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</blockquote>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','Welcome to Flatsome','','publish','open','open','','welcome-to-flatsome','','','2015-11-19 10:26:13','2015-11-19 10:26:13','',0,'http://flatsome.dev/?p=1',0,'post','',0),(20,1,'2015-10-13 21:13:41','2015-10-13 21:13:41','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\r\n\r\n[gallery columns=\"4\" link=\"file\" size=\"large\" ids=\"\"]','Just another post with A Gallery','','publish','open','open','','velkommen-til-bloggen-min','','','2015-10-13 21:13:41','2015-10-13 21:13:41','',0,'http://localhost:8888/flatsome-next/?p=5',0,'post','',0),(21,1,'2015-10-13 19:28:03','2015-10-13 19:28:03','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\r\n\r\nTypi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus\r\n','A Simple Blog Post','','publish','open','open','','a-simple-blog-post','','','2015-10-13 19:28:03','2015-10-13 19:28:03','',0,'http://localhost:8888/flatsome-next/?p=1',0,'post','',0),(22,1,'2014-01-01 16:47:44','2014-01-01 16:47:44','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus.\r\n\r\nNeque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.','A Video Blog Post','','publish','open','open','','a-video-blog-post','','','2014-01-01 16:47:44','2014-01-01 16:47:44','',0,'http://localhost:8888/test/?p=483',0,'post','',0),(23,1,'2013-12-30 16:50:40','2013-12-30 16:50:40','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\r\n\r\n[gallery link=\"file\" columns=\"4\" ids=\"\"]\r\n\r\nNam at nisi risus. Proin pretium, dolor vel venenatis suscipit, dui nunc tincidunt lectus, ac placerat felis dui in justo. Aliquam orci velit, facilisis in facilisis non, scelerisque in massa. Integer scelerisque odio nec eros sodales laoreet. Sed sed odio tellus. In tristique felis ac facilisis tempor. Nunc non enim in dolor congue pulvinar sed sed nisi. Mauris viverra convallis feugiat. Nam at mauris laoreet, dictum leo at, tristique mi. Aenean pellentesque justo vel diam elementum iaculis. Nam lobortis cursus vestibulum. Nulla feugiat mauris felis, auctor pretium dui euismod in.\r\n\r\nVestibulum et enim vitae lectus malesuada aliquam vitae non mi. Suspendisse tellus eros, ultricies nec lorem feugiat, pharetra auctor dui. Suspendisse placerat neque leo, nec commodo eros ultrices vel. Fusce elit libero, aliquam quis libero non, consectetur accumsan est. Proin tempus mauris id cursus posuere. Sed et rutrum felis, vel aliquet ante. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque neque tellus, condimentum non eros non, consectetur auctor lacus. Curabitur malesuada odio eget elit egestas porttitor.','Just a cool blog post with Images','','publish','open','open','','just-a-cool-blog-post-with-images','','','2013-12-30 16:50:40','2013-12-30 16:50:40','',0,'http://localhost:8888/test/?p=485',0,'post','',0),(24,1,'2013-12-16 20:32:19','2013-12-16 20:32:19','Lorem ipsum dolor sit amet, consectetur adipiscing elit. In sed vulputate massa. Fusce ante magna, iaculis ut purus ut, facilisis ultrices nibh. Quisque commodo nunc eget tortor dapibus, et tristique magna convallis. Phasellus egestas nunc eu venenatis vehicula. Phasellus et magna nulla. Proin ante nunc, mollis a lectus ac, volutpat placerat ante. Vestibulum sit amet magna sit amet nunc faucibus mollis. Aliquam vel lacinia purus, id tristique ipsum. Quisque vitae nibh ut libero vulputate ornare quis in risus. Nam sodales justo orci, a bibendum risus tincidunt id. Etiam hendrerit, metus in volutpat tempus, neque libero viverra lorem, ac tristique orci augue eu metus. Aenean elementum nisi vitae justo adipiscing gravida sit amet et risus. Suspendisse dapibus elementum quam, vel semper mi tempus ac.\n\n[gallery link=\"file\" columns=\"4\" ids=\"\"]\n\nNam at nisi risus. Proin pretium, dolor vel venenatis suscipit, dui nunc tincidunt lectus, ac placerat felis dui in justo. Aliquam orci velit, facilisis in facilisis non, scelerisque in massa. Integer scelerisque odio nec eros sodales laoreet. Sed sed odio tellus. In tristique felis ac facilisis tempor. Nunc non enim in dolor congue pulvinar sed sed nisi. Mauris viverra convallis feugiat. Nam at mauris laoreet, dictum leo at, tristique mi. Aenean pellentesque justo vel diam elementum iaculis. Nam lobortis cursus vestibulum. Nulla feugiat mauris felis, auctor pretium dui euismod in.\n\nVestibulum et enim vitae lectus malesuada aliquam vitae non mi. Suspendisse tellus eros, ultricies nec lorem feugiat, pharetra auctor dui. Suspendisse placerat neque leo, nec commodo eros ultrices vel. Fusce elit libero, aliquam quis libero non, consectetur accumsan est. Proin tempus mauris id cursus posuere. Sed et rutrum felis, vel aliquet ante. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque neque tellus, condimentum non eros non, consectetur auctor lacus. Curabitur malesuada odio eget elit egestas porttitor.','Another post with A Gallery','','publish','open','open','','just-a-cool-blog-post-with-a-gallery-2','','','2013-12-16 20:32:19','2013-12-16 20:32:19','',0,'http://localhost:8888/test/?p=2009',0,'post','',0),(25,1,'2013-08-29 14:15:41','2013-08-29 14:15:41','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \r\n \r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.','New Client Landed','','publish','open','open','','new-client-landed','','','2013-08-29 14:15:41','2013-08-29 14:15:41','',0,'http://flatsome.dev/?p=8984',0,'post','',0),(26,1,'2013-08-11 16:35:51','2013-08-11 16:35:51','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam sed eleifend risus, sit amet porttitor massa. Ut vulputate felis at mauris ultrices sodales. Phasellus in leo ornare, vulputate purus eget, iaculis tellus. Donec sed laoreet orci. Praesent faucibus feugiat velit a iaculis. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Morbi turpis mauris, consequat laoreet metus non, dictum fringilla sem. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla ornare malesuada ultricies. Nulla luctus velit diam, at lacinia odio aliquam nec. In adipiscing, arcu elementum dictum eleifend, mi velit sodales nisi, a semper tellus magna sed justo. Ut mauris velit, tristique id nulla eget, euismod consequat lacus. Vestibulum varius dapibus lacus et vestibulum.\r\n<blockquote>Ut eu imperdiet arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras interdum porttitor quam at tempus. Sed quis rutrum lorem.</blockquote>\r\nUt eu imperdiet arcu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cras interdum porttitor quam at tempus. Sed quis rutrum lorem. Mauris vitae dui ut neque pulvinar mattis. Mauris sed tincidunt nisi. Ut porta quis lorem at consectetur. Mauris elementum vulputate metus, ut cursus felis dictum non. Sed in nulla metus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Phasellus at nunc eget ligula tristique scelerisque in et urna.\r\n\r\nPellentesque imperdiet, nunc id scelerisque scelerisque, nisi arcu hendrerit leo, vel volutpat arcu mi in risus. Vestibulum iaculis molestie venenatis. Donec faucibus elit quis enim porta, id fringilla lectus feugiat. Sed et diam fermentum, elementum elit et, placerat nisi. Sed vehicula nibh sed tellus elementum condimentum. Fusce laoreet lorem ipsum, vitae aliquam arcu gravida gravida. Nunc eget tristique sem, eu ornare ligula.\r\n\r\nPellentesque facilisis lobortis volutpat. Etiam non suscipit velit, vitae ornare eros. In hac habitasse platea dictumst. Phasellus eu auctor metus, et porta justo. Vivamus suscipit fermentum ante, eu dignissim orci. Proin faucibus quis orci a dictum. Nulla ac nibh neque. Curabitur eu justo massa.','An Amazing responsive and Retina ready theme.','','publish','open','open','','welcome-to-flatsome-an-amazing-responsive-and-retina-ready-theme','','','2013-08-11 16:35:51','2013-08-11 16:35:51','',0,'http://localhost:8888/test/?p=474',0,'post','',0),(27,1,'2016-09-19 08:54:13','2016-09-19 08:54:13','<p>test</p>\r\n[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.2)\"]\r\n\r\n[text_box style=\"circle\" width=\"40\" width__sm=\"60\" padding=\"30px 30px 30px 30px\" rotate=\"17\" position_x=\"90\" bg=\"rgba(0, 0, 0, 0.86)\" depth=\"3\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Main Headline</strong></h2>\r\n<h3>Smaller Headline</h3>\r\n<p>Lorem ipsum dolor sit amet, conse.</p>\r\n[button text=\"Secondary\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','test','','publish','closed','closed','','test','','','2016-09-19 08:54:13','2016-09-19 08:54:13','',0,'http://flatsome.dev/?page_id=9969',0,'page','',0),(28,1,'2016-09-05 20:12:31','2016-09-05 20:12:31','','Left Sidebar','','publish','closed','closed','','left-sidebar','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',51,'http://flatsome.dev/?page_id=9847',0,'page','',0),(29,1,'2016-08-31 09:25:18','2016-08-31 09:25:18','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[title style=\"center\" text=\"Flip book element\"]\n\n[ux_product_flip]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Create a Flip Book for any product category. You can also select custom posts.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Flip Book','','publish','closed','closed','','flip-book','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=9165',99,'page','',0),(30,1,'2016-08-09 14:23:35','2016-08-09 14:23:35','[ux_slider infinitive=\"false\" parallax=\"2\" hide_nav=\"true\" nav_size=\"normal\" nav_style=\"simple\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"30% 57%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Welcome to our Fashion shop</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"62% 18%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"74% 14%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Slider Cover','','publish','closed','closed','','slider-cover','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=8550',12,'page','',0),(31,1,'2016-08-09 14:21:14','2016-08-09 14:21:14','[ux_banner height=\"100%\" bg=\"17\"]\r\n\r\n[text_box]\r\n\r\n[ux_image id=\"16\" width=\"24\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Flatsome 3.0</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.2)\" month=\"12\" day=\"24\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Maintenance','','publish','closed','closed','','maintenance','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',51,'http://flatsome.dev/?page_id=8545',0,'page','',0),(32,1,'2016-08-09 14:09:04','2016-08-09 14:09:04','[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" video_mp4=\"/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[text_box width=\"53\" width__sm=\"87\" scale__sm=\"125\" margin=\"30px 0px 30px 0px\"]\n\n<h3 class=\"alt-font\">A Fancy top Title</h3>\n<h1 class=\"uppercase\"><strong>Welcome to COOL Our Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Shop now\" color=\"white\" link=\"shop\"]\n\n\n[/text_box]\n\n[/ux_banner]','Video Cover','','publish','closed','closed','','video-cover','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=8538',15,'page','',0),(33,1,'2016-08-04 11:15:19','2016-08-04 11:15:19','[ux_banner height=\"300px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"60\"]\n\n<h3 class=\"uppercase\"><strong>Our Stores</strong></h3>\n[divider]\n\n[share]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\">About our stores. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[tabgroup type=\"vertical\"]\n\n[tab title=\"New York\"]\n\n[map lat=\"40.7902\" saturation=\"-58\"]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"London\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Oslo\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Stockholm\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Add as many as you want\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Our Stores','','publish','closed','closed','','our-stores','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',51,'http://flatsome.dev/?page_id=8412',0,'page','',0),(34,1,'2016-07-05 14:49:02','2016-07-05 14:49:02','[section bg=\"17\" bg_color=\"rgb(246, 246, 246)\" parallax=\"3\" padding=\"19px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"7\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_pos=\"58% 24%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"76\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 3','','publish','closed','closed','','grid-style-3','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=8220',8,'page','',0),(35,1,'2016-07-04 20:02:46','2016-07-04 20:02:46','[ux_slider slide_width=\"100%\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"70% 17%\"]\r\n\r\n[text_box width=\"56\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x=\"5\" position_x__sm=\"10\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h1><span style=\"font-size: 80%;\"><strong>WordPress & WooCommerce Expert</strong></span></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n[button text=\"My Work\" color=\"white\" style=\"outline\" radius=\"99\" link=\"Portfolio\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"63\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y=\"25\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>A small but focused Web Studio</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Learn more\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"About\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>Services</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[button text=\"Contact Now\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Contact\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Freelancer','','publish','closed','closed','','freelancer','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',69,'http://flatsome.dev/?page_id=8194',2,'page','',0),(36,1,'2016-07-04 10:31:29','2016-07-04 10:31:29','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg_overlay=\"rgba(246, 208, 45, 0.94)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"95\" position_x__sm=\"95\" position_y=\"5\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"57\" width__sm=\"84\" scale__sm=\"111\" animate=\"flipInY\"]\r\n\r\n<h1 class=\"uppercase\"><span style=\"font-size: 400%;\" data-line-height=\"xs\"><strong>Sale</strong></span></h1>\r\n<h2 class=\"lead\">Summer Sale has Started</h2>\r\n[ux_countdown style=\"text\" size=\"114\" color=\"light\"]\r\n\r\n[gap height=\"23px\"]\r\n\r\n[button text=\"Shop men\" color=\"white\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\"]\r\n\r\n[button text=\"Shop All\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"17\" bg_pos=\"84% 0%\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"100\" position_x__sm=\"95\" position_y=\"15\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"50\"]\r\n\r\n<h2 class=\"uppercase\">Shop Fashion Clothes today</h2>\r\n<h3 class=\"thin-font\">Add any text here..</h3>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row depth=\"1\" depth_hover=\"5\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"50% 12%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>About us</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"60% 18%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>OUR BLOG</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"51% 35%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>NEWSLETTER</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Latest products on sale\" size=\"undefined\"]\r\n\r\n[ux_products depth=\"1\" depth_hover=\"4\" orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Browse our Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories depth=\"1\" depth_hover=\"4\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" icon=\"instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" depth=\"1\"]\r\n\r\n[gap height=\"58px\"]\r\n\r\n[ux_banner height=\"407px\" bg=\"17\" bg_color=\"rgb(18, 18, 18)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\" bg_pos=\"79% 0%\" parallax=\"1\" border=\"2px 0px 2px 0px\" border_margin=\"10px 0px 10px 0px\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(255, 255, 255, 0.22)\"]\r\n\r\n[text_box width=\"47\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Don\'t miss a sale</strong></h2>\r\n<h3 class=\"thin-font\">Sign up for our Newsletter</h3>\r\n[gap height=\"32px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" depth=\"1\" depth_hover=\"4\" image_height=\"181px\"]','Big Sale','','publish','closed','closed','','big-sale','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=8111',4,'page','',0),(37,1,'2016-06-29 08:39:48','2016-06-29 08:39:48','[title text=\"Add responsive Video Embeds\" size=\"undefined\"]\n\n<p class=\"lead\">Add Responsive video embed to your site by using the Page Builder.</p>\n<h3>YOUTUBE</h3>\n[ux_video height=\"46%\"]\n\n<h3>VIMEO</h3>\n[ux_video url=\"https://vimeo.com/180255453\" height=\"54%\"]','Video','','publish','closed','closed','','video','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7921',10,'page','',0),(38,1,'2016-06-15 22:08:43','2016-06-15 22:08:43','[ux_banner height=\"450px\" bg=\"17\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button size=\"118\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.52)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"17\"]\n\n[text_box position_x=\"10\" position_y=\"10\" text_align=\"left\" text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Change Size</strong></h3>\n<p class=\"lead\">You can change the size to anything</p>\n[video_button size=\"202\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.45)\" hover=\"overlay-add\"]\n\n[text_box hover=\"zoom-in\"]\n\n<h3 class=\"uppercase\"><strong>Show on Hover</strong></h3>\n<p class=\"lead\">Select between various hover effects</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]','Video Button','','publish','closed','closed','','video-button','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7858',12,'page','',0),(39,1,'2016-06-02 12:48:15','2016-06-02 12:48:15','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.71)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>GALLERY ELEMENT</strong></h3>\r\n<p class=\"lead\">Create Galleries by using Image IDs and drag and drop. You can easily create galleries from the Page Builder.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple GAllery Row with lightbox\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Full Width Gallery\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" width=\"full-width\" col_spacing=\"collapse\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Gallery width Small gap\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"xsmall\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Slider Gallery\" margin_top=\"21px\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" type=\"slider\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"undefined\" slider_nav_position=\"undefined\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"undefined\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"undefined\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_hover=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\" text_padding=\"undefined\"]','Galleries','','publish','closed','closed','','galleries','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7640',11,'page','',0),(40,1,'2016-05-31 07:16:46','2016-05-31 07:16:46','[ux_slider nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"17\" bg_color=\"rgb(27, 15, 15)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" icon=\"search\" size=\"large\" position_x=\"15\" position_y=\"25\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_x=\"10\" position_y=\"85\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"90\"]\n\n<h2 class=\"uppercase\">Banner with hotspots</h2>\n<p class=\"thin-font lead\">Add Hotspots anywhere by using the drag and drop Page Builder.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"17\" bg_color=\"rgba(0, 0, 0, 0.25)\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" size=\"large\" position_x=\"80\" position_y=\"30\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_y=\"35\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"10\"]\n\n<h2 class=\"uppercase\">Create Lookbooks </h2>\n<p class=\"thin-font lead\">Create beautiful lookbooks by combining the banner, hotspot and slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Hotspot','','publish','closed','closed','','hotspot','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7562',99,'page','',0),(41,1,'2016-04-26 12:34:20','2016-04-26 12:34:20','[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.62)\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"8\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(246, 246, 246)\" border=\"1px 0px 0px 0px\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Shop By Category\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"normal\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"5\" depth=\"1\" image_height=\"230px\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title style=\"center\" text=\"Latest  Collections\" size=\"undefined\"]\r\n\r\n[ux_products style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"1\" orderby=\"date\" image_width=\"42\" text_size=\"large\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"318px\" bg=\"17\" bg_color=\"rgb(80, 80, 80)\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" bg_pos=\"22% 29%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Become a Vendor</strong></h3>\r\n<p class=\"lead\">Want to sell on Flatsome Vendor? We\'re looking for shop to join us.</p>\r\n[button text=\"Learn More\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Apply Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(244, 244, 244)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"bold-center\" text=\"How it Works\" size=\"undefined\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Apply to be a Vendor</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Upload your products</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Sell and make money</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[gap height=\"36px\"]\r\n\r\n[title style=\"bold-center\" text=\"Latest Reviews\" size=\"undefined\"]\r\n\r\n[ux_slider nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/ux_slider]\r\n[title style=\"bold-center\" text=\"From The Blog\" size=\"undefined\"]\r\n\r\n[blog_posts slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" depth=\"1\" image_height=\"180px\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Vendor Shop','','publish','closed','closed','','vendor-shop','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=7316',14,'page','',0),(42,1,'2016-04-18 13:07:29','2016-04-18 13:07:29','[message_box bg_color=\"rgb(69, 69, 69)\" padding=\"7\"]\r\n\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\r\n\r\n<p><strong>BIG SUMMER SALE HAS STARTED. UP TO 70% OFF   </strong>Make sure you</p>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\r\n\r\n[ux_countdown style=\"text\" size=\"94\" color=\"light\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]\r\n[ux_slider]\r\n\r\n[ux_banner height=\"706px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"40% 54%\"]\r\n\r\n[text_box width=\"69\" width__sm=\"80\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 200%;\">It has finally started</span></p>\r\n<h1><span style=\"font-size: 130%;\"><strong>BIG SUMMER SALE</strong></span></h1>\r\n[ux_countdown size=\"307\" color=\"light\" bg_color=\"rgba(255, 255, 255, 0.86)\"]\r\n\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"8\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h1 class=\"uppercase\">Welcome to our Shop</h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"8\" grid_height=\"300px\" depth=\"1\" depth_hover=\"4\" number=\"7\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[gap height=\"54px\"]\r\n\r\n[ux_banner height=\"387px\" bg=\"17\" bg_pos=\"49% 7%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"76\" position_x=\"5\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h2 class=\"uppercase\"><strong>never miss a sale again</strong></h2>\r\n<p class=\"lead\">Sign up for our Newsletter</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts depth=\"1\" depth_hover=\"4\" image_height=\"68%\"]','Sale Countdown','','publish','closed','closed','','sale-countdown','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=7224',10,'page','',0),(43,1,'2016-04-04 10:53:41','2016-04-04 10:53:41','[ux_banner height=\"100%\" bg=\"17\" bg_color=\"#FFF\"]\r\n\r\n[text_box text_color=\"dark\" width=\"61\" width__sm=\"85\" animate=\"fadeInUp\"]\r\n\r\n<h2><span style=\"font-size: 170%;\"><strong>Go Explore</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[divider]\r\n\r\n[search]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section label=\"Simple Light\" bg_color=\"rgb(245, 245, 245)\" padding=\"27px\" border=\"1px 0px 0px 0px\" border_color=\"rgb(235, 235, 235)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box margin=\"px px px px\"]\r\n\r\n<h3>Explore Things</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Book Events</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Find a hotel</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Thing to do\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" cat=\"114\"]\r\n\r\n[title style=\"center\" text=\"Go Explore\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" scale=\"187\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Find a Beach</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Explore THe CITY</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>EXPLORE OUTDOORS</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>TAILORED SUITES</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"97\"]\r\n\r\n<h3 class=\"uppercase\"><strong>ENJOY A DRINK</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[gap]\r\n\r\n[ux_banner height=\"400px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.49)\" bg_pos=\"26% 17%\"]\r\n\r\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>List your Company</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Apply Now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Latest From Blog\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" show_date=\"text\" excerpt=\"false\" comments=\"false\" image_height=\"293px\" image_hover=\"zoom\" text_align=\"left\"]\r\n\r\n[title style=\"center\" text=\"Follow on Instagram\" icon=\"icon-instagram\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed type=\"slider\" width=\"full-width\" columns=\"6\"]','Explore','','publish','closed','closed','','explore','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',69,'http://flatsome.dev/?page_id=7037',4,'page','',0),(44,1,'2016-03-31 15:07:47','2016-03-31 15:07:47','[ux_banner height=\"261px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"54% 100%\" parallax=\"3\"]\n\n[text_box parallax=\"-4\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Create Powerful Forms</strong></h3>\n<p class=\"lead\">Create Powerful forms with the integrated Contact Form 7 Plugin.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\" mask=\"arrow\" padding=\"45px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Simple Contact Form\" size=\"undefined\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Simple Center\" bg_color=\"rgb(0, 0, 0)\" dark=\"true\" mask=\"arrow\" padding=\"60px\" height=\"300px\" border_color=\"rgb(235, 235, 235)\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Contact Form Flat\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Forms','','publish','closed','closed','','forms','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7025',99,'page','',0),(45,1,'2016-03-31 14:53:43','2016-03-31 14:53:43','[ux_banner height=\"377px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"60% 22%\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>PRICE TABLE ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap]\r\n\r\n[title text=\"3 Column price table with text on left\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\" padding=\"0 20px 0 0\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\" color=\"dark\" bg_color=\"rgb(122, 44, 205)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" color=\"dark\" bg_color=\"rgba(0, 0, 0, 0.99)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\" color=\"dark\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" enabled=\"false\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Disabled\" enabled=\"false\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"underline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"#f1f1f1\" bg_color=\"rgb(243, 243, 243)\" margin=\"-1px\"]\r\n\r\n[title text=\"3 Column price table inside a background\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\" radius=\"10\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"shade\" size=\"larger\" radius=\"10\" depth=\"4\" depth_hover=\"5\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" padding=\"0 0 0 20px\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row style=\"collapse\"]\r\n\r\n[col]\r\n\r\n[title style=\"center\" text=\"4 Column collapsed\"]\r\n\r\n[gap]\r\n\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section bg=\"17\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(255, 255, 255, 0.5)\" parallax=\"3\" padding=\"49px\"]\r\n\r\n[row style=\"small\" depth=\"2\"]\r\n\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Price table','','publish','closed','closed','','price-table','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7020',99,'page','',0),(46,1,'2016-03-31 14:45:02','2016-03-31 14:45:02','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.44)\" bg_pos=\"32% 28%\" parallax=\"3\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>SEARCH ELEMENT</strong></h3>\n<p class=\"lead\">Insert a Product Search box anywhere</p>\n[search style=\"flat\" size=\"xlarge\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Default style\"]\n\n[search]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Flat style\"]\n\n[search style=\"flat\"]\n\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"17\" bg_pos=\"58% 16%\"]\n\n[text_box width=\"37\" position_x=\"0\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>Search box inside a banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[gap height=\"25px\"]\n\n[search size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]','Search box','','publish','closed','closed','','search-box','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7017',99,'page','',0),(47,1,'2016-03-31 14:42:25','2016-03-31 14:42:25','[ux_banner height=\"405px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.94)\" bg_pos=\"53% 30%\"]\r\n\r\n[text_box text_color=\"dark\"]\r\n\r\n[ux_image id=\"16\" width=\"23\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Instagram element</strong></h3>\r\n<p class=\"lead\">Add beautiful instagram images anywhere on your site</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple Grid\" icon=\"icon-instagram\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]\r\n\r\n[title style=\"center\" text=\"Simple slider\" icon=\"icon-instagram\" margin_top=\"32px\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" slider_nav_position=\"outside\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider Black and white\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" image_hover=\"color\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Instagram feed','','publish','closed','closed','','instagram-feed','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7014',99,'page','',0),(48,1,'2016-03-31 14:37:54','2016-03-31 14:37:54','[ux_banner height=\"338px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.41)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Accordion element</strong></h3>\r\n<p class=\"lead\">Create beautiful accordion sections. You can add any element to the accordion panels.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple accordion\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[accordion]\r\n\r\n[accordion-item title=\"Accordion Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 1 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 2 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add any element to accordion\"]\r\n\r\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\"]\r\n\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n\r\n[/row]','Accordion','','publish','closed','closed','','accordion','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7011',99,'page','',0),(49,1,'2016-03-31 14:32:39','2016-03-31 14:32:39','[ux_banner height=\"375px\" bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\"]\r\n\r\n[text_box width=\"51\"]\r\n\r\n<h3 class=\"uppercase\"><strong>LOGO ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Normal logos\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Dashed Grid\" margin_top=\"19px\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Slider\" margin_top=\"57px\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Full width slider\" margin_top=\"57px\"]\r\n\r\n[ux_slider bg_color=\"rgb(247, 247, 247)\" infinitive=\"false\" freescroll=\"true\" hide_nav=\"true\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]','Logo','','publish','closed','closed','','logo','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=7008',99,'page','',0),(50,1,'2016-03-31 14:08:59','2016-03-31 14:08:59','[ux_banner height=\"364px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.87)\" bg_pos=\"80% 19%\" parallax=\"2\"]\n\n[text_box text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Portfolio Element</strong></h3>\n<p>Showcase work or other elements</p>\n[divider width=\"67px\" height=\"5px\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple with Filtering\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"slide\"]\n\n[title style=\"center\" text=\"Ouline Filter style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"blur\" text_pos=\"middle\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can choose between many differnt filter navigation style and align them to left or right.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Slider Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"shade\" filter_nav=\"outline\" orderby=\"name\" grid=\"3\" columns=\"5\" image_hover=\"zoom\" image_hover_alt=\"grayscale\"]\n\n[title style=\"center\" text=\"Grid Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" offset=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[title style=\"center\" text=\"Collapsed Full width Grid\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" width=\"full-width\" col_spacing=\"collapse\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Choose between 14 differnt premade grid layouts.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Open in a ligtbox\"]\n\n[ux_portfolio lightbox=\"true\"]','Portfolio','','publish','closed','closed','','portfolio','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',51,'http://flatsome.dev/?page_id=7002',19,'page','',0),(51,1,'2016-03-31 14:08:39','2016-03-31 14:08:39','[ux_banner height=\"496px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"52% 2%\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Pages Element</strong></h3>\r\n<p class=\"lead\">Display a list of sub pages of a selected page in a beautiful way. Very useful if you need to link to sub pages from a parent page.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Default Style\"]\r\n\r\n[ux_pages parent=\"3021\" depth=\"1\" text_align=\"center\" text_padding=\"10px 10px 10px 10px\"]','Pages','','publish','closed','closed','','pages','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=6999',18,'page','',0),(52,1,'2016-03-31 13:59:10','2016-03-31 13:59:10','[scroll_to title=\"Welcome Banner\" link=\"welcome\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60\" position_y=\"20\"]\n\n<h1 class=\"lead\"><strong>Scroll To</strong> Element</h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another banner\" link=\"another_banner\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"50\" width__sm=\"60\" animate=\"fadeInRight\" position_x=\"0\" position_y=\"40\" text_align=\"left\"]\n\n<h1 class=\"lead\"><strong>Another Banner</strong></h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another Scroll To banner\" link=\"another_banner_2\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width=\"52\" width__sm=\"60\" animate=\"fadeInUp\" parallax=\"3\"]\n\n<h2><span style=\"font-size: 200%;\">Another Banner</span></h2>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Signup for Newsletter\" link=\"newsletter\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_color=\"rgb(43, 7, 7)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\"]\n\n[text_box width=\"74\" width__sm=\"84\" scale=\"120\" scale__sm=\"101\" parallax=\"2\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n(insert contact form here)\n\n\n[/text_box]\n\n[/ux_banner]','Scroll To','','publish','closed','closed','','scroll-to','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=6996',17,'page','',0),(53,1,'2016-03-31 13:48:41','2016-03-31 13:48:41','[ux_banner height=\"444px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.27)\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>COUNT DOWN ELEMENT</strong></h1>\n<p class=\"lead\">Add beautiful count downs anywhere on the site.</p>\n[ux_countdown size=\"300\" bg_color=\"rgba(0, 0, 0, 0.09)\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Primary Color\"]\n\n[ux_countdown size=\"198\" color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Dark Color\"]\n\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Light Color\"]\n\n[ux_countdown size=\"200%\" color=\"light\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[ux_banner height=\"600px\" bg=\"17\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\" animate=\"fadeIn\" position_x=\"10\"]\n\n<h3 class=\"uppercase\">A Countdown Inside A Banner</h3>\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap]\n\n\n[/col]\n[col span=\"6\" align=\"center\"]\n\n[title style=\"center\" text=\"Countdown as text\"]\n\n[ux_countdown style=\"text\" size=\"91\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"6\"]\n\n[title style=\"center\" text=\"Countdown as Clock\"]\n\n[ux_countdown color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]','Countdown','','publish','closed','closed','','countdown','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=6990',28,'page','',0),(54,1,'2016-02-18 15:10:52','2016-02-18 15:10:52','[ux_slider]\n\n[ux_banner height=\"637px\" bg=\"17\" bg_size=\"original\" bg_pos=\"62% 60%\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"17\" bg_pos=\"62% 68%\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Company Feature 1\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Company Feature 2\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Company Feature 3\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" columns=\"2\" depth=\"1\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\" icon_pos=\"left\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]','Corporate','','publish','closed','closed','','simple-corporate','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',69,'http://flatsome.dev/?page_id=4041',1,'page','',0),(55,1,'2016-02-17 13:38:32','2016-02-17 13:38:32','[ux_slider bg_color=\"rgb(0, 0, 0)\"]\r\n\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"17\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInUp\" parallax=\"2\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Nothing is Impossible</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"17\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"2\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"17\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"3\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[section bg_color=\"rgb(27, 27, 27)\" dark=\"true\" padding=\"60px\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>New products added everyday</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Featured Products\" size=\"undefined\"]\r\n\r\n[ux_products slider_nav_style=\"circle\"]\r\n\r\n[title style=\"center\" text=\"Browse\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" image_height=\"113%\" image_overlay=\"rgba(0, 0, 0, 0.16)\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" badge_style=\"square\" image_height=\"300px\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"420px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_instagram_feed username=\"surfer_magazine\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Sport Shop','','publish','closed','closed','','sport-shop','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=4025',13,'page','',0),(56,1,'2016-02-17 10:15:15','2016-02-17 10:15:15','[section bg_color=\"rgb(237, 239, 241)\" effect=\"snow\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[ux_banner_grid height=\"617\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\" position_y=\"80\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\" position_y=\"10\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"42\" position_x=\"10\" position_y=\"80\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n[ux_countdown size=\"268\" bg_color=\"rgba(0, 0, 0, 0.1)\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Free Shipping on orders above 99$</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Give a Gift to a Friend</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed dia.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Loved by our Customers</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Shop Now\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" depth=\"1\" show_count=\"0\" image_overlay=\"rgba(0, 0, 0, 0.08)\" image_hover=\"zoom\" text_pos=\"middle\" text_size=\"small\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Weekly Featured Products\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"normal\" columns=\"5\" depth=\"1\" show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Cute Shop','','publish','closed','closed','','cute-shop','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=4008',2,'page','',0),(57,1,'2016-02-15 20:47:32','2016-02-15 20:47:32','[ux_banner height=\"562px\" height__sm=\"368px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"81\"]\n\n<h2 class=\"uppercase\">Powerful Theme needs powerul images</h2>\n<p class=\"lead\">Responsive Images you can insert anywhere. You can also them into a slider.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h1 class=\"lead\">Beautiful Images with Beautiful Captions</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" image_size=\"large\" lightbox=\"true\" caption=\"true\" image_overlay=\"rgba(0, 0, 0, 0.16)\" image_hover=\"zoom-long\" animate=\"fadeInUp\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Image Overlay Styles\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"glow\"]\n\n<p>Glow</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"color\" animate=\"fadeInLeft\"]\n\n<p>Add Color</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"grayscale\" animate=\"fadeInLeft\"]\n\n<p>Grayscale</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"fade-in\" animate=\"fadeInLeft\"]\n\n<p>Fade In</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"zoom-fade\" animate=\"fadeInLeft\"]\n\n<p>Zoom Fade</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-add\" animate=\"fadeInLeft\"]\n\n<p>Add Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-remove\" animate=\"fadeInLeft\"]\n\n<p>Remove Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"blur\" animate=\"fadeInLeft\"]\n\n<p>Blur</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with video\"]\n\n[ux_image id=\"16\" animate=\"fadeInLeft\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n<p class=\"lead\">Add a <strong>Youtube or Vimeo</strong> link to Image link tag to automatically get a play icon and a Video Lightbox on Images.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image drop shadow\"]\n\n[ux_image id=\"16\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n<p class=\"lead\">Add cool drop shadows to your images to make them pop out on hover.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Add Images to any sliders\" size=\"undefined\"]\n\n[ux_slider style=\"container\" slide_width=\"700px\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_image id=\"16\" height=\"75%\" image_hover=\"overlay-remove\" depth_hover=\"2\"]\n\n[ux_image id=\"16\" height=\"75%\" image_hover=\"overlay-remove\" depth=\"3\"]\n\n[ux_image id=\"16\" height=\"75%\" image_hover=\"overlay-remove\"]\n\n[ux_image id=\"16\" height=\"75%\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with reverse parallax\"]\n\n[ux_image id=\"16\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"-1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with PArallax\"]\n\n[ux_image id=\"16\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Images with lightbox\" size=\"undefined\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span__sm=\"12\" align=\"center\"]\n\n[title style=\"center\" text=\"Images with Caption\" size=\"undefined\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"16\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"16\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"16\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]','Images','','publish','closed','closed','','images','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=3983',9,'page','',0),(58,1,'2016-02-15 20:46:37','2016-02-15 20:46:37','[ux_banner height=\"446px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"58% 26%\"]\n\n[text_box width=\"100\" width__sm=\"75\" parallax=\"-1\"]\n\n<h6>Flatsome Grid System</h6>\n<h1>Responsive Rows and Columns</h1>\n<p class=\"lead\">Create Amazing layouts by using Flatsome Row and Column System powered by<strong> Flexbox</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple 4-column row\"]\n\n[row padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(255, 0, 211, 0.96)\" color=\"light\" depth_hover=\"5\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Vertical Centered Row\"]\n\n[row v_align=\"middle\" padding=\"30px\"]\n\n[col span=\"6\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bottom Align Row\"]\n\n[row v_align=\"bottom\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Equal aligned row\"]\n\n[row v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Rows With Drop shadow\"]\n\n[row padding=\"30px\" depth=\"2\" depth_hover=\"3\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<p><strong>You can set Column Depth for All columns or per column.</strong></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Divided row\"]\n\n[row style=\"large\" col_style=\"divided\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Dashed Lined Row\" margin_top=\"23px\" size=\"undefined\"]\n\n[row col_style=\"dashed\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Solid Lined Row\" margin_top=\"25px\" size=\"undefined\"]\n\n[row col_style=\"solid\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Custom Background on a Column\" margin_top=\"28px\" size=\"undefined\"]\n\n[row padding=\"30px\"]\n\n[col span=\"5\" span__sm=\"6\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(38, 65, 116)\" color=\"light\" depth=\"2\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Full Width Row with Backgrounds\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(0, 0, 0)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(153, 120, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(120, 154, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Nested Rows\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"8\" span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(255, 255, 255)\" depth=\"3\" depth_hover=\"5\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(0, 0, 0)\"]\n\n[row style=\"small\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" padding=\"20px\" bg_color=\"rgb(255, 255, 255)\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row col_style=\"solid\"]\n\n[col span=\"4\" span__sm=\"6\" parallax=\"1\"]\n\n<h3>Parallax Column</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\" parallax=\"2\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" parallax=\"3\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"10\" align=\"center\"]\n\n<h3>A Centered Columns Row</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Animated Columns\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n<h3>Fade In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInDown\"]\n\n<h3>Fade In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInLeft\"]\n\n<h3>Fade In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInRight\"]\n\n<h3>Fade In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceIn\"]\n\n<h3>Bounce In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInUp\"]\n\n<h3>Bounce In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInDown\"]\n\n<h3>Bounce In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInLeft\"]\n\n<h3>Bounce In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInRight\"]\n\n<h3>Bounce In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\" animate=\"flipInY\"]\n\n<h3>Flip In Y</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"flipInX\"]\n\n<h3>Flip In X</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"blurIn\"]\n\n<h3>Blur In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]','Rows / Columns','','publish','closed','closed','','rows-columns','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=3981',2,'page','',0),(59,1,'2016-02-15 14:01:19','2016-02-15 14:01:19','[ux_banner height=\"400px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.66)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Text Elements</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[title style=\"center\" text=\"Typography\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text  </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Default font</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead alt-font\"><b>Alternative Font</b>.</h2>\n<p class=\"lead alt-font\">Dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Thin text</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead uppercase\">UPPERCASE</h2>\n<p class=\"lead uppercase\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This is a <span class=\"fancy-underline\">Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h6>Flatsome Tip</h6>\n<h2>You can find many text options in the \"Format\" dropdown in text editor.</h2>\n<p class=\"lead\">You see the changes live if you use the Page Builder</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"3\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgb(34, 34, 34)\" dark=\"true\" padding=\"60px\"]\n\n[title style=\"center\" text=\"Typography on Dark background\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text  </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"7\"]\n\n<h2 class=\"lead\">This is a<span class=\"fancy-underline\"> Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"5\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"60px\"]\n\n[title style=\"center\" text=\"Quote\"]\n\n[row]\n\n[col]\n\n<blockquote>\n<p class=\"lead\"><strong>Quote</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n</blockquote>\n<p class=\"lead\">Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa. Horizontal Line:</p>\n[title style=\"center\" text=\"Lists\"]\n\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li>Simple List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ol>\n<li>Numbered List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ol>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-checkmark\">Checkmark list</li>\n<li class=\"bullet-checkmark\">List Item 2</li>\n<li class=\"bullet-checkmark\">List item 3</li>\n<li class=\"bullet-checkmark\">List Item 4</li>\n<li class=\"bullet-checkmark\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-star\">Star list</li>\n<li class=\"bullet-star\">List Item 2</li>\n<li class=\"bullet-star\">List item 3</li>\n<li class=\"bullet-star\">List Item 4</li>\n<li class=\"bullet-star\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-arrow\">Arrow List</li>\n<li class=\"bullet-arrow\">List Item 2</li>\n<li class=\"bullet-arrow\">List item 3</li>\n<li class=\"bullet-arrow\">List Item 4</li>\n<li class=\"bullet-arrow\">List Item 5</li>\n</ul>\n\n[/col]\n\n[/row]\n\n[/section]','Typography','','publish','closed','closed','','typography','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=3971',5,'page','',0),(60,1,'2016-01-13 13:24:12','2016-01-13 13:24:12','[ux_slider]\n\n[ux_banner height=\"700px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.25)\"]\n\n[text_box width=\"51\" animate=\"fadeInLeft\" text_depth=\"1\"]\n\n<h2>Create Amazing Banners with Drag and Drop</h2>\n[divider]\n\n[button text=\"A button\" color=\"success\" depth=\"3\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"700px\" bg=\"17\"]\n\n[text_box width=\"46\" animate=\"fadeInRight\" parallax=\"1\" position_x=\"5\"]\n\n<h2>Lorem ipsum dolor sit amet</h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Buy now\" color=\"white\"]\n\n[button text=\"Learn more\" color=\"white\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\"]\n\n[col span=\"7\"]\n\n[ux_banner height=\"600px\" bg=\"17\" bg_pos=\"44% 39%\"]\n\n[text_box width=\"63\" width__sm=\"78\" padding=\"39px\" position_x=\"5\" position_x__sm=\"50\" text_color=\"dark\" bg=\"rgba(255, 255, 255, 0.85)\" depth=\"2\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Simple Link\" style=\"link\" icon=\"icon-play\"]\n\n[button text=\"Simple Button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"lead uppercase\">Drag And Drop Banner System</h2>\n<p class=\"lead\"><span style=\"font-size: 115%;\">Flatsome <strong>Banners</strong> is the heart of Flatsome. Our Banner System let you create beautiful <strong>responsive</strong> banners with drag and drop.</span></p>\n<p class=\"lead\"> </p>\n[ux_image id=\"16\"]\n\n\n[/col]\n[col span=\"14\"]\n\n[ux_banner height=\"56.25%\" height__sm=\"50%\" bg=\"17\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\" position_x=\"90\"]\n\n<h3>Small Title</h3>\n<p class=\"lead\">You can place a text box wherever you want on a Banner</p>\n[button text=\"Click me!\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h2>Banner Focus Point<b>™</b></h2>\n<p class=\"lead\">Set a focus point on the banner and the image will adjust to mobile a tablet screens. Perfect for resposnive Websites.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" image_size=\"original\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Banner Hover effects\"]\n\n[row]\n\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\"]\n\n<h3>Glow</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom-fade\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom Fade</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"blur\"]\n\n[text_box width=\"36\"]\n\n<h3>Blur</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-in\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade In</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-out\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade Out</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"color\"]\n\n[text_box width=\"36\"]\n\n<h3>Add Color</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"grayscale\"]\n\n[text_box width=\"36\"]\n\n<h3>Grayscale</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can also<strong> combine</strong> hover effects to create amazing hover effects</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\" border=\"3px 3px 3px 3px\" border_margin=\"10px 10px 10px 10px\" border_hover=\"zoom\"]\n\n[text_box width=\"51\"]\n\n<h3><strong>Add animated borders</strong></h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"17\" parallax=\"2\"]\n\n[text_box width=\"41\"]\n\n<h2 class=\"uppercase\">BACKGROUND VIDEO</h2>\n\n[/text_box]\n\n[/ux_banner]','Banners','','publish','closed','closed','','banner','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=3648',4,'page','',0),(61,1,'2016-01-12 17:26:06','2016-01-12 17:26:06','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.42)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>IMAGE BOX ELEMENT</strong></h3>\r\n<p class=\"lead\">Create amazing image boxes with unlimited style options.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section]\r\n\r\n[row]\r\n\r\n[col span=\"4\"]\r\n\r\n[ux_image_box img=\"16\"]\r\n\r\n<h4>Simple Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"16\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"badge\" img=\"16\"]\r\n\r\n<h4>Badge Style</h4>\r\n<p>You can add shortcodes here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"16\"]\r\n\r\n<h2>Overlay Style</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"label\" img=\"16\"]\r\n\r\n<h4>Label Style</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"16\"]\r\n\r\n<h4>Shade Style</h4>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"push\" img=\"16\" image_height=\"90%\" text_hover=\"bounce\"]\r\n\r\n<h2>Push Style</h2>\r\n<p>Add any elements here..</p>\r\n[divider]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"8\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[ux_image_box style=\"vertical\" img=\"16\" image_width=\"48\"]\r\n\r\n<h2>Vertical Style Boxed</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n[button text=\"A button\" style=\"secondary alt-button\" radius=\"10\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section]\r\n\r\n[row]\r\n\r\n[col align=\"center\"]\r\n\r\n<h2>Create any kind of Image box by using the options in the Page Builder.</h2>\r\n<p class=\"lead\">We have created many examples here. Mix and Match effects to create your perfect Image Box</p>\r\n\r\n[/col]\r\n[col span=\"4\" depth=\"1\"]\r\n\r\n[ux_image_box img=\"16\" image_height=\"100%\"]\r\n\r\n<h4>Simple Centered Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"16\" image_height=\"100%\" depth=\"1\" text_bg=\"rgb(66, 66, 66)\" text_color=\"dark\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"16\" image_height=\"125%\" image_hover=\"blur\" text_pos=\"middle\" text_size=\"small\" text_hover=\"zoom-in\"]\r\n\r\n<h2>Overlay Style With Blur and Zoom</h2>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"16\" image_height=\"100%\"]\r\n\r\n<h4>Circle with Blur In Effect</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"16\" image_height=\"116%\"]\r\n\r\n<h4>Simple Shade  Style</h4>\r\n<p class=\"lead\">A beautiful box.</p>\r\n[button text=\"Quick View\" style=\"white\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"16\" image_height=\"100%\" image_radius=\"100\" image_hover=\"zoom\" text_pos=\"middle\" text_hover=\"bounce\"]\r\n\r\n<h3 class=\"uppercase\">Circle Image</h3>\r\n<p class=\"lead\">Create this by adding radius 100% to the image.</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Image Box','','publish','closed','closed','','image-box','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://flatsome.dev/?page_id=3569',15,'page','',0),(62,1,'2015-11-20 13:46:21','2015-11-20 13:46:21','[ux_banner height=\"540px\" bg=\"17\" bg_size=\"original\" bg_overlay__sm=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"35% 23%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"80\" animate=\"fadeInLeft\" position_x=\"95\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"alt-font\">Fancy Top Title</h3>\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"540px\" bg=\"17\" bg_color=\"rgb(113, 117, 186)\" bg_pos=\"60% 16%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"82\" position_x=\"10\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Create amazing Parallax effects</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"17\" bg_color=\"rgb(164, 113, 186)\" parallax=\"1\"]\r\n\r\n[text_box width=\"58\" width__sm=\"85\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"17\" bg_color=\"rgb(218, 218, 218)\" parallax=\"1\"]\r\n\r\n[text_box width=\"34\" width__sm=\"74\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>299$</strong></h2>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 185, 179, 0.91)\"]\r\n\r\n[text_box width__sm=\"79\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>SUMMER SALE END SOON</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.06)\"]\r\n\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\r\n\r\n[col span=\"6\" span__sm=\"14\"]\r\n\r\n[ux_banner height=\"94%\" bg=\"17\" bg_pos=\"20% 60%\" parallax=\"2\"]\r\n\r\n[text_box width=\"31\" width__sm=\"61\" scale__sm=\"64\" position_x=\"90\" position_y=\"90\" text_align=\"right\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Add Hotspots to BAnners</strong></h3>\r\n<p class=\"lead\">Hotspots can be added to banners and dragged around. You can have Hotspots that goes to a Product Lightbox or just a simple Tooltip.</p>\r\n\r\n[/text_box]\r\n[ux_hotspot type=\"product\" prod_id=\"416\" text=\"Add product hotspots on banners\" bg_color=\"rgb(47, 166, 162)\" position_x=\"55\" position_y=\"25\"]\r\n\r\n[ux_hotspot text=\"Cool Camera :)\" size=\"large\" bg_color=\"#4DB7B3\" position_x=\"10\" position_y=\"80\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"17\" padding=\"0px 10% 0px 10%\"]\r\n\r\n[title style=\"center\" text=\"Add a Title here\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"450px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" parallax=\"3\"]\r\n\r\n[text_box width__sm=\"93\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Join Our Newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\r\n\r\n[col span=\"6\" span__sm=\"17\" padding=\"10% 10% 0px 10%\" bg_color=\"rgb(240, 240, 240)\"]\r\n\r\n[title style=\"center\" text=\"Featured\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" show=\"featured\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n[ux_banner height=\"99%\" bg=\"17\" bg_pos=\"56% 22%\" parallax=\"2\"]\r\n\r\n[text_box width=\"37\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>29$</strong></h2>\r\n\r\n[/text_box]\r\n[ux_hotspot position_x=\"55\" position_y=\"15\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"simple\" slider_nav_color=\"light\" width=\"full-width\" columns=\"7\"]','Parallax Shop','','publish','closed','closed','','parallax-shop','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',70,'http://flatsome.dev/?page_id=3288',3,'page','',0),(63,1,'2015-11-20 12:36:31','2015-11-20 12:36:31','','Size Chart','','publish','closed','closed','','size-chart','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',51,'http://flatsome.dev/?page_id=3282',0,'page','',0),(64,1,'2015-11-20 08:27:14','2015-11-20 08:27:14','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"63% 37%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"42% 26%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"54% 24%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p>&nbsp;</p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,&nbsp;It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.&nbsp;</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"Designer wear\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"kurtis\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"512\" name=\"party wear saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"419\" image_width=\"116\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"420\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"421\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','publish','closed','closed','','mega-shop','','','2020-12-10 09:25:44','2020-12-10 09:25:44','',70,'http://flatsome.dev/?page_id=3257',9,'page','',0),(65,1,'2015-11-17 20:28:02','2015-11-17 20:28:02','Coming soon...','Booking','','publish','closed','closed','','booking','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',69,'http://localhost:8888/flatsome-next/?page_id=3055',5,'page','',0),(66,1,'2015-11-17 20:27:42','2015-11-17 20:27:42','Coming soon...','Lifestyle','','publish','closed','closed','','lifestyle','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',69,'http://localhost:8888/flatsome-next/?page_id=3053',10,'page','',0),(67,1,'2015-11-17 20:25:08','2015-11-17 20:25:08','[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" bg_pos=\"49% 43%\" parallax=\"4\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"59\" width__sm=\"100\" scale__sm=\"131\" animate=\"fadeInUp\" parallax=\"-3\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>WE\'re a creative Agency</strong></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n[video_button size=\"130\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.47)\" bg_pos=\"34% 46%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"10\" position_y=\"70\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Browse Portfolio\" style=\"outline\" size=\"larger\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Portfolio\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Our Clients\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section label=\"Media Right\" bg_color=\"rgb(207, 207, 207)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"large\" h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\">Contact Us</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\r\n\r\n[accordion auto_open=\"true\"]\r\n\r\n[accordion-item title=\"How long does it takes to we get back to you\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item]\r\n\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add anything here\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Research\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"LAtest NEws\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"push\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" badge_style=\"circle\" image_height=\"180px\"]','Agency','','publish','closed','closed','','agency','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',69,'http://localhost:8888/flatsome-next/?page_id=3049',3,'page','',0),(68,1,'2015-11-17 20:15:56','2015-11-17 20:15:56','[section bg_color=\"#fafafa\"]\r\n\r\n[block id=\"16\"]\r\n\r\n\r\n[/section]','Demos','','publish','closed','closed','','demos','','','2015-11-17 20:15:56','2015-11-17 20:15:56','',0,'http://localhost:8888/flatsome-next/?page_id=3031',0,'page','',0),(69,1,'2015-11-17 19:45:39','2015-11-17 19:45:39','Business demos','Business Demos','','publish','closed','closed','','business-demos','','','2015-11-17 19:45:39','2015-11-17 19:45:39','',68,'http://localhost:8888/flatsome-next/?page_id=3025',0,'page','',0),(70,1,'2015-11-17 19:43:25','2015-11-17 19:43:25','[ux_pages parent=\"3021\" depth=\"1\"]','Shop Demos','','publish','closed','closed','','shop-demos','','','2015-11-17 19:43:25','2015-11-17 19:43:25','',68,'http://localhost:8888/flatsome-next/?page_id=3021',0,'page','',0),(71,1,'2014-02-10 14:07:58','2014-02-10 14:07:58','[section label=\"Top Section\" bg=\"17\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"65% 40%\" parallax=\"3\" dark=\"true\" padding=\"0px\" height=\"424px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"5% 6% 0px 10%\" align=\"center\"]\n\n<h1 class=\"uppercase\"><strong>Section Element</strong></h1>\n<p class=\"lead\">Sections are used for creating full width backgrounds with content inside it. You can have Parallax Effects and Background Videos.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 233, 233)\" padding=\"50px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Simple section with a two column row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgb(36, 36, 36)\" dark=\"true\" padding=\"60px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Dark section with a row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Background Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h2>A section with a background video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" dark=\"true\" padding=\"60px\" height=\"50vh\"]\n\n[row style=\"collapse\" h_align=\"center\"]\n\n[col span=\"6\" align=\"center\"]\n\n<h2>A section can have a background image or a background color</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(243, 243, 243)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\"]\n\n<h2>A Section with a Image on the right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Parallax Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"9\" align=\"center\"]\n\n<h2>A Parallax Background Video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(50, 50, 50)\" dark=\"true\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(243, 243, 243)\" bg_overlay=\"rgba(255, 255, 255, 0.9)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A Section with Image and a background</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image left.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" h_align=\"right\"]\n\n[col span=\"6\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image right.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" parallax=\"1\" dark=\"true\" padding=\"97px\" height=\"300px\"]\n\n[title text=\"Section With a parallax background\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(255, 255, 255, 0.89)\" bg_pos=\"25% 0%\" parallax=\"1\" padding=\"60px\" height=\"300px\"]\n\n[row style=\"collapse\" width=\"full-width\" h_align=\"center\"]\n\n[col span=\"6\" padding=\"0 10%\" align=\"center\"]\n\n<h2>A product slider inside a section</h2>\n[button text=\"Click me now\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(63, 63, 63)\" dark=\"true\" mask=\"arrow\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"10\"]\n\n<h3>Section With A Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(160, 160, 160)\" dark=\"true\" mask=\"angled\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(117, 117, 117, 0.44)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"9\"]\n\n<h3>Section with Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"arrow-large\" height=\"365px\"]\n\n[row]\n\n[col]\n\n<h3>Section with a Large Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]','Sections','','publish','closed','closed','','sections','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=2585',1,'page','',0),(72,1,'2014-02-08 21:03:57','2014-02-08 21:03:57','[section bg_color=\"rgb(237, 239, 241)\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid Element\" size=\"120\"]\r\n\r\n[ux_banner_grid height=\"600\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"69\" width__sm=\"60\" position_y=\"5\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box text_color=\"dark\" width=\"42\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[row v_align=\"middle\"]\r\n\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">DRAG AND DROP EDITING</h2>\r\n<p class=\"lead\">Creating amazing Banner Grids is incredible easy with the new <strong>UX Builder</strong></p>\r\n\r\n[/col]\r\n[col span=\"7\" span__sm=\"12\"]\r\n\r\n[ux_image id=\"16\" depth=\"3\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"17\" bg_color=\"rgb(28, 28, 28)\" bg_overlay=\"rgba(0, 0, 0, 0.72)\" parallax=\"2\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid With A Background\" size=\"undefined\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"8\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"61% 30%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Use Banner Grids to Create Portfolio Grids\" margin_top=\"31px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.15)\" bg_pos=\"34% 46%\" hover=\"zoom\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"5\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Add Slider to Banner Grids\" margin_top=\"28px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]','Banner Grids','','publish','closed','closed','','banner-grid','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=2560',13,'page','',0),(73,1,'2013-12-30 15:48:22','2013-12-30 15:48:22','[gap height=\"32px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"overlay-add\"]\r\n\r\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"80\" scale=\"99\" position_x=\"10\" position_y=\"90\" text_align=\"left\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n[button text=\"Shop now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_pos=\"58% 24%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any CONTENT here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\"]\r\n\r\n[text_box width=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"13\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"glow\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"49\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts badge_style=\"square\" image_height=\"75%\" image_hover=\"zoom\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 1','','publish','closed','closed','','grid-style-1','','','2013-12-30 15:48:22','2013-12-30 15:48:22','',70,'http://localhost:8888/test/?page_id=2138',6,'page','',0),(74,1,'2013-12-20 14:31:52','2013-12-20 14:31:52','[ux_banner height=\"444px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>LIGHTBOX SHORTCODE</strong></h3>\r\n<p class=\"lead\">Open any content in a lightbox</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[button text=\"Lightbox button\" link=\"#test\"]\r\n\r\n<p><a href=\"#test\">Lightbox link</a></p>\r\n<p>[lightbox id=\"test\" width=\"600px\" padding=\"20px\"]<br />Add lightbox content here...<br />\r\n[/lightbox]\r\n</p>\r\n<pre>[button text=\"Lightbox button\" link=\"<b>#test</b>\"][lightbox id=\"<b>test</b>\" width=\"600px\" padding=\"20px\"]Add lightbox content here...[/lightbox]</pre>\r\n\r\n[/col]\r\n\r\n[/row]','Lightbox','','publish','closed','closed','','lightbox','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=2058',16,'page','',0),(75,1,'2013-12-16 09:57:42','2013-12-16 09:57:42','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"100%\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.31)\" bg_pos=\"68% 27%\"]\n\n[text_box width=\"52\" width__sm=\"80\" animate=\"bounceIn\" parallax=\"-1\" position_x=\"50\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">Now Online!</span></p>\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 200%;\" data-line-height=\"xs\">BIG SalE</span></strong></h2>\n<h3 class=\"lead uppercase\">up to <strong>70%</strong> off</h3>\n[button text=\"Shop Now\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"68% 11%\"]\n\n[text_box width=\"52\" width__sm=\"77\" animate=\"fadeInUp\" parallax=\"-1\" position_x=\"10\" position_x__sm=\"5\" position_y=\"50\" position_y__sm=\"50\" text_align=\"left\"]\n\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">New Trends 2016</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 150%;\"><strong><span data-line-height=\"xs\">CELEBRATE SUMMER<br /></span></strong></span></h2>\n[button text=\"Shop Now\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row style=\"collapse\" width=\"full-width\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"250px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.12)\" bg_pos=\"42% 18%\" hover=\"zoom-fade\"]\n\n[text_box width=\"75\" position_x=\"50\" position_y=\"50\"]\n\n<h4 class=\"uppercase\">Summer 2017</h4>\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"250px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"50% 57%\" hover=\"zoom-fade\"]\n\n[text_box width=\"70\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h4 class=\"uppercase\">Summer 2017</h4>\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"250px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"31% 0%\" hover=\"zoom-fade\"]\n\n[text_box text_color=\"dark\" width=\"70\" position_x=\"90\" position_y=\"50\" text_align=\"right\"]\n\n<h4 class=\"uppercase\">Summer 2017</h4>\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"12\" padding=\"40px 0px 0px 0px\" align=\"center\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Welcome to our Shop</span></h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"About us\" style=\"outline\" size=\"small\" radius=\"99\" link=\"about-us\"]\n\n[button text=\"Shop now\" size=\"small\" radius=\"99\" link=\"shop\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid_height=\"400px\" number=\"4\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\n\n[ux_products cat=\"81\"]\n\n[ux_banner height=\"426px\" bg=\"17\" bg_pos=\"72% 78%\" parallax=\"3\"]\n\n[text_box width=\"61\" width__sm=\"79\" scale__sm=\"158\" animate=\"fadeInRight\" position_x=\"50\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n<p>(insert contact form here)</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Shop Feature 1\" margin=\"px px px px\" icon_border=\"1\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Shop Feature 2\" margin=\"px px px px\" icon_border=\"1\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Shop Feature 3\" margin=\"px px px px\" icon_border=\"1\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Latest news\" margin_top=\"30px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" title_style=\"uppercase\" badge_style=\"circle-inside\" image_height=\"100%\" image_width=\"53\" image_radius=\"100\"]\n\n[title style=\"center\" text=\"Follow Us on Instagram\" icon=\"icon-instagram\" margin_top=\"30px\" size=\"undefined\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\" slider_nav_style=\"circle\" slider_nav_color=\"light\"]\n\n\n<!-- /wp:html -->','Fullscreen Fashion','','publish','closed','closed','','fullscreen-fashion','','','2020-11-10 12:29:41','2020-11-10 12:29:41','',70,'http://localhost:8888/test/?page_id=2000',5,'page','',0),(76,1,'2013-09-07 23:21:13','2013-09-07 23:21:13','[woocommerce_order_tracking]','Track your order','','publish','closed','closed','','track-order','','','2013-09-07 23:21:13','2013-09-07 23:21:13','',0,'http://localhost:8888/test/?page_id=790',0,'page','',0),(77,1,'2013-08-19 19:35:32','2013-08-19 19:35:32','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.61)\" bg_pos=\"41% 71%\" parallax=\"3\"]\r\n\r\n[text_box parallax=\"2\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Message Box Element</strong></h2>\r\n<p class=\"lead\">Create beautiful Call to Action areas.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"center\" text=\"Message Box Element\"]\r\n\r\n[message_box padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"9\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"2\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n[title style=\"center\" text=\"Use to Create Call to Actions areas\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"17\" bg_color=\"rgba(0, 0, 0, 0.62)\" padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"8\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">Use Message Boxes to create Call to action messages</h2>\r\n\r\n[/col_inner]\r\n[col_inner span=\"3\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me now\" color=\"white\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Full Width Message box\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"17\" bg_color=\"rgba(0, 0, 0, 0.75)\" padding=\"27\"]\r\n\r\n[row v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n<h3 class=\"uppercase\">Signup for Newsletter and get <span class=\"fancy-underline\">50% off</span> your next purchase</h3>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"17\" align=\"right\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]','Message box','','publish','closed','closed','','message-box','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=670',21,'page','',0),(78,1,'2013-08-18 15:48:20','2013-08-18 15:48:20','[ux_banner height=\"360px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"56% 97%\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60%\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Categories Element</strong></h3>\n<p class=\"lead\">Create beautiful overview of your Shop categories. There is almost unlimited variations, but here are some examples.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col]\n\n[title style=\"center\" text=\"Simple\"]\n\n[ux_product_categories style=\"normal\"]\n\n[title style=\"center\" text=\"Badge style\"]\n\n[ux_product_categories]\n\n[title style=\"center\" text=\"Overlay Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\"]\n\n[title style=\"center\" text=\"Grid style\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"3\" columns=\"3\" animate=\"fadeInLeft\" number=\"4\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Circle Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_height=\"100%\" image_radius=\"100\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"bounce\"]\n\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(51, 51, 51)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Be creative! Mix and match settings\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"13\" col_spacing=\"small\" columns=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\" number=\"5\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" image_hover=\"color\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\"]\n\n\n[/section]','Product Categories','','publish','closed','closed','','product-categories','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=654',22,'page','',0),(79,1,'2013-08-18 15:41:31','2013-08-18 15:41:31','[ux_banner height=\"451px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\r\n\r\n[text_box width=\"66\" parallax=\"-4\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\r\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Simple Sale Slider\"]\r\n\r\n[ux_products orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Products Slider\" icon=\"icon-star\"]\r\n\r\n[ux_products  show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Best Selling Products\" icon=\"icon-heart\"]\r\n\r\n[ux_products orderby=\"sales\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"circle\" col_spacing=\"normal\" depth=\"1\" depth_hover=\"5\" cat=\"tops\" image_height=\"200%\" image_size=\"medium\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_size=\"large\" text_hover=\"hover-slide\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style 2\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" width=\"full-width\" col_spacing=\"collapse\" columns=\"6\" cat=\"80\" orderby=\"rand\" image_height=\"200%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.58)\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\" text_hover=\"zoom-in\"]\r\n\r\n[title style=\"bold-center\" text=\"Grid Style\" margin_top=\"16px\"]\r\n\r\n[ux_products style=\"shade\" type=\"grid\" grid_height=\"650px\" products=\"4\" orderby=\"sales\" show=\"featured\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_align=\"left\" text_size=\"large\"]\r\n\r\n[title style=\"bold-center\" text=\"Masonery Style\"]\r\n\r\n[ux_products type=\"masonry\" depth=\"1\" depth_hover=\"5\" text_align=\"left\"]\r\n\r\n[title style=\"bold-center\" text=\"Mix and match styles\"]\r\n\r\n[ux_products style=\"overlay\" image_height=\"169%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.67)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\" text_size=\"large\"]','Products','','publish','closed','closed','','products','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=650',23,'page','',0),(80,1,'2013-08-18 15:12:19','2013-08-18 15:12:19','[ux_banner height=\"329px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.28)\" parallax=\"2\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Share & Follow Icons</strong></h3>\r\n<p>Beautiful Share and Follow Icons that you can insert anywhere with the Page Builder.</p>\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title text=\"Share icons\"]\r\n\r\n[share]\r\n\r\n[title text=\"Follow icons\"]\r\n\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons Fill\"]\r\n\r\n[follow style=\"fill\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons small\"]\r\n\r\n[follow style=\"small\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow icons Larger\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Larger Fill\" size=\"undefined\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Large\" size=\"undefined\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(48, 48, 48)\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Follow icons dark\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[gap height=\"11px\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/section]','Share / follow icons','','publish','closed','closed','','sharefollow-icons','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=644',24,'page','',0),(81,1,'2013-08-18 15:09:39','2013-08-18 15:09:39','[ux_banner height=\"395px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width__sm=\"86\" scale__sm=\"138\"]\n\n<h3 class=\"uppercase\"><strong>TEAM MEMBER ELEMENT</strong></h3>\n<p class=\"lead\">Use this for presenting your team member or staff</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Default Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Color Icon style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Mark Jance\" title=\"CTO / Developer\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bounce Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Push Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"push\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"push\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"push\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Circle\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Grayscale\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[section bg=\"17\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(0, 0, 0, 0.84)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Mix and match styles\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"small\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\" image_hover_alt=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"9\" image_hover=\"glow\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_hover=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]','Team Member','','publish','closed','closed','','team-member','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=642',26,'page','',0),(82,1,'2013-08-18 14:46:20','2013-08-18 14:46:20','[ux_banner height=\"500px\" bg=\"17\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>ICON BOX ELEMENT</strong></h3>\n<p class=\"lead\">Create simple icon boxes with this element. Upload any SVG icon or image. You can find beautiful SVG icons here: </p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Top Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Top Align with border\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Left Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(140, 188, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(25, 130, 188)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(188, 69, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]','Icon Box','','publish','closed','closed','','icon-box','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=637',14,'page','',0),(83,1,'2013-08-18 14:39:33','2013-08-18 14:39:33','[ux_banner height=\"500px\" bg=\"17\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-2\"]\r\n\r\n<h1>Section Titles</h1>\r\n<p class=\"lead\">Split content with beautiful Section Titles</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col]\r\n\r\n[title text=\"This is a normal title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title with Icon\" icon=\"icon-star\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link and icon\" icon=\"icon-star-o\" size=\"undefined\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold title\" size=\"171\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold\" text=\"This is a bold title with link\" link_text=\"Click here\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold centered title\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n','Titles / Dividers','','publish','closed','closed','','titles-dividers','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=636',7,'page','',0),(84,1,'2013-08-18 12:30:42','2013-08-18 12:30:42','[gap]\r\n\r\n[ux_banner_grid height=\"575\"]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"large\" bg_color=\"rgb(2, 2, 2)\" bg_pos=\"56% 29%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" width__sm=\"78\" scale=\"99\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" color=\"white\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"13\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"circle\" width=\"full-width\" columns=\"6\"]','Grid Style 2','','publish','closed','closed','','grid-style-2','','','2013-08-18 12:30:42','2013-08-18 12:30:42','',70,'http://localhost:8888/test/?page_id=624',7,'page','',0),(85,1,'2013-08-11 20:13:42','2013-08-11 20:13:42','<p class=\"lead\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla.</p>\r\n[block id=\"faq-accordian\"]','FAQ','','publish','closed','closed','','faq','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',51,'http://localhost:8888/test/?page_id=545',0,'page','',0),(86,1,'2013-08-11 19:57:03','2013-08-11 19:57:03','[ux_banner height=\"398px\" bg=\"17\" bg_pos=\"66% 25%\" parallax=\"2\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Testemonial element</strong></h3>\n<p class=\"lead\">Tell your customers how happy your clients are</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"With image left\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>This is a FANTASTIC Theme. Do you think that in the next version you could try and have it Multilanguage. Because I have nothing bad to say about this theme. Thank a million!</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"With image on Top\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed Vertical\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Testemonials in a row slider\"]\n\n[ux_slider hide_nav=\"true\" nav_color=\"dark\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n\n[/ux_slider]\n[title style=\"center\" text=\"Testemonials in a slider\"]\n\n[ux_slider]\n\n[ux_banner height=\"378px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Testimonials','','publish','closed','closed','','testemonials','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=539',27,'page','',0),(87,1,'2013-08-11 19:54:47','2013-08-11 19:54:47','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\r\n\r\n[text_box width=\"76\"]\r\n\r\n<h1>Buttons</h1>\r\n<p class=\"lead\">Create beautiful Call to Action buttons with the amazing Button Element</p>\r\n[button text=\"Primary Button\" style=\"shade\" link=\"test?asdf&asdf=asdf&asdf&\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Unlimited Variations</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" radius=\"12\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" icon=\"icon-heart\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\" radius=\"6\" icon=\"icon-heart\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg_color=\"rgb(44, 44, 44)\" dark=\"true\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Buttons on Dark background</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n[button text=\"White outline\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Styles</h3>\r\n<p>Select between many different button styles.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Simple link\" style=\"link\"]\r\n\r\n[button text=\"Underline\" style=\"underline\"]\r\n\r\n[button text=\"Outline\" style=\"outline\" depth=\"2\" depth_hover=\"2\"]\r\n\r\n[button text=\"Normal\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Gloss\" style=\"gloss\" radius=\"99\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Shade\" style=\"shade\" radius=\"7\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Bevel\" style=\"bevel\" radius=\"12\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button with icon</h3>\r\n<p>Choose between many included Flatsome Icons.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Icon Button\" style=\"bevel\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Icon Left\" style=\"outline\" radius=\"6\" icon=\"icon-instagram\"]\r\n\r\n[button text=\"Reveal Left\" style=\"outline\" icon=\"icon-play\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Reveal Right\" icon=\"icon-angle-right\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Large Button\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Large Reveal\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-checkmark\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Simple Button Styles</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\" style=\"link\" icon=\"icon-play\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"link\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"link\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"link\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Radius</h3>\r\n<p>Add custom radius to buttons</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Normal Button\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" size=\"large\" radius=\"99\"]\r\n\r\n[button text=\"Normal Button\" style=\"outline\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" style=\"outline\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Shadow</h3>\r\n<p>Add drop shadow to buttons to make them stand out more.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Large Shadow\" style=\"bevel\" size=\"large\" depth=\"5\" depth_hover=\"4\"]\r\n\r\n[button text=\"Medium Shadow\" style=\"bevel\" size=\"large\" depth=\"3\" depth_hover=\"4\"]\r\n\r\n[button text=\"Small Shadow\" style=\"bevel\" size=\"large\" depth=\"1\" depth_hover=\"2\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Sizes</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"x Small\" size=\"xsmall\"]\r\n\r\n[button text=\"Smaller\" size=\"smaller\"]\r\n\r\n[button text=\"Small\" size=\"small\"]\r\n\r\n[button text=\"Normal\"]\r\n\r\n[button text=\"Large\" size=\"large\"]\r\n\r\n[button text=\"Larger\" size=\"larger\"]\r\n\r\n[button text=\"X LARGE\" size=\"xlarge\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Smart Links</h3>\r\n<p>Add simple text to button links to link to various WordPress and WooCommerce pages.</p>\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n<p>\'<strong>shop</strong>\' : Goes to Shop page</p>\r\n<p>\'<strong>account\'</strong> Goes to My Account Page</p>\r\n<p>\'<strong>checkout\'</strong> Goes to Checkout page</p>\r\n<p>\'<strong>blog\'</strong> Goes to blog page</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>\'<strong>home</strong>\' Goes to homepage</p>\r\n<p><strong>\'wishlist</strong>\' Goes to wishlist page</p>\r\n<p>\'<strong>Page Title</strong>\' Goes to page by Title.</p>\r\n\r\n[/col]\r\n\r\n[/row]','Buttons','','publish','closed','closed','','buttons','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=538',6,'page','',0),(88,1,'2013-08-11 19:22:53','2013-08-11 19:22:53','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"480\" image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n[col span=\"6\"]\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.063943945948!2d76.35996151428209!3d10.011577075582984!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080c9d4968ed6b%3A0xac7018beb464c0b!2sInfopark!5e0!3m2!1sen!2sin!4v1607660240044!5m2!1sen!2sin\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0;\" allowfullscreen=\"\" aria-hidden=\"false\" tabindex=\"0\"></iframe>\n\n\n\n\n[/col]\n\n[/row]\n<!-- /wp:html -->','Contact','','publish','closed','closed','','contact','','','2020-12-11 04:17:39','2020-12-11 04:17:39','',51,'http://localhost:8888/test/?page_id=532',0,'page','',0),(89,1,'2013-08-11 19:17:44','2013-08-11 19:17:44','<!-- wp:html -->\nTake a look here on how to setup your blog page: http://docs.uxthemes.com/article/243-how-to-setup-your-blog-page\n<!-- /wp:html -->','Blog','','publish','closed','closed','','contact','','','2020-11-30 20:22:51','2020-11-30 20:22:51','',0,'http://localhost:8888/test/?page_id=530',0,'page','',0),(90,1,'2013-08-11 19:06:15','2013-08-11 19:06:15','<!-- wp:html -->\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n\n[/col]\n\n[/row]\n[ux_banner_grid]\n\n[col_grid span=\"3\"]\n\n[ux_image id=\"555\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"556\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','publish','closed','closed','','about','','','2020-12-11 11:57:10','2020-12-11 11:57:10','',51,'http://localhost:8888/test/?page_id=520',0,'page','',0),(91,1,'2013-08-11 18:47:13','2013-08-11 18:47:13','[map lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgb(255, 255, 255)\" content_width__sm=\"100\" position_x=\"50\" position_x__sm=\"0\" position_y=\"50\" saturation=\"-100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>GOOGLE MAP ELEMENT</strong></h3>\r\n<p class=\"lead\">Add highly customisable Google Maps to any page.</p>\r\n\r\n[/map]\r\n[title style=\"center\" text=\"Examples\" margin_top=\"14px\"]\r\n\r\n[row]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map controls=\"true\"]\r\n\r\n<p><strong>Map With Tools</strong></p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"89\" color=\"#6d5854\"]\r\n\r\n<p>Use any color  for your map</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"86\" position_x=\"5\" position_y=\"5\" saturation=\"-100\"]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[map height=\"589px\" height__sm=\"747px\" lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgba(255, 255, 255, 0.85)\" content_width__sm=\"100\" position_x__sm=\"100\" position_y=\"10\" position_y__sm=\"100\" saturation=\"44\"]\r\n\r\n[title text=\"A map with a Form\" icon=\"icon-envelop\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/map]','Map','','publish','closed','closed','','map','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=514',20,'page','',0),(92,1,'2013-08-11 18:04:55','2013-08-11 18:04:55','[ux_slider bg_color=\"rgb(79, 79, 79)\" hide_nav=\"true\" nav_size=\"normal\"]\r\n\r\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"60% 16%\" parallax=\"2\"]\r\n\r\n[text_box width__sm=\"69\" scale__sm=\"105\" animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n[divider]\r\n\r\n<h2 class=\"uppercase\">Introducing This Spring Fashion News</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"60% 16%\" parallax=\"2\"]\r\n\r\n[text_box width__sm=\"69\" scale__sm=\"105\" animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n<h2 class=\"uppercase\">Introducing This Spring Fashion News</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" parallax=\"2\"]\r\n\r\n[text_box animate=\"blurIn\"]\r\n\r\n<h3 class=\"alt-font\" data-animate=\"fadeInRight\">A nice title on Top</h3>\r\n<h2 class=\"uppercase\">Add anything Here in the Page Builder</h2>\r\n[divider]\r\n\r\n[button text=\"Shop Women\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[title style=\"center\" text=\"Featured Products\" size=\"100\"]\r\n\r\n[ux_products show=\"featured\" image_height=\"112%\"]\r\n\r\n[title style=\"center\" text=\"Browse Categories\" size=\"100\"]\r\n\r\n[ux_product_categories style=\"overlay\" slider_nav_style=\"circle\" animate=\"fadeInLeft\" image_height=\"87%\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest blog posts\" size=\"100\"]\r\n\r\n[blog_posts style=\"bounce\" col_spacing=\"small\" title_size=\"larger\" title_style=\"uppercase\" badge_style=\"circle\" excerpt=\"false\" image_height=\"235px\" image_overlay=\"rgba(0, 0, 0, 0.15)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_size=\"small\"]','Simple Slider','','publish','closed','closed','','simple-slider','','','2013-08-11 18:04:55','2013-08-11 18:04:55','',70,'http://localhost:8888/test/?page_id=501',11,'page','',0),(93,1,'2013-08-11 16:31:20','2013-08-11 16:31:20','[yith_wcwl_wishlist]','Wishlist','','publish','closed','closed','','wishlist','','','2013-08-11 16:31:20','2013-08-11 16:31:20','',11,'http://localhost:8888/test/?page_id=473',0,'page','',0),(94,1,'2013-08-11 15:41:20','2013-08-11 15:41:20','[ux_slider hide_nav=\"true\" bullets=\"false\"]\n\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(19, 6, 6, 0.36)\" bg_pos=\"53% 5%\"]\n\n[text_box width=\"61\" width__sm=\"80\" scale=\"136\" scale__sm=\"154\" position_y=\"75\"]\n\n<h3 class=\"uppercase\"><strong>SLIDER ELEMENT</strong></h3>\n<p class=\"lead\">Create amazing Sliders with our Slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"17\" bg_pos=\"22% 46%\"]\n\n[text_box width=\"40\" width__sm=\"80\" position_y=\"70\"]\n\n<h3>This is a Full Width Slider</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n[button text=\"Click me\" style=\"outline\" radius=\"10\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" slide_effect=\"zoom-in\" bg=\"17\" bg_pos=\"49% 42%\"]\n\n[text_box animate=\"bounceIn\"]\n\n<h3>Add Animations and Slide Effects</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\" h_align=\"center\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h3 class=\"uppercase\"><strong>Drag and Drop Editing</strong></h3>\n<p class=\"lead\">Use the UX Builder to Create amazing homepage sliders and ladingpages.</p>\n\n[/col]\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\n\n[ux_image id=\"16\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" size=\"undefined\"]\n\n[ux_slider style=\"container\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Focused Slider Style\" size=\"undefined\"]\n\n[ux_slider style=\"focus\" bg_color=\"rgb(82, 82, 82)\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Shadow Slide Style\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" bg_color=\"rgb(238, 238, 238)\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Free Scroll Shadow Slider\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" slide_width=\"500px\" bg_color=\"rgb(238, 238, 238)\" freescroll=\"true\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"51% 19%\"]\n\n[text_box width=\"76\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"53% 13%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"66\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"56% 11%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 9%\"]\n\n[text_box width=\"72\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Dark arrows\" size=\"undefined\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(222, 222, 222)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(238, 238, 238)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"light arrows\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(46, 46, 46)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(54, 54, 54)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"always visible arrows\"]\n\n[ux_slider hide_nav=\"true\"]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(229, 191, 191)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(171, 204, 196)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Simple arrows\"]\n\n[ux_slider hide_nav=\"true\" nav_style=\"simple\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav Circle outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_color=\"dark\" bullets=\"false\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]','Sliders','','publish','closed','closed','','sliders','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=464',3,'page','',0),(95,1,'2013-08-11 15:26:47','2013-08-11 15:26:47','[section bg=\"17\" bg_color=\"rgb(50, 50, 50)\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" dark=\"true\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">Amazing Blog Posts Element</h1>\n<p class=\"lead\">Display your Blog posts in many different ways.</p>\n<ul>\n<li class=\"bullet-checkmark\">Unlimited Styles and Options</li>\n<li class=\"bullet-checkmark\">Select Custom Posts</li>\n<li class=\"bullet-checkmark\">Slider / Row / Grid and Masonry Style</li>\n</ul>\n\n[/col]\n[col span=\"9\"]\n\n[blog_posts style=\"shade\" type=\"slider-full\" grid=\"2\" slider_nav_style=\"circle\" columns=\"1\" title_size=\"larger\" show_date=\"text\" excerpt=\"false\" show_category=\"label\" comments=\"false\" image_size=\"large\" image_overlay=\"rgba(0, 0, 0, 0.09)\" image_hover=\"overlay-remove\" text_size=\"large\" text_hover=\"bounce\" text_padding=\"10% 0px 10% 0px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[title style=\"center\" text=\"Default Style\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\n\n[title style=\"center\" text=\"Bounce Style\" size=\"undefined\"]\n\n[blog_posts style=\"bounce\" badge_style=\"square\" image_height=\"75%\"]\n\n[title style=\"center\" text=\"Push Style\" margin_top=\"17px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" columns=\"3\" badge_style=\"circle-inside\" image_height=\"75%\"]\n\n\n[/section]\n[section bg_color=\"rgb(62, 62, 62)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Blog posts inside a dark section\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" slider_nav_style=\"simple\" slider_nav_color=\"light\" slider_nav_position=\"outside\" columns=\"3\" image_height=\"56.25%\"]\n\n\n[/section]\n[title style=\"center\" text=\"Vertical Slide Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"2\" image_height=\"89%\" image_width=\"43\"]\n\n[title style=\"center\" text=\"Animated Blog posts in grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" animate=\"fadeInUp\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Overlay Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.17)\" image_hover=\"zoom\"]\n\n[title style=\"center\" text=\"Overlay Grayscale\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" animate=\"fadeInLeft\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.56)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>Select between many different Hover Styles</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Read More button\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" depth=\"2\" readmore=\"Read More\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"shade\" type=\"grid\" columns=\"3\" depth=\"1\" posts=\"4\" title_size=\"larger\" title_style=\"uppercase\" readmore=\"Read More\" badge_style=\"circle-inside\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Masonery Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"masonry\" columns=\"3\" depth=\"2\" image_height=\"180px\"]','Blog Posts','','publish','closed','closed','','blog-posts','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=456',8,'page','',0),(96,1,'2013-08-11 15:20:04','2013-08-11 15:20:04','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[row]\n\n[col span=\"4\"]\n\n<h1>Tabs Element</h1>\n<p>Ad flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed.  </p>\n\n[/col]\n[col span=\"8\"]\n\n[tabgroup style=\"tabs\"]\n\n[tab title=\"Tab 3 Title\"]\n\n<p> lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 1 Title\"]\n\n<p>Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed..</p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n\n[/section]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs Bottom\" style=\"line-bottom\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Tabs Pills Centered\" style=\"pills\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Outline Tabs Centered\" style=\"outline\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[tabgroup title=\"Line Grow Tabs Center\" style=\"line-grow\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col]\n\n[tabgroup title=\"Vertical Tabs\" type=\"vertical\"]\n\n[tab title=\"Top tab\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee yr.</p>\n\n[/tab]\n[tab title=\"This is tab\"]\n\n<p>Laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"this is another tab\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span__sm=\"12\"]\n\n[tabgroup style=\"outline\" type=\"vertical\"]\n\n[tab title=\"Tab title 1\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 2\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 3\"]\n\n<p>Church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Tabs','','publish','closed','closed','','tabs','','','2020-11-09 14:50:23','2020-11-09 14:50:23','',97,'http://localhost:8888/test/?page_id=453',25,'page','',0),(97,1,'2013-08-09 22:37:13','2013-08-09 22:37:13','<!-- wp:html -->\n[block id=\"elements-overview\"]\n<!-- /wp:html -->','Elements','','publish','closed','closed','','elements','','','2020-12-01 07:15:03','2020-12-01 07:15:03','',0,'http://localhost:8888/test/?page_id=288',0,'page','',0),(98,1,'2013-08-06 20:13:19','2013-08-06 20:13:19','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.02)\" bg_pos=\"58% 63%\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" animate=\"flipInY\"]\r\n<h3 class=\"alt-font\">It has Finally started...</h3>\r\n[divider margin=\"3px\"]\r\n<h1 class=\"h-large uppercase\"><span style=\"font-size: 160%;\"><strong>HUGE SALE</strong></span></h1>\r\n<h1 class=\"uppercase\"><span style=\"font-size: 100%;\">UP TO <strong>70% OFF</strong></span></h1>\r\n[divider]\r\n\r\n[button text=\"Shop men\" color=\"white\" style=\"outline\" link=\"#\"]\r\n\r\n[button text=\"Shop women\" color=\"white\" style=\"outline\" link=\"#\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\" link=\"#\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.03)\"  bg_pos=\"72% 6%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"85\" animate=\"fadeInLeft\" position_x=\"10\" position_x__sm=\"50\" text_color=\"dark\"]\r\n<h3 class=\"alt-font\">Mens Clothing</h3>\r\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Hot Summer Fashion</strong></h2>\r\n<h3><strong>From 19$</strong></h3>\r\n[divider]\r\n\r\n[button text=\"Shop now\" style=\"outline\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"57% 49%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"84\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n<h3 class=\"alt-font\">Shop Now</h3>\r\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>This is an awesome video banner</strong></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Shop Men\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" style=\"outline\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.05)\" bg_pos=\"67% 70%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\" animate=\"fadeInLeft\" position_x=\"90\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n<h3 class=\"alt-font\">A Nice top title</h3>\r\n<h2 class=\"uppercase\" data-animate=\"fadeInLeft\" data-animated=\"true\"><strong>Change this</strong></h2>\r\n<h2 class=\"uppercase\"><strong>to Anything</strong></h2>\r\n<p class=\"lead\">This can easily be edited in the page builder.</p>\r\n[button text=\"Browse Products\"]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_pos=\"55% 11%\" hover=\"zoom-fade\" link=\"blog\"]\r\n\r\n[text_box]\r\n<h2><strong><span class=\"uppercase\">Our Blog</span></strong></h2>\r\n[divider]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" hover=\"zoom-fade\" link=\"http://localhost:8888/test/blog/\"]\r\n\r\n[text_box]\r\n<h2><strong><span class=\"uppercase\">Join our\r\n<span style=\"font-size: 85%;\">competition</span></span></strong></h2>\r\n[divider]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_pos=\"71% 0%\" hover=\"zoom-fade\" link=\"about-us\"]\r\n\r\n[text_box]\r\n<h2><strong><span class=\"uppercase\">ABOUT US</span></strong></h2>\r\n[divider]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"weekly featured products\"]\r\n\r\n[ux_products products=\"14\" show=\"featured\"]\r\n\r\n[title style=\"center\" text=\"Best Selling Products\" size=\"undefined\"]\r\n\r\n[ux_products products=\"8\" orderby=\"sales\"]\r\n\r\n[title style=\"center\" text=\"Browse our categories\"]\r\n\r\n[ux_product_categories number=\"20\"]\r\n\r\n[gap height=\"40px\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\"]\r\n\r\n[featured_box img=\"16\" img_width=\"46\" pos=\"center\" title=\"Free Shipping on all orders\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\r\n\r\nGet Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[featured_box img=\"16\" img_width=\"46\" pos=\"center\" title=\"Amazing customer service\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\r\n\r\nGet Free Shipping on all orders over $75 and free returns to our UK returns centre! Items are dispatched from the US and will arrive in 5-8 days.\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[featured_box img=\"16\" img_width=\"46\" pos=\"center\" title=\"No Customs or Duty Fees!\" icon_border=\"2\" icon_color=\"rgb(182, 182, 182)\" margin=\"0px 0px 0px 0px\"]\r\n\r\nWe pay these fees so you don’t have to! The total billed at checkout is the final amount you pay, inclusive of VAT, with no additional charges at the time of delivery!\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap height=\"40px\"]\r\n\r\n[ux_slider timer=\"2000\"]\r\n\r\n[ux_banner height=\"300px\" bg=\"17\" parallax=\"1\"]\r\n\r\n[text_box width=\"78\"]\r\n\r\n[testimonial image_width=\"128\" name=\"Lucy Anderson\" company=\"Facebook\" stars=\"3\"]\r\n\r\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\r\n\r\n[/testimonial]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"300px\" bg=\"17\" parallax=\"1\"]\r\n\r\n[text_box width=\"80\"]\r\n\r\n[testimonial image_width=\"117\" name=\"Rebecca Smith\" company=\"Twitter\" stars=\"3\"]\r\n\r\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\r\n\r\n[/testimonial]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"300px\" bg=\"17\" parallax=\"1\"]\r\n\r\n[text_box width=\"80\"]\r\n\r\n[testimonial image_width=\"131\" name=\"Jenny Brooks\" company=\"LinkedIn\"]\r\n\r\nPBR kogi VHS commodo, single-origin coffee selvage kale chips. Fugiat try-hard ad aesthetic, tofu master cleanse typewriter tote bag accusamus sustainable ennui hella small batch cliche.\r\n\r\n[/testimonial]\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns__sm=\"1\" animate=\"fadeInLeft\" posts=\"4\" image_height=\"70%\"]','Classic Shop','','publish','closed','closed','','classic-shop','','','2013-08-06 20:13:19','2013-08-06 20:13:19','',70,'http://localhost:8888/test/?page_id=17',1,'page','',0),(99,1,'2020-11-09 14:49:48','2020-11-09 14:49:48','','Left Sidebar','','inherit','closed','closed','','28-revision-v1','','','2020-11-09 14:49:48','2020-11-09 14:49:48','',28,'http://demoweblinks.in/marlins/2020/11/09/28-revision-v1/',0,'revision','',0),(100,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[title style=\"center\" text=\"Flip book element\"]\n\n[ux_product_flip]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Create a Flip Book for any product category. You can also select custom posts.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Flip Book','','inherit','closed','closed','','29-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',29,'http://demoweblinks.in/marlins/2020/11/09/29-revision-v1/',0,'revision','',0),(101,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider infinitive=\"false\" parallax=\"2\" hide_nav=\"true\" nav_size=\"normal\" nav_style=\"simple\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"30% 57%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Welcome to our Fashion shop</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"62% 18%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"74% 14%\"]\r\n\r\n[text_box width=\"45\" width__sm=\"78\" scale__sm=\"125\" position_x=\"5\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Welcome to our Fashion shop</strong></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Click me!\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Slider Cover','','inherit','closed','closed','','30-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',30,'http://demoweblinks.in/marlins/2020/11/09/30-revision-v1/',0,'revision','',0),(102,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"100%\" bg=\"17\"]\r\n\r\n[text_box]\r\n\r\n[ux_image id=\"16\" width=\"24\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Flatsome 3.0</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.2)\" month=\"12\" day=\"24\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Maintenance','','inherit','closed','closed','','31-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',31,'http://demoweblinks.in/marlins/2020/11/09/31-revision-v1/',0,'revision','',0),(103,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"100%\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" video_mp4=\"/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[text_box width=\"53\" width__sm=\"87\" scale__sm=\"125\" margin=\"30px 0px 30px 0px\"]\n\n<h3 class=\"alt-font\">A Fancy top Title</h3>\n<h1 class=\"uppercase\"><strong>Welcome to COOL Our Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Shop now\" color=\"white\" link=\"shop\"]\n\n\n[/text_box]\n\n[/ux_banner]','Video Cover','','inherit','closed','closed','','32-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',32,'http://demoweblinks.in/marlins/2020/11/09/32-revision-v1/',0,'revision','',0),(104,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"300px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"60\"]\n\n<h3 class=\"uppercase\"><strong>Our Stores</strong></h3>\n[divider]\n\n[share]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\">About our stores. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[tabgroup type=\"vertical\"]\n\n[tab title=\"New York\"]\n\n[map lat=\"40.7902\" saturation=\"-58\"]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"London\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Oslo\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Stockholm\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n[tab title=\"Add as many as you want\"]\n\n[map]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Our Stores','','inherit','closed','closed','','33-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',33,'http://demoweblinks.in/marlins/2020/11/09/33-revision-v1/',0,'revision','',0),(105,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg=\"17\" bg_color=\"rgb(246, 246, 246)\" parallax=\"3\" padding=\"19px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"6\" span__sm=\"12\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"large\" bg_color=\"rgb(255, 255, 255)\" bg_pos=\"65% 16%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"50\" scale=\"99\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<p class=\"lead alt-font\"><span style=\"font-size: 190%;\">Add any text here...</span></p>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>New arrivals on the shop</strong></span></h2>\r\n[divider align=\"left\"]\r\n\r\n[button text=\"Browse\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"7\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_pos=\"58% 24%\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"76\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"67\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"5\" height=\"1-2\" depth=\"1\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom-fade\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Add Any Headline here</strong></h2>\r\n[divider]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Featured Products\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[ux_products show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories]\r\n\r\n[gap height=\"36px\"]\r\n\r\n[ux_banner height=\"366px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" bg_pos=\"60% 0%\" parallax=\"1\"]\r\n\r\n[text_box width=\"37\" width__sm=\"78\" position_x=\"10\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonumm.</p>\r\n[gap height=\"18px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" badge_style=\"square\" image_height=\"200px\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow on instagram\" icon=\"icon-instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\"]','Grid Style 3','','inherit','closed','closed','','34-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',34,'http://demoweblinks.in/marlins/2020/11/09/34-revision-v1/',0,'revision','',0),(106,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider slide_width=\"100%\" bullets=\"false\"]\r\n\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"70% 17%\"]\r\n\r\n[text_box width=\"56\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x=\"5\" position_x__sm=\"10\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h1><span style=\"font-size: 80%;\"><strong>WordPress & WooCommerce Expert</strong></span></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n[button text=\"My Work\" color=\"white\" style=\"outline\" radius=\"99\" link=\"Portfolio\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"63\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y=\"25\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>A small but focused Web Studio</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Learn more\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"About\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"62% 50%\"]\r\n\r\n[text_box width=\"80\" width__sm=\"85\" width__md=\"52\" animate=\"fadeInLeft\" position_x__sm=\"10\" position_x__md=\"5\" position_y__sm=\"90\" text_depth=\"1\"]\r\n\r\n<h2><strong>Services</strong></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[button text=\"Contact Now\" color=\"white\" style=\"outline\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Contact\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]','Freelancer','','inherit','closed','closed','','35-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',35,'http://demoweblinks.in/marlins/2020/11/09/35-revision-v1/',0,'revision','',0),(107,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider]\r\n\r\n[ux_banner height=\"600px\" bg_overlay=\"rgba(246, 208, 45, 0.94)\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"95\" position_x__sm=\"95\" position_y=\"5\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"57\" width__sm=\"84\" scale__sm=\"111\" animate=\"flipInY\"]\r\n\r\n<h1 class=\"uppercase\"><span style=\"font-size: 400%;\" data-line-height=\"xs\"><strong>Sale</strong></span></h1>\r\n<h2 class=\"lead\">Summer Sale has Started</h2>\r\n[ux_countdown style=\"text\" size=\"114\" color=\"light\"]\r\n\r\n[gap height=\"23px\"]\r\n\r\n[button text=\"Shop men\" color=\"white\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\"]\r\n\r\n[button text=\"Shop All\" color=\"white\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"600px\" bg=\"17\" bg_pos=\"84% 0%\" border=\"2px 2px 2px 2px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_radius=\"undefined\"]\r\n\r\n[text_box style=\"circle\" width=\"15\" width__sm=\"29\" rotate=\"1\" animate=\"fadeInRight\" position_x=\"100\" position_x__sm=\"95\" position_y=\"15\" position_y__sm=\"5\" border=\"2px 2px 2px 2px\" border_margin=\"5px 5px 5px 5px\" border_style=\"dashed\" border_radius=\"100\" border_color=\"rgba(255, 255, 255, 0.19)\"]\r\n\r\n<h3>Up to<br /><span style=\"font-size: 160%;\"><strong>50<span style=\"font-size: 75%;\">%</span><br /></strong></span>off</h3>\r\n\r\n[/text_box]\r\n[text_box width=\"50\"]\r\n\r\n<h2 class=\"uppercase\">Shop Fashion Clothes today</h2>\r\n<h3 class=\"thin-font\">Add any text here..</h3>\r\n[button text=\"Shop now\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row depth=\"1\" depth_hover=\"5\"]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"50% 12%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>About us</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"60% 18%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>OUR BLOG</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"51% 35%\" border=\"1px 1px 1px 1px\" border_margin=\"10px 10px 10px 10px\" border_style=\"dashed\" border_color=\"rgba(0, 0, 0, 0.16)\"]\r\n\r\n[text_box width=\"68\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>NEWSLETTER</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Latest products on sale\" size=\"undefined\"]\r\n\r\n[ux_products depth=\"1\" depth_hover=\"4\" orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Browse our Categories\" size=\"undefined\"]\r\n\r\n[ux_product_categories depth=\"1\" depth_hover=\"4\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" icon=\"instagram\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" depth=\"1\"]\r\n\r\n[gap height=\"58px\"]\r\n\r\n[ux_banner height=\"407px\" bg=\"17\" bg_color=\"rgb(18, 18, 18)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\" bg_pos=\"79% 0%\" parallax=\"1\" border=\"2px 0px 2px 0px\" border_margin=\"10px 0px 10px 0px\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(255, 255, 255, 0.22)\"]\r\n\r\n[text_box width=\"47\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Don\'t miss a sale</strong></h2>\r\n<h3 class=\"thin-font\">Sign up for our Newsletter</h3>\r\n[gap height=\"32px\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts columns=\"3\" depth=\"1\" depth_hover=\"4\" image_height=\"181px\"]','Big Sale','','inherit','closed','closed','','36-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',36,'http://demoweblinks.in/marlins/2020/11/09/36-revision-v1/',0,'revision','',0),(108,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[title text=\"Add responsive Video Embeds\" size=\"undefined\"]\n\n<p class=\"lead\">Add Responsive video embed to your site by using the Page Builder.</p>\n<h3>YOUTUBE</h3>\n[ux_video height=\"46%\"]\n\n<h3>VIMEO</h3>\n[ux_video url=\"https://vimeo.com/180255453\" height=\"54%\"]','Video','','inherit','closed','closed','','37-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',37,'http://demoweblinks.in/marlins/2020/11/09/37-revision-v1/',0,'revision','',0),(109,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"450px\" bg=\"17\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button size=\"118\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.52)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Video Button</strong></h3>\n<p class=\"lead\">Add a video button that opens Youtube and Viemo videos anywhere.</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"17\"]\n\n[text_box position_x=\"10\" position_y=\"10\" text_align=\"left\" text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Change Size</strong></h3>\n<p class=\"lead\">You can change the size to anything</p>\n[video_button size=\"202\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" depth=\"2\" depth_hover=\"4\"]\n\n[ux_banner height=\"450px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.45)\" hover=\"overlay-add\"]\n\n[text_box hover=\"zoom-in\"]\n\n<h3 class=\"uppercase\"><strong>Show on Hover</strong></h3>\n<p class=\"lead\">Select between various hover effects</p>\n[video_button]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]','Video Button','','inherit','closed','closed','','38-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',38,'http://demoweblinks.in/marlins/2020/11/09/38-revision-v1/',0,'revision','',0),(110,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.71)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>GALLERY ELEMENT</strong></h3>\r\n<p class=\"lead\">Create Galleries by using Image IDs and drag and drop. You can easily create galleries from the Page Builder.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple GAllery Row with lightbox\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Full Width Gallery\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" width=\"full-width\" col_spacing=\"collapse\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Gallery width Small gap\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" style=\"shade\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"light\" slider_nav_position=\"outside\" col_spacing=\"xsmall\" depth=\"1\" depth_hover=\"undefined\" image_height=\"81%\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"zoom\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\"]\r\n\r\n[title style=\"center\" text=\"Slider Gallery\" margin_top=\"21px\"]\r\n\r\n[ux_gallery ids=\"8896,8895,8894,8893,8892,8898,8899,8900\" type=\"slider\" grid_height=\"undefined\" slider_nav_style=\"undefined\" slider_nav_color=\"undefined\" slider_nav_position=\"undefined\" col_spacing=\"undefined\" depth=\"1\" depth_hover=\"undefined\" image_height=\"undefined\" image_width=\"undefined\" image_size=\"undefined\" image_overlay=\"undefined\" image_hover=\"undefined\" image_hover_alt=\"undefined\" text_pos=\"undefined\" text_align=\"undefined\" text_size=\"undefined\" text_hover=\"undefined\" text_bg=\"undefined\" text_color=\"undefined\" text_padding=\"undefined\"]','Galleries','','inherit','closed','closed','','39-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',39,'http://demoweblinks.in/marlins/2020/11/09/39-revision-v1/',0,'revision','',0),(111,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"17\" bg_color=\"rgb(27, 15, 15)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" icon=\"search\" size=\"large\" position_x=\"15\" position_y=\"25\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_x=\"10\" position_y=\"85\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"90\"]\n\n<h2 class=\"uppercase\">Banner with hotspots</h2>\n<p class=\"thin-font lead\">Add Hotspots anywhere by using the drag and drop Page Builder.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"62%\" slide_effect=\"zoom-out-fast\" bg=\"17\" bg_color=\"rgba(0, 0, 0, 0.25)\" bg_overlay=\"rgba(0, 0, 0, 0.03)\" bg_pos=\"42% 29%\"]\n\n[ux_hotspot type=\"product\" prod_id=\"416\" size=\"large\" position_x=\"80\" position_y=\"30\" position_y__sm=\"35\"]\n\n[ux_hotspot text=\"Add a custom text here\" link=\"#customlink\" size=\"large\" animate=\"flipInY\" position_y=\"35\"]\n\n[text_box text_color=\"dark\" width=\"36\" width__sm=\"32\" scale__sm=\"58\" position_x=\"10\"]\n\n<h2 class=\"uppercase\">Create Lookbooks </h2>\n<p class=\"thin-font lead\">Create beautiful lookbooks by combining the banner, hotspot and slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Hotspot','','inherit','closed','closed','','40-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',40,'http://demoweblinks.in/marlins/2020/11/09/40-revision-v1/',0,'revision','',0),(112,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.62)\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"8\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(246, 246, 246)\" border=\"1px 0px 0px 0px\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" margin=\"px px px px\"]\r\n\r\n<h3>Find Something You love</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscin.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Shop By Category\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"normal\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"5\" depth=\"1\" image_height=\"230px\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title style=\"center\" text=\"Latest  Collections\" size=\"undefined\"]\r\n\r\n[ux_products style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"1\" orderby=\"date\" image_width=\"42\" text_size=\"large\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"318px\" bg=\"17\" bg_color=\"rgb(80, 80, 80)\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" bg_pos=\"22% 29%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Become a Vendor</strong></h3>\r\n<p class=\"lead\">Want to sell on Flatsome Vendor? We\'re looking for shop to join us.</p>\r\n[button text=\"Learn More\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Apply Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(244, 244, 244)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"bold-center\" text=\"How it Works\" size=\"undefined\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Apply to be a Vendor</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Upload your products</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Sell and make money</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[gap height=\"36px\"]\r\n\r\n[title style=\"bold-center\" text=\"Latest Reviews\" size=\"undefined\"]\r\n\r\n[ux_slider nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\r\n\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n[row_inner]\r\n\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n[col_inner span=\"4\" span__sm=\"12\"]\r\n\r\n[testimonial image=\"3833\" name=\"Name\" company=\"Lastname\"]\r\n\r\n<p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</em></p>\r\n\r\n[/testimonial]\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/ux_slider]\r\n[title style=\"bold-center\" text=\"From The Blog\" size=\"undefined\"]\r\n\r\n[blog_posts slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" depth=\"1\" image_height=\"180px\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Vendor Shop','','inherit','closed','closed','','41-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',41,'http://demoweblinks.in/marlins/2020/11/09/41-revision-v1/',0,'revision','',0),(113,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[message_box bg_color=\"rgb(69, 69, 69)\" padding=\"7\"]\r\n\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\r\n\r\n<p><strong>BIG SUMMER SALE HAS STARTED. UP TO 70% OFF   </strong>Make sure you</p>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\r\n\r\n[ux_countdown style=\"text\" size=\"94\" color=\"light\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]\r\n[ux_slider]\r\n\r\n[ux_banner height=\"706px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"40% 54%\"]\r\n\r\n[text_box width=\"69\" width__sm=\"80\"]\r\n\r\n<p class=\"alt-font\"><span style=\"font-size: 200%;\">It has finally started</span></p>\r\n<h1><span style=\"font-size: 130%;\"><strong>BIG SUMMER SALE</strong></span></h1>\r\n[ux_countdown size=\"307\" color=\"light\" bg_color=\"rgba(255, 255, 255, 0.86)\"]\r\n\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop all\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"8\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h1 class=\"uppercase\">Welcome to our Shop</h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Browse products\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"8\" grid_height=\"300px\" depth=\"1\" depth_hover=\"4\" number=\"7\" text_pos=\"middle\" text_size=\"large\"]\r\n\r\n[gap height=\"54px\"]\r\n\r\n[ux_banner height=\"387px\" bg=\"17\" bg_pos=\"49% 7%\"]\r\n\r\n[text_box width=\"40\" width__sm=\"76\" position_x=\"5\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h2 class=\"uppercase\"><strong>never miss a sale again</strong></h2>\r\n<p class=\"lead\">Sign up for our Newsletter</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Latest news\" size=\"undefined\"]\r\n\r\n[blog_posts depth=\"1\" depth_hover=\"4\" image_height=\"68%\"]','Sale Countdown','','inherit','closed','closed','','42-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',42,'http://demoweblinks.in/marlins/2020/11/09/42-revision-v1/',0,'revision','',0),(114,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"100%\" bg=\"17\" bg_color=\"#FFF\"]\r\n\r\n[text_box text_color=\"dark\" width=\"61\" width__sm=\"85\" animate=\"fadeInUp\"]\r\n\r\n<h2><span style=\"font-size: 170%;\"><strong>Go Explore</strong></span></h2>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[divider]\r\n\r\n[search]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section label=\"Simple Light\" bg_color=\"rgb(245, 245, 245)\" padding=\"27px\" border=\"1px 0px 0px 0px\" border_color=\"rgb(235, 235, 235)\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n[featured_box margin=\"px px px px\"]\r\n\r\n<h3>Explore Things</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Book Events</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<h3>Find a hotel</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Thing to do\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" cat=\"114\"]\r\n\r\n[title style=\"center\" text=\"Go Explore\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"70\" width__sm=\"100\" scale=\"187\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Find a Beach</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Explore THe CITY</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>EXPLORE OUTDOORS</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>TAILORED SUITES</strong></h3>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.58)\" hover=\"glow\" hover_alt=\"overlay-add\" link=\"#\"]\r\n\r\n[text_box width=\"40\" width__sm=\"97\"]\r\n\r\n<h3 class=\"uppercase\"><strong>ENJOY A DRINK</strong></h3>\r\n<p> </p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[gap]\r\n\r\n[ux_banner height=\"400px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.49)\" bg_pos=\"26% 17%\"]\r\n\r\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\"]\r\n\r\n<h3 class=\"uppercase\"><strong>List your Company</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Apply Now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Latest From Blog\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" show_date=\"text\" excerpt=\"false\" comments=\"false\" image_height=\"293px\" image_hover=\"zoom\" text_align=\"left\"]\r\n\r\n[title style=\"center\" text=\"Follow on Instagram\" icon=\"icon-instagram\" margin_top=\"25px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed type=\"slider\" width=\"full-width\" columns=\"6\"]','Explore','','inherit','closed','closed','','43-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',43,'http://demoweblinks.in/marlins/2020/11/09/43-revision-v1/',0,'revision','',0),(115,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"261px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"54% 100%\" parallax=\"3\"]\n\n[text_box parallax=\"-4\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Create Powerful Forms</strong></h3>\n<p class=\"lead\">Create Powerful forms with the integrated Contact Form 7 Plugin.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\" mask=\"arrow\" padding=\"45px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Simple Contact Form\" size=\"undefined\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Simple Center\" bg_color=\"rgb(0, 0, 0)\" dark=\"true\" mask=\"arrow\" padding=\"60px\" height=\"300px\" border_color=\"rgb(235, 235, 235)\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Contact Form Flat\"]\n\n(insert contact form here)\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Newsletter signup\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n[title text=\"Newsletter signup 2\" size=\"undefined\"]\n\n(insert contact form here)\n\n<p class=\"lead\">These forms are included as Contact Form 7 Presets.</p>\n\n[/col]\n\n[/row]\n\n[/section]','Forms','','inherit','closed','closed','','44-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',44,'http://demoweblinks.in/marlins/2020/11/09/44-revision-v1/',0,'revision','',0),(116,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"377px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"60% 22%\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>PRICE TABLE ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap]\r\n\r\n[title text=\"3 Column price table with text on left\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\" padding=\"0 20px 0 0\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\" color=\"dark\" bg_color=\"rgb(122, 44, 205)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" color=\"dark\" bg_color=\"rgba(0, 0, 0, 0.99)\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\" color=\"dark\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" enabled=\"false\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Disabled\" enabled=\"false\"]\r\n\r\n[button text=\"Click me!\" color=\"white\" style=\"underline\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"#f1f1f1\" bg_color=\"rgb(243, 243, 243)\" margin=\"-1px\"]\r\n\r\n[title text=\"3 Column price table inside a background\"]\r\n\r\n[gap]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Silver\" description=\"Enter description here...\" price=\"29$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\" radius=\"10\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Gold\" description=\"Enter description here...\" price=\"49$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tooltip. Add extra info here.\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" style=\"shade\" size=\"larger\" radius=\"10\" depth=\"4\" depth_hover=\"5\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Platinium\" description=\"Enter description here...\" price=\"129$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" padding=\"0 0 0 20px\"]\r\n\r\n<h3>Pricing</h3>\r\n[divider]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.reLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy. Add any text here</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row style=\"collapse\"]\r\n\r\n[col]\r\n\r\n[title style=\"center\" text=\"4 Column collapsed\"]\r\n\r\n[gap]\r\n\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[button text=\"Click me!\" radius=\"99\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section bg=\"17\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(255, 255, 255, 0.5)\" parallax=\"3\" padding=\"49px\"]\r\n\r\n[row style=\"small\" depth=\"2\"]\r\n\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\" featured=\"true\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n[col span=\"3\" animate=\"fadeInUp\"]\r\n\r\n[ux_price_table title=\"Enter title here..\" description=\"Enter description here...\" price=\"99$\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n[bullet_item text=\"Enter text here..\" tooltip=\"Tolltip text\"]\r\n\r\n[bullet_item text=\"Enter text here..\"]\r\n\r\n\r\n[/ux_price_table]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Price table','','inherit','closed','closed','','45-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',45,'http://demoweblinks.in/marlins/2020/11/09/45-revision-v1/',0,'revision','',0),(117,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.44)\" bg_pos=\"32% 28%\" parallax=\"3\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>SEARCH ELEMENT</strong></h3>\n<p class=\"lead\">Insert a Product Search box anywhere</p>\n[search style=\"flat\" size=\"xlarge\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Default style\"]\n\n[search]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title text=\"Flat style\"]\n\n[search style=\"flat\"]\n\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"17\" bg_pos=\"58% 16%\"]\n\n[text_box width=\"37\" position_x=\"0\" text_align=\"left\"]\n\n<h3 class=\"uppercase\"><strong>Search box inside a banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[gap height=\"25px\"]\n\n[search size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]','Search box','','inherit','closed','closed','','46-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',46,'http://demoweblinks.in/marlins/2020/11/09/46-revision-v1/',0,'revision','',0),(118,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"405px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.94)\" bg_pos=\"53% 30%\"]\r\n\r\n[text_box text_color=\"dark\"]\r\n\r\n[ux_image id=\"16\" width=\"23\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Instagram element</strong></h3>\r\n<p class=\"lead\">Add beautiful instagram images anywhere on your site</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple Grid\" icon=\"icon-instagram\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]\r\n\r\n[title style=\"center\" text=\"Simple slider\" icon=\"icon-instagram\" margin_top=\"32px\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" slider_nav_position=\"outside\" col_spacing=\"small\"]\r\n\r\n[title style=\"center\" text=\"full width slider Black and white\" icon=\"icon-instagram\" margin_top=\"43px\"]\r\n\r\n[ux_instagram_feed username=\"topshop\" image_hover=\"color\" type=\"slider\" slider_nav_color=\"light\" width=\"full-width\" columns=\"6\"]','Instagram feed','','inherit','closed','closed','','47-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',47,'http://demoweblinks.in/marlins/2020/11/09/47-revision-v1/',0,'revision','',0),(119,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"338px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.41)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Accordion element</strong></h3>\r\n<p class=\"lead\">Create beautiful accordion sections. You can add any element to the accordion panels.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Simple accordion\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[accordion]\r\n\r\n[accordion-item title=\"Accordion Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 1 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Accordion Item 2 Title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add any element to accordion\"]\r\n\r\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\r\n\r\n[button text=\"Click me!\" style=\"outline\"]\r\n\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n\r\n[/row]','Accordion','','inherit','closed','closed','','48-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',48,'http://demoweblinks.in/marlins/2020/11/09/48-revision-v1/',0,'revision','',0),(120,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"375px\" bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.36)\"]\r\n\r\n[text_box width=\"51\"]\r\n\r\n<h3 class=\"uppercase\"><strong>LOGO ELEMENT</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Normal logos\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n[logo img=\"16\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Dashed Grid\" margin_top=\"19px\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Slider\" margin_top=\"57px\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[ux_slider freescroll=\"true\" hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Logos in a Full width slider\" margin_top=\"57px\"]\r\n\r\n[ux_slider bg_color=\"rgb(247, 247, 247)\" infinitive=\"false\" freescroll=\"true\" hide_nav=\"true\" nav_style=\"simple\" nav_color=\"dark\" bullets=\"false\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n[logo img=\"16\" hover=\"color\"]\r\n\r\n\r\n[/ux_slider]','Logo','','inherit','closed','closed','','49-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',49,'http://demoweblinks.in/marlins/2020/11/09/49-revision-v1/',0,'revision','',0),(121,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"364px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.87)\" bg_pos=\"80% 19%\" parallax=\"2\"]\n\n[text_box text_color=\"dark\"]\n\n<h3 class=\"uppercase\"><strong>Portfolio Element</strong></h3>\n<p>Showcase work or other elements</p>\n[divider width=\"67px\" height=\"5px\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple with Filtering\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"slide\"]\n\n[title style=\"center\" text=\"Ouline Filter style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" orderby=\"name\" type=\"masonry\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"blur\" text_pos=\"middle\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can choose between many differnt filter navigation style and align them to left or right.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Slider Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"shade\" filter_nav=\"outline\" orderby=\"name\" grid=\"3\" columns=\"5\" image_hover=\"zoom\" image_hover_alt=\"grayscale\"]\n\n[title style=\"center\" text=\"Grid Style\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" offset=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[title style=\"center\" text=\"Collapsed Full width Grid\" size=\"undefined\"]\n\n[ux_portfolio style=\"overlay\" filter=\"true\" filter_nav=\"outline\" number=\"4\" orderby=\"name\" type=\"grid\" grid=\"3\" width=\"full-width\" col_spacing=\"collapse\" image_hover=\"overlay-add-50\" image_hover_alt=\"zoom\" text_align=\"left\" text_size=\"large\" text_hover=\"bounce\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">Choose between 14 differnt premade grid layouts.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Open in a ligtbox\"]\n\n[ux_portfolio lightbox=\"true\"]','Portfolio','','inherit','closed','closed','','50-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',50,'http://demoweblinks.in/marlins/2020/11/09/50-revision-v1/',0,'revision','',0),(122,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"496px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"52% 2%\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Pages Element</strong></h3>\r\n<p class=\"lead\">Display a list of sub pages of a selected page in a beautiful way. Very useful if you need to link to sub pages from a parent page.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"center\" text=\"Default Style\"]\r\n\r\n[ux_pages parent=\"3021\" depth=\"1\" text_align=\"center\" text_padding=\"10px 10px 10px 10px\"]','Pages','','inherit','closed','closed','','51-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',51,'http://demoweblinks.in/marlins/2020/11/09/51-revision-v1/',0,'revision','',0),(123,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[scroll_to title=\"Welcome Banner\" link=\"welcome\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60\" position_y=\"20\"]\n\n<h1 class=\"lead\"><strong>Scroll To</strong> Element</h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another banner\" link=\"another_banner\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.26)\" parallax=\"2\"]\n\n[text_box width=\"50\" width__sm=\"60\" animate=\"fadeInRight\" position_x=\"0\" position_y=\"40\" text_align=\"left\"]\n\n<h1 class=\"lead\"><strong>Another Banner</strong></h1>\n<p class=\"lead\">Create Scroll To elements to navigate the site with small bullets on the side. You can also disable the bullet and use it for <strong>One Page Navigation</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Another Scroll To banner\" link=\"another_banner_2\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width=\"52\" width__sm=\"60\" animate=\"fadeInUp\" parallax=\"3\"]\n\n<h2><span style=\"font-size: 200%;\">Another Banner</span></h2>\n\n[/text_box]\n\n[/ux_banner]\n[scroll_to title=\"Signup for Newsletter\" link=\"newsletter\"]\n\n[ux_banner height=\"100%\" bg=\"17\" bg_color=\"rgb(43, 7, 7)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\"]\n\n[text_box width=\"74\" width__sm=\"84\" scale=\"120\" scale__sm=\"101\" parallax=\"2\"]\n\n<h3 class=\"uppercase\"><strong>Signup for Newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n(insert contact form here)\n\n\n[/text_box]\n\n[/ux_banner]','Scroll To','','inherit','closed','closed','','52-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',52,'http://demoweblinks.in/marlins/2020/11/09/52-revision-v1/',0,'revision','',0),(124,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"444px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.27)\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>COUNT DOWN ELEMENT</strong></h1>\n<p class=\"lead\">Add beautiful count downs anywhere on the site.</p>\n[ux_countdown size=\"300\" bg_color=\"rgba(0, 0, 0, 0.09)\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Primary Color\"]\n\n[ux_countdown size=\"198\" color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Dark Color\"]\n\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"4\"]\n\n[title style=\"center\" text=\"Light Color\"]\n\n[ux_countdown size=\"200%\" color=\"light\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[ux_banner height=\"600px\" bg=\"17\"]\n\n[text_box text_color=\"dark\" width=\"40\" width__sm=\"60\" animate=\"fadeIn\" position_x=\"10\"]\n\n<h3 class=\"uppercase\">A Countdown Inside A Banner</h3>\n[ux_countdown day=\"30\" time=\"24:00\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap]\n\n\n[/col]\n[col span=\"6\" align=\"center\"]\n\n[title style=\"center\" text=\"Countdown as text\"]\n\n[ux_countdown style=\"text\" size=\"91\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n[col span=\"6\"]\n\n[title style=\"center\" text=\"Countdown as Clock\"]\n\n[ux_countdown color=\"primary\" day=\"30\" time=\"24:00\"]\n\n\n[/col]\n\n[/row]','Countdown','','inherit','closed','closed','','53-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',53,'http://demoweblinks.in/marlins/2020/11/09/53-revision-v1/',0,'revision','',0),(125,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider]\n\n[ux_banner height=\"637px\" bg=\"17\" bg_size=\"original\" bg_pos=\"62% 60%\"]\n\n[text_box text_color=\"dark\" width=\"44\" width__sm=\"90\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"95\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\" style=\"gradient\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"637px\" bg=\"17\" bg_pos=\"62% 68%\"]\n\n[text_box text_color=\"dark\" width=\"50\" width__sm=\"88\" padding=\"30px 30px 30px 30px\" position_x=\"5\" position_y__sm=\"90\" text_align=\"left\" bg=\"rgba(255, 255, 255, 0.94)\" depth=\"1\"]\n\n<h6>A smaller header</h6>\n<h3 class=\"uppercase\">Add Some Corporate Header Here</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"A button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[row style=\"large\" col_style=\"divided\" h_align=\"center\"]\n\n[col span=\"4\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Company Feature 1\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Company Feature 2\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Company Feature 3\" icon_border=\"2\" margin=\"0px 0px 0px 0px\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Left\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"2\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with image left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h2 class=\"uppercase\">Section with Image right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"Add Any content here\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"43px\" height=\"276px\" border=\"1px 0px 1px 0px\"]\n\n[row v_align=\"equal\"]\n\n[col span=\"3\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">Latest News</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod .</p>\n[button text=\"Our blog\"]\n\n\n[/col]\n[col span=\"9\" span__sm=\"12\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"circle\" columns=\"2\" depth=\"1\" image_height=\"223px\" image_width=\"40\" text_align=\"left\" text_bg=\"rgb(255, 255, 255)\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[message_box bg_color=\"rgb(74, 74, 74)\" padding=\"36\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"7\" span__sm=\"12\"]\n\n<h2 class=\"uppercase\">ADd a callout header here</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"right\"]\n\n[button text=\"Callout button\" color=\"white\" style=\"outline\" size=\"larger\" animate=\"flipInY\" icon_pos=\"left\"]\n\n\n[/col]\n\n[/row]\n\n[/message_box]','Corporate','','inherit','closed','closed','','54-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',54,'http://demoweblinks.in/marlins/2020/11/09/54-revision-v1/',0,'revision','',0),(126,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider bg_color=\"rgb(0, 0, 0)\"]\r\n\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"17\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInUp\" parallax=\"2\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Nothing is Impossible</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"17\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"2\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"100%\" slide_effect=\"zoom-in\" bg=\"17\" bg_size=\"original\" bg_color=\"rgb(35, 35, 35)\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"44% 34%\"]\r\n\r\n[text_box width=\"58\" width__sm=\"100\" animate=\"fadeInLeft\" parallax=\"3\" position_x=\"0\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">CHANGE THIS TO ANYTHING</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\r\n[button text=\"Shop Men\" color=\"white\" style=\"outline\"]\r\n\r\n[button text=\"Shop Women\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n[section bg_color=\"rgb(27, 27, 27)\" dark=\"true\" padding=\"60px\"]\r\n\r\n[row]\r\n\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>New products added everyday</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"42\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(143, 143, 143)\" margin=\"px px px px\"]\r\n\r\n<h4>Free Shipping all products above 99$</h4>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Featured Products\" size=\"undefined\"]\r\n\r\n[ux_products slider_nav_style=\"circle\"]\r\n\r\n[title style=\"center\" text=\"Browse\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" image_height=\"113%\" image_overlay=\"rgba(0, 0, 0, 0.16)\" text_pos=\"middle\"]\r\n\r\n[title style=\"center\" text=\"Latest News\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" badge_style=\"square\" image_height=\"300px\"]\r\n\r\n\r\n[/section]\r\n[ux_banner height=\"420px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" parallax=\"3\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_instagram_feed username=\"surfer_magazine\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Sport Shop','','inherit','closed','closed','','55-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',55,'http://demoweblinks.in/marlins/2020/11/09/55-revision-v1/',0,'revision','',0),(127,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg_color=\"rgb(237, 239, 241)\" effect=\"snow\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[ux_banner_grid height=\"617\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\" position_y=\"80\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\" position_y=\"10\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"42\" position_x=\"10\" position_y=\"80\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n[ux_countdown size=\"268\" bg_color=\"rgba(0, 0, 0, 0.1)\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row col_style=\"divided\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Free Shipping on orders above 99$</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Give a Gift to a Friend</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed dia.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\" animate=\"fadeInUp\"]\r\n\r\n[featured_box img=\"16\" img_width=\"51\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\r\n\r\n<h3>Loved by our Customers</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed.</p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"bold-center\" text=\"Shop Now\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_product_categories style=\"overlay\" columns=\"5\" depth=\"1\" show_count=\"0\" image_overlay=\"rgba(0, 0, 0, 0.08)\" image_hover=\"zoom\" text_pos=\"middle\" text_size=\"small\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"bold-center\" text=\"Weekly Featured Products\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_products style=\"normal\" columns=\"5\" depth=\"1\" show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Follow us on Instagram\" margin_top=\"10px\" size=\"undefined\"]\r\n\r\n[ux_instagram_feed username=\"stylechild_no\" type=\"slider\" width=\"full-width\" columns=\"8\"]','Cute Shop','','inherit','closed','closed','','56-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',56,'http://demoweblinks.in/marlins/2020/11/09/56-revision-v1/',0,'revision','',0),(128,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"562px\" height__sm=\"368px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"2\"]\n\n[text_box width=\"68\" width__sm=\"81\"]\n\n<h2 class=\"uppercase\">Powerful Theme needs powerul images</h2>\n<p class=\"lead\">Responsive Images you can insert anywhere. You can also them into a slider.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h1 class=\"lead\">Beautiful Images with Beautiful Captions</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" image_size=\"large\" lightbox=\"true\" caption=\"true\" image_overlay=\"rgba(0, 0, 0, 0.16)\" image_hover=\"zoom-long\" animate=\"fadeInUp\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Image Overlay Styles\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"glow\"]\n\n<p>Glow</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"color\" animate=\"fadeInLeft\"]\n\n<p>Add Color</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"grayscale\" animate=\"fadeInLeft\"]\n\n<p>Grayscale</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"fade-in\" animate=\"fadeInLeft\"]\n\n<p>Fade In</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"zoom-fade\" animate=\"fadeInLeft\"]\n\n<p>Zoom Fade</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-add\" animate=\"fadeInLeft\"]\n\n<p>Add Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_overlay=\"rgba(0, 0, 0, 0.37)\" image_hover=\"overlay-remove\" animate=\"fadeInLeft\"]\n\n<p>Remove Overlay</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" image_hover=\"blur\" animate=\"fadeInLeft\"]\n\n<p>Blur</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with video\"]\n\n[ux_image id=\"16\" animate=\"fadeInLeft\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n<p class=\"lead\">Add a <strong>Youtube or Vimeo</strong> link to Image link tag to automatically get a play icon and a Video Lightbox on Images.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image drop shadow\"]\n\n[ux_image id=\"16\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n<p class=\"lead\">Add cool drop shadows to your images to make them pop out on hover.</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Add Images to any sliders\" size=\"undefined\"]\n\n[ux_slider style=\"container\" slide_width=\"700px\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_image id=\"16\" height=\"75%\" image_hover=\"overlay-remove\" depth_hover=\"2\"]\n\n[ux_image id=\"16\" height=\"75%\" image_hover=\"overlay-remove\" depth=\"3\"]\n\n[ux_image id=\"16\" height=\"75%\" image_hover=\"overlay-remove\"]\n\n[ux_image id=\"16\" height=\"75%\" link=\"https://www.youtube.com/watch?v=_j5KR28qtsI\"]\n\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with reverse parallax\"]\n\n[ux_image id=\"16\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"-1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Image with PArallax\"]\n\n[ux_image id=\"16\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" parallax=\"1\" animate=\"fadeInLeft\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Images with lightbox\" size=\"undefined\"]\n\n[row]\n\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n[ux_image id=\"16\" height=\"75%\" lightbox=\"true\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col]\n[col span__sm=\"12\" align=\"center\"]\n\n[title style=\"center\" text=\"Images with Caption\" size=\"undefined\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"16\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"16\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"12\"]\n\n[ux_image id=\"16\" height=\"75%\" caption=\"true\" image_hover=\"overlay-remove\" depth=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\"]\n\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]','Images','','inherit','closed','closed','','57-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',57,'http://demoweblinks.in/marlins/2020/11/09/57-revision-v1/',0,'revision','',0),(129,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"446px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.61)\" bg_pos=\"58% 26%\"]\n\n[text_box width=\"100\" width__sm=\"75\" parallax=\"-1\"]\n\n<h6>Flatsome Grid System</h6>\n<h1>Responsive Rows and Columns</h1>\n<p class=\"lead\">Create Amazing layouts by using Flatsome Row and Column System powered by<strong> Flexbox</strong></p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Simple 4-column row\"]\n\n[row padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(255, 0, 211, 0.96)\" color=\"light\" depth_hover=\"5\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Vertical Centered Row\"]\n\n[row v_align=\"middle\" padding=\"30px\"]\n\n[col span=\"6\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bottom Align Row\"]\n\n[row v_align=\"bottom\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Equal aligned row\"]\n\n[row v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\" bg_color=\"rgba(231, 231, 231, 0.96)\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Rows With Drop shadow\"]\n\n[row padding=\"30px\" depth=\"2\" depth_hover=\"3\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<p><strong>You can set Column Depth for All columns or per column.</strong></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Divided row\"]\n\n[row style=\"large\" col_style=\"divided\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Dashed Lined Row\" margin_top=\"23px\" size=\"undefined\"]\n\n[row col_style=\"dashed\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Solid Lined Row\" margin_top=\"25px\" size=\"undefined\"]\n\n[row col_style=\"solid\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Custom Background on a Column\" margin_top=\"28px\" size=\"undefined\"]\n\n[row padding=\"30px\"]\n\n[col span=\"5\" span__sm=\"6\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(38, 65, 116)\" color=\"light\" depth=\"2\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Full Width Row with Backgrounds\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\" padding=\"30px\"]\n\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(0, 0, 0)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(153, 120, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" bg_color=\"rgb(120, 154, 222)\" color=\"light\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummyLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Nested Rows\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"8\" span__sm=\"12\"]\n\n[row_inner]\n\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n[col_inner span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col_inner]\n\n[/row_inner]\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"30px 30px 30px 30px\" bg_color=\"rgb(255, 255, 255)\" depth=\"3\" depth_hover=\"5\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(0, 0, 0)\"]\n\n[row style=\"small\" v_align=\"middle\"]\n\n[col span=\"4\" span__sm=\"12\" padding=\"20px\" bg_color=\"rgb(255, 255, 255)\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" color=\"light\"]\n\n<h3>Column with a drop shadow and white background</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(231, 231, 231)\"]\n\n[row col_style=\"solid\"]\n\n[col span=\"4\" span__sm=\"6\" parallax=\"1\"]\n\n<h3>Parallax Column</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\" parallax=\"2\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" parallax=\"3\"]\n\n<h3>Parallax Column</h3>\n<p><span style=\"color: #555555; font-size: 14.4px; line-height: 1.5;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</span></p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"10\" align=\"center\"]\n\n<h3>A Centered Columns Row</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Animated Columns\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n<h3>Fade In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInDown\"]\n\n<h3>Fade In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInLeft\"]\n\n<h3>Fade In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInRight\"]\n\n<h3>Fade In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceIn\"]\n\n<h3>Bounce In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInUp\"]\n\n<h3>Bounce In Up</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInDown\"]\n\n<h3>Bounce In Down</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInLeft\"]\n\n<h3>Bounce In Left</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"bounceInRight\"]\n\n<h3>Bounce In Right</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\" animate=\"flipInY\"]\n\n<h3>Flip In Y</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"flipInX\"]\n\n<h3>Flip In X</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\" animate=\"blurIn\"]\n\n<h3>Blur In</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]','Rows / Columns','','inherit','closed','closed','','58-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',58,'http://demoweblinks.in/marlins/2020/11/09/58-revision-v1/',0,'revision','',0),(130,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"400px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.66)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Text Elements</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[section bg_color=\"rgb(255, 255, 255)\"]\n\n[title style=\"center\" text=\"Typography\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text  </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Default font</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead alt-font\"><b>Alternative Font</b>.</h2>\n<p class=\"lead alt-font\">Dolor sit amet, consectetuer <strong>adipiscing</strong> elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead\">Thin text</h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"3\"]\n\n<h2 class=\"lead uppercase\">UPPERCASE</h2>\n<p class=\"lead uppercase\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This is a <span class=\"fancy-underline\">Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"6\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Media Right\" bg_color=\"rgb(193, 193, 193)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\"]\n\n[row style=\"large\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\n\n<h6>Flatsome Tip</h6>\n<h2>You can find many text options in the \"Format\" dropdown in text editor.</h2>\n<p class=\"lead\">You see the changes live if you use the Page Builder</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"3\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgb(34, 34, 34)\" dark=\"true\" padding=\"60px\"]\n\n[title style=\"center\" text=\"Typography on Dark background\"]\n\n[row]\n\n[col span=\"3\"]\n\n<h1>Headline h1</h1>\n<h2>Headline h2</h2>\n<h3>Headline h3</h3>\n<h4>Headline h4</h4>\n<h5>Headline h5</h5>\n<h6>Headline h6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">headline h1</h1>\n<h2 class=\"uppercase\">headline h2</h2>\n<h3 class=\"uppercase\">headline h3</h3>\n<h4 class=\"uppercase\">headline H4</h4>\n<h5 class=\"uppercase\">headline H5</h5>\n<h6 class=\"uppercase\">headline H6</h6>\n\n[/col]\n[col span=\"3\"]\n\n<h3 class=\"uppercase\" data-text-color=\"primary\">primary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"secondary\">secondary color</h3>\n<h3 class=\"uppercase\" data-text-color=\"alert\">alert color</h3>\n<h3 class=\"uppercase\" data-text-color=\"success\">SUCCESS COLOR</h3>\n<h3 class=\"uppercase\">DEFAULT COLOR</h3>\n\n[/col]\n[col span=\"3\"]\n\n<p><a href=\"#\">Default link<br />\n<strong>Bold link</strong></a><br />\n<strong>Bold text<br />\n</strong><em>Italic text<br />\n</em><del>Strikethrough<br />\n</del><span style=\"text-decoration: underline;\">Underline</span></p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\"]\n\n<p class=\"lead\"><strong>Lead paragraph</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n[col span=\"4\"]\n\n<p><strong>Bold Text.</strong> sit amet, consectetuer <em>italic text  </em>elit, sed diam nonummy nibh euismod tincidunt ut laoreet <span style=\"text-decoration: underline;\">underline text</span> magna aliquam erat volutpat. <del>Strike throught</del>. ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea. <a href=\"#\">A simple link.</a></p>\n\n[/col]\n[col span=\"4\"]\n\n<p>Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa</p>\n\n[/col]\n[col span=\"7\"]\n\n<h2 class=\"lead\">This is a<span class=\"fancy-underline\"> Fancy Text Underline</span></h2>\n<p class=\"lead\">Dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/col]\n[col span=\"5\"]\n\n<h2 class=\"lead\">This a count up number <span class=\"count-up\"><strong>5000</strong></span></h2>\n<p class=\"lead\">Count up number can be added anywhere.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section padding=\"60px\"]\n\n[title style=\"center\" text=\"Quote\"]\n\n[row]\n\n[col]\n\n<blockquote>\n<p class=\"lead\"><strong>Quote</strong>. dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n</blockquote>\n<p class=\"lead\">Normal Paragraph. sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequa. Horizontal Line:</p>\n[title style=\"center\" text=\"Lists\"]\n\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li>Simple List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ol>\n<li>Numbered List</li>\n<li>List item 1</li>\n<li>List Item 2</li>\n<li>List item 3</li>\n<li>List Item 4</li>\n<li>List Item 5</li>\n</ol>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-checkmark\">Checkmark list</li>\n<li class=\"bullet-checkmark\">List Item 2</li>\n<li class=\"bullet-checkmark\">List item 3</li>\n<li class=\"bullet-checkmark\">List Item 4</li>\n<li class=\"bullet-checkmark\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-star\">Star list</li>\n<li class=\"bullet-star\">List Item 2</li>\n<li class=\"bullet-star\">List item 3</li>\n<li class=\"bullet-star\">List Item 4</li>\n<li class=\"bullet-star\">List Item 5</li>\n</ul>\n\n[/col]\n[col span=\"2\"]\n\n<ul>\n<li class=\"bullet-arrow\">Arrow List</li>\n<li class=\"bullet-arrow\">List Item 2</li>\n<li class=\"bullet-arrow\">List item 3</li>\n<li class=\"bullet-arrow\">List Item 4</li>\n<li class=\"bullet-arrow\">List Item 5</li>\n</ul>\n\n[/col]\n\n[/row]\n\n[/section]','Typography','','inherit','closed','closed','','59-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',59,'http://demoweblinks.in/marlins/2020/11/09/59-revision-v1/',0,'revision','',0),(131,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider]\n\n[ux_banner height=\"700px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.25)\"]\n\n[text_box width=\"51\" animate=\"fadeInLeft\" text_depth=\"1\"]\n\n<h2>Create Amazing Banners with Drag and Drop</h2>\n[divider]\n\n[button text=\"A button\" color=\"success\" depth=\"3\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"700px\" bg=\"17\"]\n\n[text_box width=\"46\" animate=\"fadeInRight\" parallax=\"1\" position_x=\"5\"]\n\n<h2>Lorem ipsum dolor sit amet</h2>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Buy now\" color=\"white\"]\n\n[button text=\"Learn more\" color=\"white\" style=\"outline\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\"]\n\n[col span=\"7\"]\n\n[ux_banner height=\"600px\" bg=\"17\" bg_pos=\"44% 39%\"]\n\n[text_box width=\"63\" width__sm=\"78\" padding=\"39px\" position_x=\"5\" position_x__sm=\"50\" text_color=\"dark\" bg=\"rgba(255, 255, 255, 0.85)\" depth=\"2\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Simple Link\" style=\"link\" icon=\"icon-play\"]\n\n[button text=\"Simple Button\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h2 class=\"lead uppercase\">Drag And Drop Banner System</h2>\n<p class=\"lead\"><span style=\"font-size: 115%;\">Flatsome <strong>Banners</strong> is the heart of Flatsome. Our Banner System let you create beautiful <strong>responsive</strong> banners with drag and drop.</span></p>\n<p class=\"lead\"> </p>\n[ux_image id=\"16\"]\n\n\n[/col]\n[col span=\"14\"]\n\n[ux_banner height=\"56.25%\" height__sm=\"50%\" bg=\"17\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\" position_x=\"90\"]\n\n<h3>Small Title</h3>\n<p class=\"lead\">You can place a text box wherever you want on a Banner</p>\n[button text=\"Click me!\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\" align=\"center\"]\n\n<h2>Banner Focus Point<b>™</b></h2>\n<p class=\"lead\">Set a focus point on the banner and the image will adjust to mobile a tablet screens. Perfect for resposnive Websites.</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" image_size=\"original\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Banner Hover effects\"]\n\n[row]\n\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"glow\"]\n\n[text_box width=\"36\"]\n\n<h3>Glow</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"zoom-fade\"]\n\n[text_box width=\"36\"]\n\n<h3>Zoom Fade</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"blur\"]\n\n[text_box width=\"36\"]\n\n<h3>Blur</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-in\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade In</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"fade-out\"]\n\n[text_box width=\"36\"]\n\n<h3>Fade Out</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"color\"]\n\n[text_box width=\"36\"]\n\n<h3>Add Color</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"grayscale\"]\n\n[text_box width=\"36\"]\n\n<h3>Grayscale</h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead\" style=\"text-align: center;\">You can also<strong> combine</strong> hover effects to create amazing hover effects</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\" border=\"3px 3px 3px 3px\" border_margin=\"10px 10px 10px 10px\" border_hover=\"zoom\"]\n\n[text_box width=\"51\"]\n\n<h3><strong>Add animated borders</strong></h3>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(22, 20, 16, 0.18)\" hover=\"overlay-add\"]\n\n[text_box width=\"51\"]\n\n<h3>Add Overlay</h3>\n<p><span style=\"font-size: 140%;\">Overlay can be any color</span></p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[ux_banner height=\"500px\" bg=\"17\" parallax=\"2\"]\n\n[text_box width=\"41\"]\n\n<h2 class=\"uppercase\">BACKGROUND VIDEO</h2>\n\n[/text_box]\n\n[/ux_banner]','Banners','','inherit','closed','closed','','60-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',60,'http://demoweblinks.in/marlins/2020/11/09/60-revision-v1/',0,'revision','',0),(132,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.42)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>IMAGE BOX ELEMENT</strong></h3>\r\n<p class=\"lead\">Create amazing image boxes with unlimited style options.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section]\r\n\r\n[row]\r\n\r\n[col span=\"4\"]\r\n\r\n[ux_image_box img=\"16\"]\r\n\r\n<h4>Simple Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"16\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"badge\" img=\"16\"]\r\n\r\n<h4>Badge Style</h4>\r\n<p>You can add shortcodes here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"16\"]\r\n\r\n<h2>Overlay Style</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"label\" img=\"16\"]\r\n\r\n<h4>Label Style</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"16\"]\r\n\r\n<h4>Shade Style</h4>\r\n<p class=\"lead\">Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"push\" img=\"16\" image_height=\"90%\" text_hover=\"bounce\"]\r\n\r\n<h2>Push Style</h2>\r\n<p>Add any elements here..</p>\r\n[divider]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"8\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[ux_image_box style=\"vertical\" img=\"16\" image_width=\"48\"]\r\n\r\n<h2>Vertical Style Boxed</h2>\r\n<p class=\"lead\">Add any elements here..</p>\r\n[button text=\"A button\" style=\"secondary alt-button\" radius=\"10\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section]\r\n\r\n[row]\r\n\r\n[col align=\"center\"]\r\n\r\n<h2>Create any kind of Image box by using the options in the Page Builder.</h2>\r\n<p class=\"lead\">We have created many examples here. Mix and Match effects to create your perfect Image Box</p>\r\n\r\n[/col]\r\n[col span=\"4\" depth=\"1\"]\r\n\r\n[ux_image_box img=\"16\" image_height=\"100%\"]\r\n\r\n<h4>Simple Centered Style</h4>\r\n<p>Some smaller text</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"bounce\" img=\"16\" image_height=\"100%\" depth=\"1\" text_bg=\"rgb(66, 66, 66)\" text_color=\"dark\"]\r\n\r\n<h4>Bounce Style</h4>\r\n<p>Add anything here</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"16\" image_height=\"125%\" image_hover=\"blur\" text_pos=\"middle\" text_size=\"small\" text_hover=\"zoom-in\"]\r\n\r\n<h2>Overlay Style With Blur and Zoom</h2>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"overlay\" img=\"16\" image_height=\"100%\"]\r\n\r\n<h4>Circle with Blur In Effect</h4>\r\n<p>Add any elements here..</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"16\" image_height=\"116%\"]\r\n\r\n<h4>Simple Shade  Style</h4>\r\n<p class=\"lead\">A beautiful box.</p>\r\n[button text=\"Quick View\" style=\"white\"]\r\n\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n[ux_image_box style=\"shade\" img=\"16\" image_height=\"100%\" image_radius=\"100\" image_hover=\"zoom\" text_pos=\"middle\" text_hover=\"bounce\"]\r\n\r\n<h3 class=\"uppercase\">Circle Image</h3>\r\n<p class=\"lead\">Create this by adding radius 100% to the image.</p>\r\n\r\n[/ux_image_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Image Box','','inherit','closed','closed','','61-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',61,'http://demoweblinks.in/marlins/2020/11/09/61-revision-v1/',0,'revision','',0),(133,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"540px\" bg=\"17\" bg_size=\"original\" bg_overlay__sm=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"35% 23%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"80\" animate=\"fadeInLeft\" position_x=\"95\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"alt-font\">Fancy Top Title</h3>\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"540px\" bg=\"17\" bg_color=\"rgb(113, 117, 186)\" bg_pos=\"60% 16%\" parallax=\"3\"]\r\n\r\n[text_box width=\"41\" width__sm=\"82\" position_x=\"10\" position_x__sm=\"50\" position_y__sm=\"50\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Create amazing Parallax effects</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\"]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"17\" bg_color=\"rgb(164, 113, 186)\" parallax=\"1\"]\r\n\r\n[text_box width=\"58\" width__sm=\"85\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[ux_banner height=\"470px\" bg=\"17\" bg_color=\"rgb(218, 218, 218)\" parallax=\"1\"]\r\n\r\n[text_box width=\"34\" width__sm=\"74\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>299$</strong></h2>\r\n[button text=\"Shop Now\" radius=\"99\" link=\"shop\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 185, 179, 0.91)\"]\r\n\r\n[text_box width__sm=\"79\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>SUMMER SALE END SOON</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[ux_countdown bg_color=\"rgba(0, 0, 0, 0.06)\"]\r\n\r\n[button text=\"Shop Now\" color=\"white\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\r\n\r\n[col span=\"6\" span__sm=\"14\"]\r\n\r\n[ux_banner height=\"94%\" bg=\"17\" bg_pos=\"20% 60%\" parallax=\"2\"]\r\n\r\n[text_box width=\"31\" width__sm=\"61\" scale__sm=\"64\" position_x=\"90\" position_y=\"90\" text_align=\"right\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Add Hotspots to BAnners</strong></h3>\r\n<p class=\"lead\">Hotspots can be added to banners and dragged around. You can have Hotspots that goes to a Product Lightbox or just a simple Tooltip.</p>\r\n\r\n[/text_box]\r\n[ux_hotspot type=\"product\" prod_id=\"416\" text=\"Add product hotspots on banners\" bg_color=\"rgb(47, 166, 162)\" position_x=\"55\" position_y=\"25\"]\r\n\r\n[ux_hotspot text=\"Cool Camera :)\" size=\"large\" bg_color=\"#4DB7B3\" position_x=\"10\" position_y=\"80\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"17\" padding=\"0px 10% 0px 10%\"]\r\n\r\n[title style=\"center\" text=\"Add a Title here\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_banner height=\"450px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" parallax=\"3\"]\r\n\r\n[text_box width__sm=\"93\" parallax=\"2\"]\r\n\r\n<h3 class=\"uppercase\"><strong>Join Our Newsletter</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n(insert contact form here)\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row style=\"collapse\" width=\"full-width\" v_align=\"equal\"]\r\n\r\n[col span=\"6\" span__sm=\"17\" padding=\"10% 10% 0px 10%\" bg_color=\"rgb(240, 240, 240)\"]\r\n\r\n[title style=\"center\" text=\"Featured\" size=\"undefined\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" columns=\"2\" columns__sm=\"2\" animate=\"fadeInLeft\" show=\"featured\" image_height=\"166%\" image_size=\"medium\" image_hover=\"overlay-add\"]\r\n\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n[ux_banner height=\"99%\" bg=\"17\" bg_pos=\"56% 22%\" parallax=\"2\"]\r\n\r\n[text_box width=\"37\" position_x=\"10\" text_align=\"left\" text_color=\"dark\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n<h2><strong>29$</strong></h2>\r\n\r\n[/text_box]\r\n[ux_hotspot position_x=\"55\" position_y=\"15\"]\r\n\r\n\r\n[/ux_banner]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[ux_instagram_feed username=\"topshop\" type=\"slider\" slider_nav_style=\"simple\" slider_nav_color=\"light\" width=\"full-width\" columns=\"7\"]','Parallax Shop','','inherit','closed','closed','','62-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',62,'http://demoweblinks.in/marlins/2020/11/09/62-revision-v1/',0,'revision','',0),(134,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','','Size Chart','','inherit','closed','closed','','63-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',63,'http://demoweblinks.in/marlins/2020/11/09/63-revision-v1/',0,'revision','',0),(135,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg_color=\"rgb(241, 241, 241)\" padding=\"8px\" margin=\"15px\"]\r\n\r\n[row style=\"collapse\" col_style=\"dashed\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\" align=\"center\"]\r\n\r\n[featured_box img=\"16\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Delivery</strong> World Wide* <a href=\"#\">Learn more</a></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"16\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\">Loved by our Customers. <strong>5000+</strong> Reviews</span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\r\n\r\n[featured_box img=\"16\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\r\n\r\n<p><span style=\"font-size: 90%;\"><strong>Free Returns</strong> and <strong>Free Shipping</strong></span></p>\r\n\r\n[/featured_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\r\n\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\" text_padding=\"20px 20px 20px 20px\"]\r\n\r\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\r\n\r\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\r\n\r\n[gap height=\"50px\"]\r\n\r\n[ux_banner height=\"399px\" bg=\"17\" bg_size=\"large\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\r\n\r\n[text_box width=\"58\" width__sm=\"80\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\r\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\r\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\r\n\r\n[button text=\"Browse now\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[gap height=\"44px\"]\r\n\r\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',64,'http://demoweblinks.in/marlins/2020/11/09/64-revision-v1/',0,'revision','',0),(136,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','Coming soon...','Booking','','inherit','closed','closed','','65-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',65,'http://demoweblinks.in/marlins/2020/11/09/65-revision-v1/',0,'revision','',0),(137,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','Coming soon...','Lifestyle','','inherit','closed','closed','','66-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',66,'http://demoweblinks.in/marlins/2020/11/09/66-revision-v1/',0,'revision','',0),(138,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" bg_pos=\"49% 43%\" parallax=\"4\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"59\" width__sm=\"100\" scale__sm=\"131\" animate=\"fadeInUp\" parallax=\"-3\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>WE\'re a creative Agency</strong></h1>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n[video_button size=\"130\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.47)\" bg_pos=\"34% 46%\" hover=\"zoom\" link=\"Portfolio\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"10\" position_y=\"70\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[row]\r\n\r\n[col span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Browse Portfolio\" style=\"outline\" size=\"larger\" radius=\"99\" icon=\"icon-angle-right\" icon_reveal=\"true\" link=\"Portfolio\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Our Clients\"]\r\n\r\n[row col_style=\"dashed\" v_align=\"middle\"]\r\n\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\" align=\"center\"]\r\n\r\n[logo hover=\"color\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[gap]\r\n\r\n[section label=\"Media Right\" bg_color=\"rgb(207, 207, 207)\" bg_overlay=\"rgba(255, 255, 255, 0.85)\" padding=\"60px\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"large\" h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\">Contact Us</span></h2>\r\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\" align=\"left\"]\r\n\r\n[accordion auto_open=\"true\"]\r\n\r\n[accordion-item title=\"How long does it takes to we get back to you\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item]\r\n\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Add anything here\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n[accordion-item title=\"Research\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/accordion-item]\r\n\r\n[/accordion]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"LAtest NEws\" margin_top=\"22px\" size=\"undefined\"]\r\n\r\n[blog_posts style=\"push\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"3\" badge_style=\"circle\" image_height=\"180px\"]','Agency','','inherit','closed','closed','','67-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',67,'http://demoweblinks.in/marlins/2020/11/09/67-revision-v1/',0,'revision','',0),(139,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section label=\"Top Section\" bg=\"17\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"65% 40%\" parallax=\"3\" dark=\"true\" padding=\"0px\" height=\"424px\"]\n\n[row]\n\n[col span__sm=\"12\" padding=\"5% 6% 0px 10%\" align=\"center\"]\n\n<h1 class=\"uppercase\"><strong>Section Element</strong></h1>\n<p class=\"lead\">Sections are used for creating full width backgrounds with content inside it. You can have Parallax Effects and Background Videos.</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(233, 233, 233)\" padding=\"50px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Simple section with a two column row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgb(36, 36, 36)\" dark=\"true\" padding=\"60px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h3>A Dark section with a row inside</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Background Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h2>A section with a background video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" dark=\"true\" padding=\"60px\" height=\"50vh\"]\n\n[row style=\"collapse\" h_align=\"center\"]\n\n[col span=\"6\" align=\"center\"]\n\n<h2>A section can have a background image or a background color</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(243, 243, 243)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\"]\n\n<h2>A Section with a Image on the right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section label=\"Parallax Video\" bg_color=\"rgb(41, 41, 41)\" bg_overlay=\"rgba(0, 0, 0, 0.27)\" parallax=\"4\" dark=\"true\" padding=\"128px\" video_mp4=\"http://flatsome.dev/wp-content/uploads/2016/02/348462762.mp4\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"9\" align=\"center\"]\n\n<h2>A Parallax Background Video</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images left</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(50, 50, 50)\" dark=\"true\" sticky=\"true\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A sticky section with images right</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n[button text=\"Click me!\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\" depth=\"4\" depth_hover=\"5\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(243, 243, 243)\" bg_overlay=\"rgba(255, 255, 255, 0.9)\" padding=\"61px\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n<h2>A Section with Image and a background</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(255, 255, 255)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image left.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"61px\"]\n\n[row style=\"collapse\" width=\"full-width\" v_align=\"middle\" h_align=\"right\"]\n\n[col span=\"6\" padding=\"10%\" align=\"center\" max_width=\"520px\"]\n\n<h2>A Section with a large image right.</h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"6\"]\n\n[ux_image id=\"16\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.51)\" parallax=\"1\" dark=\"true\" padding=\"97px\" height=\"300px\"]\n\n[title text=\"Section With a parallax background\"]\n\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"6\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(255, 255, 255, 0.89)\" bg_pos=\"25% 0%\" parallax=\"1\" padding=\"60px\" height=\"300px\"]\n\n[row style=\"collapse\" width=\"full-width\" h_align=\"center\"]\n\n[col span=\"6\" padding=\"0 10%\" align=\"center\"]\n\n<h2>A product slider inside a section</h2>\n[button text=\"Click me now\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(63, 63, 63)\" dark=\"true\" mask=\"arrow\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"10\"]\n\n<h3>Section With A Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(160, 160, 160)\" dark=\"true\" mask=\"angled\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"5\" span__sm=\"10\"]\n\n<h3>Section with an Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg=\"17\" bg_color=\"rgb(255, 255, 255)\" bg_overlay=\"rgba(117, 117, 117, 0.44)\" dark=\"true\" mask=\"angled-right\" height=\"365px\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"9\"]\n\n<h3>Section with Angled Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[section bg_color=\"rgb(77, 77, 77)\" dark=\"true\" mask=\"arrow-large\" height=\"365px\"]\n\n[row]\n\n[col]\n\n<h3>Section with a Large Arrow Mask</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/col]\n\n[/row]\n\n[/section]','Sections','','inherit','closed','closed','','71-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',71,'http://demoweblinks.in/marlins/2020/11/09/71-revision-v1/',0,'revision','',0),(140,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg_color=\"rgb(237, 239, 241)\" border=\"1px 0px 1px 0px\" border_color=\"rgba(0, 0, 0, 0.13)\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid Element\" size=\"120\"]\r\n\r\n[ux_banner_grid height=\"600\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"64% 30%\" border_color=\"rgba(0, 0, 0, 0.05)\"]\r\n\r\n[text_box width=\"70\"]\r\n\r\n<h2 class=\"alt-font\">A Cute Title</h2>\r\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 140%;\">This is a simple headline</span></strong></h2>\r\n<p class=\"lead\"><span style=\"font-size: 130%;\">A Small text</span></p>\r\n[button text=\"Click me!\" style=\"outline\" size=\"xlarge\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\"]\r\n\r\n[ux_banner bg=\"17\" bg_pos=\"51% 56%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box width=\"69\" width__sm=\"60\" position_y=\"5\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"14\" height=\"1-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(255, 255, 255, 0.15)\" bg_pos=\"51% 30%\" border_color=\"rgba(0, 0, 0, 0.08)\"]\r\n\r\n[text_box text_color=\"dark\" width=\"42\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h2 class=\"uppercase\"><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"5\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner bg=\"17\" bg_color=\"rgb(0, 0, 0)\" bg_overlay=\"rgba(0, 0, 0, 0.3)\" bg_pos=\"71% 19%\" border_color=\"rgba(0, 0, 0, 0.07)\"]\r\n\r\n[text_box width=\"70\" width__sm=\"60\"]\r\n\r\n<h2 class=\"uppercase\"><strong>SALE ENDS SOON</strong></h2>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[row v_align=\"middle\"]\r\n\r\n[col span=\"5\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">DRAG AND DROP EDITING</h2>\r\n<p class=\"lead\">Creating amazing Banner Grids is incredible easy with the new <strong>UX Builder</strong></p>\r\n\r\n[/col]\r\n[col span=\"7\" span__sm=\"12\"]\r\n\r\n[ux_image id=\"16\" depth=\"3\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg=\"17\" bg_color=\"rgb(28, 28, 28)\" bg_overlay=\"rgba(0, 0, 0, 0.72)\" parallax=\"2\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Banner Grid With A Background\" size=\"undefined\"]\r\n\r\n[ux_banner_grid height=\"666\" depth=\"1\"]\r\n\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_pos=\"32% 58%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"65\" width__sm=\"90\" scale=\"102\" animate=\"fadeInLeft\" position_x=\"10\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>This Week Featured Vendor</strong></h2>\r\n<p class=\"lead\">Change this to anything. Consectetuer adipiscing elit.</p>\r\n[button text=\"Go To Shop\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"74\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"15\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_pos=\"66% 22%\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"80\" width__sm=\"60\" animate=\"fadeInLeft\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h6 class=\"uppercase\">Featured Vendor</h6>\r\n<h2><strong>Woo Vendor Shop</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"4\" span__sm=\"13\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" hover=\"zoom\"]\r\n\r\n[text_box width=\"80\" position_x=\"10\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple banner</strong></h2>\r\n<p class=\"lead\">Change this text to anything</p>\r\n[button text=\"Shop now\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"8\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.09)\" bg_pos=\"61% 30%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"79\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h2><strong>This is a simple headline</strong></h2>\r\n[button text=\"Shop now\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n\r\n[/section]\r\n[title style=\"center\" text=\"Use Banner Grids to Create Portfolio Grids\" margin_top=\"31px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid spacing=\"collapse\" height=\"885\" width=\"full-width\"]\r\n\r\n[col_grid span=\"6\" span__sm=\"13\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"37\" animate=\"fadeInRight\" position_x=\"10\" position_y=\"80\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.19)\" bg_pos=\"53% 69%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"30\" animate=\"fadeInLeft\" position_x=\"90\" text_align=\"right\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.21)\" hover=\"zoom\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"14\" height=\"1-2\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.15)\" bg_pos=\"34% 46%\" hover=\"zoom\"]\r\n\r\n[text_box hover=\"fade-out\" position_y=\"95\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n[text_box hover=\"zoom-in\"]\r\n\r\n[video_button size=\"178\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"6\" span__sm=\"15\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" hover=\"zoom\"]\r\n\r\n[text_box text_color=\"dark\" width=\"39\" position_x=\"5\" position_y=\"85\" text_align=\"left\"]\r\n\r\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\r\n<p class=\"lead\">A Website for Acme Company</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]\r\n[title style=\"center\" text=\"Add Slider to Banner Grids\" margin_top=\"28px\" size=\"undefined\"]\r\n\r\n[ux_banner_grid]\r\n\r\n[col_grid span=\"9\" span__sm=\"12\"]\r\n\r\n[ux_slider]\r\n\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\r\n\r\n[text_box width__sm=\"80\"]\r\n\r\n<h3 class=\"alt-font\">A cool Top header</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\r\n[divider]\r\n\r\n[button text=\"Browse Now\" size=\"large\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/ux_slider]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h3 class=\"alt-font\">Don\'t Miss</h3>\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\r\n\r\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\r\n\r\n[text_box width=\"87\"]\r\n\r\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\r\n[button text=\"Browse Now\" size=\"larger\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n\r\n[/col_grid]\r\n\r\n[/ux_banner_grid]','Banner Grids','','inherit','closed','closed','','72-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',72,'http://demoweblinks.in/marlins/2020/11/09/72-revision-v1/',0,'revision','',0),(141,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"444px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.3)\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>LIGHTBOX SHORTCODE</strong></h3>\r\n<p class=\"lead\">Open any content in a lightbox</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[button text=\"Lightbox button\" link=\"#test\"]\r\n\r\n<p><a href=\"#test\">Lightbox link</a></p>\r\n<p>[lightbox id=\"test\" width=\"600px\" padding=\"20px\"]<br />Add lightbox content here...<br />\r\n[/lightbox]\r\n</p>\r\n<pre>[button text=\"Lightbox button\" link=\"<b>#test</b>\"][lightbox id=\"<b>test</b>\" width=\"600px\" padding=\"20px\"]Add lightbox content here...[/lightbox]</pre>\r\n\r\n[/col]\r\n\r\n[/row]','Lightbox','','inherit','closed','closed','','74-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',74,'http://demoweblinks.in/marlins/2020/11/09/74-revision-v1/',0,'revision','',0),(142,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(255, 255, 255, 0.61)\" bg_pos=\"41% 71%\" parallax=\"3\"]\r\n\r\n[text_box parallax=\"2\" text_color=\"dark\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Message Box Element</strong></h2>\r\n<p class=\"lead\">Create beautiful Call to Action areas.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title style=\"center\" text=\"Message Box Element\"]\r\n\r\n[message_box padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"9\" span__sm=\"12\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col_inner]\r\n[col_inner span=\"2\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me\" color=\"white\" style=\"outline\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n[title style=\"center\" text=\"Use to Create Call to Actions areas\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"17\" bg_color=\"rgba(0, 0, 0, 0.62)\" padding=\"27\"]\r\n\r\n[row_inner v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col_inner span=\"8\" span__sm=\"12\"]\r\n\r\n<h2 class=\"uppercase\">Use Message Boxes to create Call to action messages</h2>\r\n\r\n[/col_inner]\r\n[col_inner span=\"3\" span__sm=\"12\" align=\"center\"]\r\n\r\n[button text=\"Click me now\" color=\"white\" style=\"outline\" size=\"larger\" radius=\"99\"]\r\n\r\n\r\n[/col_inner]\r\n\r\n[/row_inner]\r\n\r\n[/message_box]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[title style=\"center\" text=\"Full Width Message box\" margin_top=\"23px\"]\r\n\r\n[message_box bg=\"17\" bg_color=\"rgba(0, 0, 0, 0.75)\" padding=\"27\"]\r\n\r\n[row v_align=\"middle\" h_align=\"center\"]\r\n\r\n[col span=\"6\" span__sm=\"15\"]\r\n\r\n<h3 class=\"uppercase\">Signup for Newsletter and get <span class=\"fancy-underline\">50% off</span> your next purchase</h3>\r\n\r\n[/col]\r\n[col span=\"5\" span__sm=\"17\" align=\"right\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/message_box]','Message box','','inherit','closed','closed','','77-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',77,'http://demoweblinks.in/marlins/2020/11/09/77-revision-v1/',0,'revision','',0),(143,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"360px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.16)\" bg_pos=\"56% 97%\" parallax=\"2\"]\n\n[text_box width=\"63\" width__sm=\"60%\" text_depth=\"1\"]\n\n<h3 class=\"uppercase\"><strong>Categories Element</strong></h3>\n<p class=\"lead\">Create beautiful overview of your Shop categories. There is almost unlimited variations, but here are some examples.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col]\n\n[title style=\"center\" text=\"Simple\"]\n\n[ux_product_categories style=\"normal\"]\n\n[title style=\"center\" text=\"Badge style\"]\n\n[ux_product_categories]\n\n[title style=\"center\" text=\"Overlay Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\"]\n\n[title style=\"center\" text=\"Grid style\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"3\" columns=\"3\" animate=\"fadeInLeft\" number=\"4\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Circle Style\"]\n\n[ux_product_categories style=\"overlay\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" image_height=\"100%\" image_radius=\"100\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"overlay-remove-50\" image_hover_alt=\"zoom\" text_pos=\"middle\" text_size=\"large\" text_hover=\"bounce\"]\n\n\n[/col]\n\n[/row]\n[section bg_color=\"rgb(51, 51, 51)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Be creative! Mix and match settings\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid=\"13\" col_spacing=\"small\" columns=\"3\" depth_hover=\"5\" animate=\"fadeInLeft\" number=\"5\" orderby=\"name\" image_size=\"large\" image_overlay=\"rgba(38, 38, 38, 0.16)\" image_hover=\"color\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\"]\n\n\n[/section]','Product Categories','','inherit','closed','closed','','78-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',78,'http://demoweblinks.in/marlins/2020/11/09/78-revision-v1/',0,'revision','',0),(144,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"451px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.45)\"]\r\n\r\n[text_box width=\"66\" parallax=\"-4\"]\r\n\r\n<h2 class=\"uppercase\"><strong>Product Element</strong></h2>\r\n<p class=\"lead\">List products anywhere in a beautiful style. Choose between Slider, Rows, Grid and Masonry Style. Select products from a custom category or sort by sales, featured items or latest. You can also select custom products.</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[title style=\"bold-center\" text=\"Simple Sale Slider\"]\r\n\r\n[ux_products orderby=\"sales\" show=\"onsale\"]\r\n\r\n[title style=\"bold-center\" text=\"Featured Products Slider\" icon=\"icon-star\"]\r\n\r\n[ux_products  show=\"featured\"]\r\n\r\n[title style=\"bold-center\" text=\"Best Selling Products\" icon=\"icon-heart\"]\r\n\r\n[ux_products orderby=\"sales\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style\"]\r\n\r\n[ux_products style=\"shade\" slider_nav_style=\"circle\" col_spacing=\"normal\" depth=\"1\" depth_hover=\"5\" cat=\"tops\" image_height=\"200%\" image_size=\"medium\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_size=\"large\" text_hover=\"hover-slide\"]\r\n\r\n[title style=\"bold-center\" text=\"Lookbook style 2\"]\r\n\r\n[ux_products style=\"overlay\" slider_nav_style=\"circle\" width=\"full-width\" col_spacing=\"collapse\" columns=\"6\" cat=\"80\" orderby=\"rand\" image_height=\"200%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.58)\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\" text_hover=\"zoom-in\"]\r\n\r\n[title style=\"bold-center\" text=\"Grid Style\" margin_top=\"16px\"]\r\n\r\n[ux_products style=\"shade\" type=\"grid\" grid_height=\"650px\" products=\"4\" orderby=\"sales\" show=\"featured\" image_overlay=\"rgba(0, 0, 0, 0.19)\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_align=\"left\" text_size=\"large\"]\r\n\r\n[title style=\"bold-center\" text=\"Masonery Style\"]\r\n\r\n[ux_products type=\"masonry\" depth=\"1\" depth_hover=\"5\" text_align=\"left\"]\r\n\r\n[title style=\"bold-center\" text=\"Mix and match styles\"]\r\n\r\n[ux_products style=\"overlay\" image_height=\"169%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.67)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\" text_size=\"large\"]','Products','','inherit','closed','closed','','79-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',79,'http://demoweblinks.in/marlins/2020/11/09/79-revision-v1/',0,'revision','',0),(145,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"329px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.28)\" parallax=\"2\"]\r\n\r\n[text_box]\r\n\r\n<h3 class=\"uppercase\"><strong>Share & Follow Icons</strong></h3>\r\n<p>Beautiful Share and Follow Icons that you can insert anywhere with the Page Builder.</p>\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[section bg_color=\"rgb(255, 255, 255)\"]\r\n\r\n[row]\r\n\r\n[col span__sm=\"12\"]\r\n\r\n[title text=\"Share icons\"]\r\n\r\n[share]\r\n\r\n[title text=\"Follow icons\"]\r\n\r\n[follow facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons Fill\"]\r\n\r\n[follow style=\"fill\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title text=\"Follow icons small\"]\r\n\r\n[follow style=\"small\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow icons Larger\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Larger Fill\" size=\"undefined\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[title style=\"center\" text=\"Follow Icons Large\" size=\"undefined\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[section bg_color=\"rgb(48, 48, 48)\" dark=\"true\"]\r\n\r\n[title style=\"center\" text=\"Follow icons dark\" size=\"undefined\"]\r\n\r\n[follow align=\"center\" scale=\"134\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[follow style=\"small\" align=\"center\" scale=\"177\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n[gap height=\"11px\"]\r\n\r\n[follow style=\"fill\" align=\"center\" scale=\"128\" facebook=\"http://\" instagram=\"http://\" snapchat=\"8523\" twitter=\"http://\" email=\"email@post.com\" pinterest=\"http://\" googleplus=\"http://\" rss=\"http://\" youtube=\"http://\" flickr=\"http://\" vkontakte=\"http://\" px500=\"http://\"]\r\n\r\n\r\n[/section]','Share / follow icons','','inherit','closed','closed','','80-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',80,'http://demoweblinks.in/marlins/2020/11/09/80-revision-v1/',0,'revision','',0),(146,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"395px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.1)\"]\n\n[text_box width__sm=\"86\" scale__sm=\"138\"]\n\n<h3 class=\"uppercase\"><strong>TEAM MEMBER ELEMENT</strong></h3>\n<p class=\"lead\">Use this for presenting your team member or staff</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Default Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Color Icon style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Mark Jance\" title=\"CTO / Developer\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Bounce Style\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"bounce\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Push Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"push\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"push\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"push\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" text_hover=\"bounce\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Style\"]\n\n[row]\n\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" pinterest=\"#\" linkedin=\"#\" snapchat=\"9152\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Circle\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ullamcorper</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Overlay Grayscale\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[section bg=\"17\" bg_color=\"rgb(40, 40, 40)\" bg_overlay=\"rgba(0, 0, 0, 0.84)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Mix and match styles\"]\n\n[row]\n\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CEO / FOUNDER\" icon_style=\"small\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_height=\"100%\" image_radius=\"100\" image_hover=\"color\" image_hover_alt=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Lucy Anderson\" title=\"CO FOUNDER\" icon_style=\"fill\" facebook=\"#\" twitter=\"#\" email=\"emailus@email.com\" linkedin=\"#\" image_radius=\"9\" image_hover=\"glow\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Mark Jance\" title=\"CTO / Developer\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_hover=\"zoom\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"3\"]\n\n[team_member img=\"16\" style=\"overlay\" name=\"Nina Lacy\" title=\"Support Ninja\" icon_style=\"fill\" facebook=\"uxthemes\" twitter=\"http://twitter.com/uxthemes\" pinterest=\"http://\" image_radius=\"100\" image_hover=\"color\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n[/section]','Team Member','','inherit','closed','closed','','81-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',81,'http://demoweblinks.in/marlins/2020/11/09/81-revision-v1/',0,'revision','',0),(147,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"500px\" bg=\"17\" bg_size=\"original\" bg_overlay=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>ICON BOX ELEMENT</strong></h3>\n<p class=\"lead\">Create simple icon boxes with this element. Upload any SVG icon or image. You can find beautiful SVG icons here: </p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"Top Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Top Align with border\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" pos=\"center\" icon_border=\"3\" margin=\"px px px px\"]\n\n<h3>Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Left Align\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(140, 188, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(25, 130, 188)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[featured_box img=\"16\" img_width=\"35\" pos=\"left\" icon_border=\"2\" icon_color=\"rgb(188, 69, 25)\" margin=\"px px px px\"]\n\n<h3 class=\"uppercase\">Lorem ipsum dolor sit amet</h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]','Icon Box','','inherit','closed','closed','','82-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',82,'http://demoweblinks.in/marlins/2020/11/09/82-revision-v1/',0,'revision','',0),(148,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"500px\" bg=\"17\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-2\"]\r\n\r\n<h1>Section Titles</h1>\r\n<p class=\"lead\">Split content with beautiful Section Titles</p>\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col]\r\n\r\n[title text=\"This is a normal title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"center\" text=\"This is a centered title with Icon\" icon=\"icon-star\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title text=\"This is a title with a link and icon\" icon=\"icon-star-o\" size=\"undefined\" link_text=\"Click here to view products\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold title\" size=\"171\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold\" text=\"This is a bold title with link\" link_text=\"Click here\" link=\"http://\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n[title style=\"bold-center\" text=\"This is a bold centered title\" size=\"undefined\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n[/col]\r\n\r\n[/row]\r\n','Titles / Dividers','','inherit','closed','closed','','83-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',83,'http://demoweblinks.in/marlins/2020/11/09/83-revision-v1/',0,'revision','',0),(149,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','<p class=\"lead\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla.</p>\r\n[block id=\"faq-accordian\"]','FAQ','','inherit','closed','closed','','85-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',85,'http://demoweblinks.in/marlins/2020/11/09/85-revision-v1/',0,'revision','',0),(150,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"398px\" bg=\"17\" bg_pos=\"66% 25%\" parallax=\"2\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Testemonial element</strong></h3>\n<p class=\"lead\">Tell your customers how happy your clients are</p>\n\n[/text_box]\n\n[/ux_banner]\n[title style=\"center\" text=\"With image left\"]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>This is a FANTASTIC Theme. Do you think that in the next version you could try and have it Multilanguage. Because I have nothing bad to say about this theme. Thank a million!</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"With image on Top\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Boxed Vertical\"]\n\n[row v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Testemonials in a row slider\"]\n\n[ux_slider hide_nav=\"true\" nav_color=\"dark\"]\n\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, can\'t wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n\n[/ux_slider]\n[title style=\"center\" text=\"Testemonials in a slider\"]\n\n[ux_slider]\n\n[ux_banner height=\"378px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Testimonials','','inherit','closed','closed','','86-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',86,'http://demoweblinks.in/marlins/2020/11/09/86-revision-v1/',0,'revision','',0),(151,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\r\n\r\n[text_box width=\"76\"]\r\n\r\n<h1>Buttons</h1>\r\n<p class=\"lead\">Create beautiful Call to Action buttons with the amazing Button Element</p>\r\n[button text=\"Primary Button\" style=\"shade\" link=\"test?asdf&asdf=asdf&asdf&\"]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Unlimited Variations</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" radius=\"12\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" icon=\"icon-heart\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\" radius=\"99\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\" radius=\"6\" icon=\"icon-heart\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[section bg_color=\"rgb(44, 44, 44)\" dark=\"true\"]\r\n\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Buttons on Dark background</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\"]\r\n\r\n[button text=\"Success Color\" color=\"success\"]\r\n\r\n[button text=\"White Color\" color=\"white\"]\r\n\r\n[button text=\"Primary Color\" style=\"outline\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"outline\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"outline\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"outline\"]\r\n\r\n[button text=\"White outline\" color=\"white\" style=\"outline\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Styles</h3>\r\n<p>Select between many different button styles.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Simple link\" style=\"link\"]\r\n\r\n[button text=\"Underline\" style=\"underline\"]\r\n\r\n[button text=\"Outline\" style=\"outline\" depth=\"2\" depth_hover=\"2\"]\r\n\r\n[button text=\"Normal\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Gloss\" style=\"gloss\" radius=\"99\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Shade\" style=\"shade\" radius=\"7\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n[button text=\"Bevel\" style=\"bevel\" radius=\"12\" depth=\"2\" depth_hover=\"5\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button with icon</h3>\r\n<p>Choose between many included Flatsome Icons.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Icon Button\" style=\"bevel\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Icon Left\" style=\"outline\" radius=\"6\" icon=\"icon-instagram\"]\r\n\r\n[button text=\"Reveal Left\" style=\"outline\" icon=\"icon-play\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Reveal Right\" icon=\"icon-angle-right\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Large Button\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-twitter\" icon_pos=\"left\"]\r\n\r\n[button text=\"Large Reveal\" style=\"bevel\" size=\"xlarge\" radius=\"8\" icon=\"icon-checkmark\" icon_pos=\"left\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Simple Button Styles</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Primary Color\" style=\"link\" icon=\"icon-play\" icon_reveal=\"true\"]\r\n\r\n[button text=\"Secondary Color\" color=\"secondary\" style=\"link\"]\r\n\r\n[button text=\"Success Color\" color=\"success\" style=\"link\"]\r\n\r\n[button text=\"Alert Color\" color=\"alert\" style=\"link\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Radius</h3>\r\n<p>Add custom radius to buttons</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Normal Button\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" size=\"large\" radius=\"99\"]\r\n\r\n[button text=\"Normal Button\" style=\"outline\" size=\"large\"]\r\n\r\n[button text=\"Round Button\" style=\"outline\" size=\"large\" radius=\"10\"]\r\n\r\n[button text=\"Circle Button\" style=\"outline\" size=\"large\" radius=\"99\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Shadow</h3>\r\n<p>Add drop shadow to buttons to make them stand out more.</p>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"Large Shadow\" style=\"bevel\" size=\"large\" depth=\"5\" depth_hover=\"4\"]\r\n\r\n[button text=\"Medium Shadow\" style=\"bevel\" size=\"large\" depth=\"3\" depth_hover=\"4\"]\r\n\r\n[button text=\"Small Shadow\" style=\"bevel\" size=\"large\" depth=\"1\" depth_hover=\"2\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Button Sizes</h3>\r\n\r\n[/col]\r\n[col span=\"9\"]\r\n\r\n[button text=\"x Small\" size=\"xsmall\"]\r\n\r\n[button text=\"Smaller\" size=\"smaller\"]\r\n\r\n[button text=\"Small\" size=\"small\"]\r\n\r\n[button text=\"Normal\"]\r\n\r\n[button text=\"Large\" size=\"large\"]\r\n\r\n[button text=\"Larger\" size=\"larger\"]\r\n\r\n[button text=\"X LARGE\" size=\"xlarge\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n[row]\r\n\r\n[col span=\"3\"]\r\n\r\n<h3>Smart Links</h3>\r\n<p>Add simple text to button links to link to various WordPress and WooCommerce pages.</p>\r\n\r\n[/col]\r\n[col span=\"4\"]\r\n\r\n<p>\'<strong>shop</strong>\' : Goes to Shop page</p>\r\n<p>\'<strong>account\'</strong> Goes to My Account Page</p>\r\n<p>\'<strong>checkout\'</strong> Goes to Checkout page</p>\r\n<p>\'<strong>blog\'</strong> Goes to blog page</p>\r\n\r\n[/col]\r\n[col span=\"4\" span__sm=\"12\"]\r\n\r\n<p>\'<strong>home</strong>\' Goes to homepage</p>\r\n<p><strong>\'wishlist</strong>\' Goes to wishlist page</p>\r\n<p>\'<strong>Page Title</strong>\' Goes to page by Title.</p>\r\n\r\n[/col]\r\n\r\n[/row]','Buttons','','inherit','closed','closed','','87-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',87,'http://demoweblinks.in/marlins/2020/11/09/87-revision-v1/',0,'revision','',0),(152,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[map height=\"400px\"]\n\n<h3>Sesam Street 323b, 4010, Norway</h3>\n<p>We\'re open Monday – Friday, 8 a.m. – 7:30 p.m. EST</p>\n\n[/map]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n(insert contact form here)\n\n<p>This is form is just for demo purpose. No inquiries will be answered.</p>\n\n[/col]\n\n[/row]\n<p> </p>','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',88,'http://demoweblinks.in/marlins/2020/11/09/88-revision-v1/',0,'revision','',0),(153,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_banner height=\"507px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n[text_box position_y=\"80\"]\n\n<h1 class=\"lead\">About Us</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]','About','','inherit','closed','closed','','90-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',90,'http://demoweblinks.in/marlins/2020/11/09/90-revision-v1/',0,'revision','',0),(154,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[map lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgb(255, 255, 255)\" content_width__sm=\"100\" position_x=\"50\" position_x__sm=\"0\" position_y=\"50\" saturation=\"-100\"]\r\n\r\n<h3 class=\"uppercase\"><strong>GOOGLE MAP ELEMENT</strong></h3>\r\n<p class=\"lead\">Add highly customisable Google Maps to any page.</p>\r\n\r\n[/map]\r\n[title style=\"center\" text=\"Examples\" margin_top=\"14px\"]\r\n\r\n[row]\r\n\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map controls=\"true\"]\r\n\r\n<p><strong>Map With Tools</strong></p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"89\" color=\"#6d5854\"]\r\n\r\n<p>Use any color  for your map</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n[col span=\"6\" span__sm=\"12\"]\r\n\r\n[map content_width__sm=\"86\" position_x=\"5\" position_y=\"5\" saturation=\"-100\"]\r\n\r\n<p>Enter street adress here. Or any other information you want.</p>\r\n\r\n[/map]\r\n\r\n[/col]\r\n\r\n[/row]\r\n[map height=\"589px\" height__sm=\"747px\" lat=\"40.79022\" long=\"-73.95981\" content_bg=\"rgba(255, 255, 255, 0.85)\" content_width__sm=\"100\" position_x__sm=\"100\" position_y=\"10\" position_y__sm=\"100\" saturation=\"44\"]\r\n\r\n[title text=\"A map with a Form\" icon=\"icon-envelop\"]\r\n\r\n(insert contact form here)\r\n\r\n\r\n[/map]','Map','','inherit','closed','closed','','91-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',91,'http://demoweblinks.in/marlins/2020/11/09/91-revision-v1/',0,'revision','',0),(155,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[ux_slider hide_nav=\"true\" bullets=\"false\"]\n\n[ux_banner height=\"600px\" bg=\"17\" bg_overlay=\"rgba(19, 6, 6, 0.36)\" bg_pos=\"53% 5%\"]\n\n[text_box width=\"61\" width__sm=\"80\" scale=\"136\" scale__sm=\"154\" position_y=\"75\"]\n\n<h3 class=\"uppercase\"><strong>SLIDER ELEMENT</strong></h3>\n<p class=\"lead\">Create amazing Sliders with our Slider element.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" bg=\"17\" bg_pos=\"22% 46%\"]\n\n[text_box width=\"40\" width__sm=\"80\" position_y=\"70\"]\n\n<h3>This is a Full Width Slider</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n[button text=\"Click me\" style=\"outline\" radius=\"10\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"600px\" slide_effect=\"zoom-in\" bg=\"17\" bg_pos=\"49% 42%\"]\n\n[text_box animate=\"bounceIn\"]\n\n<h3>Add Animations and Slide Effects</h3>\n<p class=\"lead\">Add Any Content or Shortcode here</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row v_align=\"middle\" h_align=\"center\"]\n\n[col span=\"5\" span__sm=\"12\" align=\"center\"]\n\n<h3 class=\"uppercase\"><strong>Drag and Drop Editing</strong></h3>\n<p class=\"lead\">Use the UX Builder to Create amazing homepage sliders and ladingpages.</p>\n\n[/col]\n[col span=\"7\" span__sm=\"12\" align=\"center\"]\n\n[ux_image id=\"16\" depth=\"2\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" size=\"undefined\"]\n\n[ux_slider style=\"container\" bg_color=\"rgb(0, 0, 0)\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Focused Slider Style\" size=\"undefined\"]\n\n[ux_slider style=\"focus\" bg_color=\"rgb(82, 82, 82)\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Shadow Slide Style\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" bg_color=\"rgb(238, 238, 238)\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"42\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"center\" text=\"Free Scroll Shadow Slider\" size=\"undefined\"]\n\n[ux_slider style=\"shadow\" slide_width=\"500px\" bg_color=\"rgb(238, 238, 238)\" freescroll=\"true\"]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"51% 19%\"]\n\n[text_box width=\"76\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"53% 13%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\"]\n\n[text_box width=\"66\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"56% 11%\"]\n\n[text_box width=\"70\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 9%\"]\n\n[text_box width=\"72\"]\n\n<h3 class=\"uppercase\"><strong>This is a simple banner</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Dark arrows\" size=\"undefined\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(222, 222, 222)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(238, 238, 238)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"light arrows\"]\n\n[ux_slider]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(46, 46, 46)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(54, 54, 54)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"always visible arrows\"]\n\n[ux_slider hide_nav=\"true\"]\n\n[ux_banner height=\"200px\" bg_color=\"rgb(229, 191, 191)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg_color=\"rgb(171, 204, 196)\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n[title style=\"center\" text=\"Simple arrows\"]\n\n[ux_slider hide_nav=\"true\" nav_style=\"simple\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_style=\"simple\" nav_color=\"dark\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n[col]\n\n[title style=\"center\" text=\"Nav Circle outside\"]\n\n[ux_slider hide_nav=\"true\" nav_pos=\"outside\" nav_color=\"dark\" bullets=\"false\"]\n\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\"]\n\n[text_box]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col]\n\n[/row]','Sliders','','inherit','closed','closed','','94-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',94,'http://demoweblinks.in/marlins/2020/11/09/94-revision-v1/',0,'revision','',0),(156,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg=\"17\" bg_color=\"rgb(50, 50, 50)\" bg_overlay=\"rgba(0, 0, 0, 0.63)\" dark=\"true\"]\n\n[row v_align=\"middle\"]\n\n[col span=\"3\"]\n\n<h1 class=\"uppercase\">Amazing Blog Posts Element</h1>\n<p class=\"lead\">Display your Blog posts in many different ways.</p>\n<ul>\n<li class=\"bullet-checkmark\">Unlimited Styles and Options</li>\n<li class=\"bullet-checkmark\">Select Custom Posts</li>\n<li class=\"bullet-checkmark\">Slider / Row / Grid and Masonry Style</li>\n</ul>\n\n[/col]\n[col span=\"9\"]\n\n[blog_posts style=\"shade\" type=\"slider-full\" grid=\"2\" slider_nav_style=\"circle\" columns=\"1\" title_size=\"larger\" show_date=\"text\" excerpt=\"false\" show_category=\"label\" comments=\"false\" image_size=\"large\" image_overlay=\"rgba(0, 0, 0, 0.09)\" image_hover=\"overlay-remove\" text_size=\"large\" text_hover=\"bounce\" text_padding=\"10% 0px 10% 0px\"]\n\n\n[/col]\n\n[/row]\n\n[/section]\n[section]\n\n[title style=\"center\" text=\"Default Style\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" columns=\"3\" image_height=\"56.25%\"]\n\n[title style=\"center\" text=\"Bounce Style\" size=\"undefined\"]\n\n[blog_posts style=\"bounce\" badge_style=\"square\" image_height=\"75%\"]\n\n[title style=\"center\" text=\"Push Style\" margin_top=\"17px\" size=\"undefined\"]\n\n[blog_posts style=\"push\" columns=\"3\" badge_style=\"circle-inside\" image_height=\"75%\"]\n\n\n[/section]\n[section bg_color=\"rgb(62, 62, 62)\" dark=\"true\"]\n\n[title style=\"center\" text=\"Blog posts inside a dark section\" size=\"undefined\"]\n\n[blog_posts style=\"normal\" slider_nav_style=\"simple\" slider_nav_color=\"light\" slider_nav_position=\"outside\" columns=\"3\" image_height=\"56.25%\"]\n\n\n[/section]\n[title style=\"center\" text=\"Vertical Slide Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" slider_nav_style=\"simple\" slider_nav_position=\"outside\" columns=\"2\" depth=\"2\" image_height=\"89%\" image_width=\"43\"]\n\n[title style=\"center\" text=\"Animated Blog posts in grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" animate=\"fadeInUp\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Overlay Style\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.17)\" image_hover=\"zoom\"]\n\n[title style=\"center\" text=\"Overlay Grayscale\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"overlay\" depth=\"1\" animate=\"fadeInLeft\" title_style=\"uppercase\" show_date=\"text\" image_height=\"144%\" image_overlay=\"rgba(0, 0, 0, 0.56)\" image_hover=\"color\" image_hover_alt=\"overlay-remove-50\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p>Select between many different Hover Styles</p>\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Read More button\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"row\" depth=\"2\" readmore=\"Read More\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts style=\"shade\" type=\"grid\" columns=\"3\" depth=\"1\" posts=\"4\" title_size=\"larger\" title_style=\"uppercase\" readmore=\"Read More\" badge_style=\"circle-inside\" image_height=\"180px\"]\n\n[title style=\"center\" text=\"Blog post in A Masonery Grid\" margin_top=\"31px\" size=\"undefined\"]\n\n[blog_posts type=\"masonry\" columns=\"3\" depth=\"2\" image_height=\"180px\"]','Blog Posts','','inherit','closed','closed','','95-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',95,'http://demoweblinks.in/marlins/2020/11/09/95-revision-v1/',0,'revision','',0),(157,1,'2020-11-09 14:49:49','2020-11-09 14:49:49','[section bg_color=\"rgb(246, 246, 246)\"]\n\n[row]\n\n[col span=\"4\"]\n\n<h1>Tabs Element</h1>\n<p>Ad flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed.  </p>\n\n[/col]\n[col span=\"8\"]\n\n[tabgroup style=\"tabs\"]\n\n[tab title=\"Tab 3 Title\"]\n\n<p> lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 1 Title\"]\n\n<p>Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed..</p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n\n[/section]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Line Tabs Bottom\" style=\"line-bottom\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[tabgroup title=\"Tabs Pills Centered\" style=\"pills\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr.</p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span=\"6\"]\n\n[tabgroup title=\"Outline Tabs Centered\" style=\"outline\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]\n[row]\n\n[col]\n\n[tabgroup title=\"Line Grow Tabs Center\" style=\"line-grow\" align=\"center\"]\n\n[tab title=\"Tab 1 Title\"]\n\n<p>Cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 2 Title\"]\n\n<p>Tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab 3 Title\"]\n\n<p>Helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col]\n\n[tabgroup title=\"Vertical Tabs\" type=\"vertical\"]\n\n[tab title=\"Top tab\"]\n\n<p>Flannel sartorial helvetica readymade. Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee yr.</p>\n\n[/tab]\n[tab title=\"This is tab\"]\n\n<p>Laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"this is another tab\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n[col span__sm=\"12\"]\n\n[tabgroup style=\"outline\" type=\"vertical\"]\n\n[tab title=\"Tab title 1\"]\n\n<p>Sunt cliche tempor irony letterpress mixtape. Letterpress literally retro freegan, lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 2\"]\n\n<p>Lo-fi pitchfork organic narwhal eiusmod yr magna. Sriracha Carles laborum irure gastropub sed. Incididunt sint craft beer, church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n[tab title=\"Tab title 3\"]\n\n<p>Church-key PBR quinoa ennui ugh cliche assumenda scenester 8-bit. Photo booth dolore authentic cornhole fixie. Ea farm-to-table twee DIY salvia tote bag four loko selvage delectus, hella Brooklyn scenester yr. </p>\n\n[/tab]\n\n[/tabgroup]\n\n[/col]\n\n[/row]','Tabs','','inherit','closed','closed','','96-revision-v1','','','2020-11-09 14:49:49','2020-11-09 14:49:49','',96,'http://demoweblinks.in/marlins/2020/11/09/96-revision-v1/',0,'revision','',0),(158,1,'2016-09-04 15:57:34','2016-09-04 15:57:34','[section bg_color=\"#fff\" class=\"flatsome-features\"]\r\n\r\n[title style=\"center\" text=\"Flatsome Main Features\"]\r\n\r\n[ux_pages style=\"default\" parent=\"2862\" col_spacing=\"small\" image_radius=\"3\" image_overlay=\"rgba(255, 255, 255, 0)\" image_hover=\"zoom\" text_align=\"center\"]\r\n\r\n\r\n[/section]\r\n[section bg_overlay=\"rgb(229, 235, 237)\" border=\"1px 0px 1px 0px\"]\r\n\r\n[row style=\"collapse\" h_align=\"center\"]\r\n\r\n[col span=\"7\" span__sm=\"12\" align=\"center\" animate=\"flipInX\"]\r\n\r\n[button text=\"Buy Flatsome Now\" link=\"http://bit.ly/buy-flatsome\" size=\"large\" radius=\"6\" icon=\"icon-shopping-basket\" icon_reveal=\"true\"]\r\n\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Features Overview','','publish','closed','closed','','features-overview','','','2016-09-04 15:57:34','2016-09-04 15:57:34','',0,'http://flatsome.dev/?post_type=blocks&amp;p=9654',0,'blocks','',0),(159,1,'2016-09-03 16:24:28','2016-09-03 16:24:28','[row style=\"small\" h_align=\"center\" class=\"flatsome-demos\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n<h2>Flatsome Theme Demos</h2>\r\n<p class=\"lead\">Flatsome includes many pre-made homepages and settings you can add with a single click. These are just examples. You can mix and match headers, pages, colors and fonts using the Theme Option Panel.</p>\r\n[/col]\r\n\r\n[/row]\r\n\r\n[title style=\"center\" text=\"Shop Demos\"]\r\n\r\n[ux_pages style=\"default\" parent=\"3021\" col_spacing=\"small\" columns=\"3\" depth=\"1\" depth_hover=\"4\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0)\" text_align=\"center\" text_bg=\"rgba(255, 255, 255, 0.63)\" text_padding=\"5px 5px 5px 5px\"]\r\n\r\n[title style=\"center\" text=\"Business Demos\"]\r\n\r\n[ux_pages style=\"default\" parent=\"3025\" col_spacing=\"small\" columns=\"3\" depth=\"1\" depth_hover=\"4\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0)\" text_align=\"center\" text_bg=\"rgba(255, 255, 255, 0.76)\" text_padding=\"5px 5px 5px 5px\"]','Demos','','publish','closed','closed','','demos','','','2016-09-03 16:24:28','2016-09-03 16:24:28','',0,'http://flatsome.dev/?post_type=blocks&amp;p=9439',0,'blocks','',0),(160,1,'2016-08-25 13:42:06','2016-08-25 13:42:06','<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet.</p>\n(insert contact form here)','Footer - Newsletter Signup','','publish','closed','closed','','footer-newsletter-signup','','','2016-08-25 13:42:06','2016-08-25 13:42:06','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8783',0,'blocks','',0),(161,1,'2016-08-25 13:41:28','2016-08-25 13:41:28','<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[follow facebook=\"#\" instagram=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\"]','Footer - About us','','publish','closed','closed','','footer-about-us','','','2016-08-25 13:41:28','2016-08-25 13:41:28','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8781',0,'blocks','',0),(162,1,'2016-08-18 11:43:28','2016-08-18 11:43:28','[ux_slider]\n\n[ux_banner height=\"200px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"69% 3%\"]\n\n[text_box]\n\n<h3>SALE ENDS SOON</h3>\n[ux_countdown]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"200px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.35)\" bg_pos=\"67% 29%\"]\n\n[text_box]\n\n<h3 class=\"uppercase\"><strong>Category top banner</strong></h3>\n<p class=\"lead\">This is a Block and can be edited live in with the Page Builder</p>\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]','Shop - Category Slider','','publish','closed','closed','','shop-category-slider','','','2016-08-18 11:43:28','2016-08-18 11:43:28','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8635',0,'blocks','',0),(163,1,'2016-08-18 10:42:40','2016-08-18 10:42:40','[ux_banner height=\"319px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.1)\" parallax=\"3\"]\n\n[text_box]\n\n<h1 class=\"uppercase\"><strong>Shop</strong></h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismotest. Change or remove this banner easely.</p>\n\n[/text_box]\n\n[/ux_banner]','Shop - Header','','publish','closed','closed','','shop-header','','','2016-08-18 10:42:40','2016-08-18 10:42:40','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8593',0,'blocks','',0),(164,1,'2016-08-18 07:04:50','2016-08-18 07:04:50','[ux_banner height=\"400px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.12)\" bg_pos=\"66% 24%\" parallax=\"2\"]\r\n\r\n[text_box parallax=\"-1\" text_depth=\"1\"]\r\n\r\n<h1 class=\"uppercase\"><strong>our Blog</strong></h1>\r\n<p class=\"lead\">Change This header to anything by using the UX Builder. You can also remove it. It\'s only visible on the blog homepage.</p>\r\n[share]\r\n\r\n\r\n[/text_box]\r\n\r\n[/ux_banner]','Blog Header','','publish','closed','closed','','blog-header','','','2016-08-18 07:04:50','2016-08-18 07:04:50','',0,'http://flatsome.dev/?post_type=blocks&amp;p=8587',0,'blocks','',0),(165,1,'2016-01-25 11:39:27','2016-01-25 11:39:27','[section bg_color=\"rgb(250, 250, 250)\" border=\"2px 0px 1px 0px\"]\r\n\r\n[row h_align=\"center\"]\r\n\r\n[col span=\"9\" span__sm=\"12\" align=\"center\"]\r\n<h1 class=\"lead uppercase\">Flatsome Elements</h1>\r\n<p class=\"lead\">Flatsome is more than a theme. It\'s a framework for creating amazing Websites. Here is a collection of our highly customisable elements.</p>\r\n[/col]\r\n[col]\r\n\r\n[ux_pages style=\"default\" parent=\"elements\" col_spacing=\"small\" columns=\"8\" depth=\"1\" depth_hover=\"1\" image_height=\"68%\" image_hover=\"zoom\" text_bg=\"rgb(250, 250, 250)\" text_padding=\"1px 1px 3px 10px\"]\r\n\r\n[/col]\r\n\r\n[/row]\r\n\r\n[/section]','Elements Overview','','publish','closed','closed','','elements-overview','','','2016-01-25 11:39:27','2016-01-25 11:39:27','',0,'http://flatsome.dev/?post_type=blocks&amp;p=3764',0,'blocks','',0),(166,1,'2014-08-10 10:06:55','2014-08-10 10:06:55','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.t.','Kancheepuram Sarees','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','osaka-entry-tee-superdry','','','2020-12-10 09:04:50','2020-12-10 09:04:50','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=395',0,'product','',0),(167,1,'2014-08-09 22:18:44','2014-08-09 22:18:44','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut posuere mollis nulla ut consectetur. Vivamus semper adipiscing convallis. Etiam non euismod tellus. Maecenas accumsan mauris a erat interdum volutpat. Donec volutpat purus tempor sem molestie, sed blandit lacus posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut posuere mollis nulla ut consectetur.\r\n\r\n&nbsp;','Green Colored kanjivaram Silk Saree','Vivamus semper adipiscing convallis. Etiam non euismod tellus. Maecenas accumsan mauris a erat interdum volutpat.','publish','open','closed','','all-star-canvas-hi-converse','','','2020-12-10 09:28:32','2020-12-10 09:28:32','',0,'http://uxthemes.wpengine.com/product/all-star-canvas-hi-converse/',0,'product','',0),(168,1,'2014-08-09 21:11:51','2014-08-09 21:11:51','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis condimentum pretium turpis, vel pulvinar diam vulputate quis. Donec porttitor volutpat rutrum. Suspendisse suscipit arcu velit, in rutrum est molestie in. Suspendisse suscipit arcu velit, in rutrum est molestie in. Proin convallis scelerisque facilisis. Integer vestibulum mollis felis eu mollis.\r\n\r\nFluro Big Pullover NOK 1795, Designers Remix - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Fancy Sarees','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis condimentum pretium turpis, vel pulvinar diam vulputate quis. Donec porttitor volutpat rutrum. Fluro Big Pullover NOK 1795, Designers Remix - Nelly.com','publish','open','closed','','fluro-big-pullover-designers-remix','','','2020-11-25 09:53:30','2020-11-25 09:53:30','',0,'http://uxthemes.wpengine.com/product/fluro-big-pullover-designers-remix/',0,'product','',0),(169,1,'2014-08-08 20:57:29','2014-08-08 20:57:29','Tumblr post-ironic typewriter, sriracha tote bag kogi you probably haven\'t heard of them 8-bit tousled aliquip nostrud fixie ut put a bird on it null. tousled aliquip nostrud fixie ut put a bird on it nulla. Direct trade Banksy Carles pop-up.\r\n\r\nVaranise CN Tee NOK 449, Hilfiger Denim - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','party gown','Varanise CN Tee NOK 449, Hilfiger Denim - NELLY.COM. Marfa authentic High Life veniam. Tumblr post-ironic typewriter, sriracha tote bag kogi you. Direct trade Banksy Carles pop-up. Marfa authentic High Life veniam.','publish','open','closed','','varanise-cn-tee-hilfiger-denim','','','2020-11-25 09:54:41','2020-11-25 09:54:41','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=132',0,'product','',0),(170,1,'2014-07-06 10:43:57','2014-07-06 10:43:57','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','salvar','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','weekend-in-san-fransico','','','2020-11-25 09:55:43','2020-11-25 09:55:43','',0,'http://flatsome.dev/?post_type=product&#038;p=8263',0,'product','',0),(171,1,'2014-06-09 21:48:15','2014-06-09 21:48:15','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis condimentum pretium turpis, vel pulvinar diam vulputate quis. Donec porttitor volutpat rutrum. Suspendisse suscipit arcu velit, in rutrum est molestie in.\r\n\r\nSuspendisse suscipit arcu velit, in rutrum est molestie in. Proin convallis scelerisque facilisis. Integer vestibulum mollis felis eu mollis.  Suspendisse suscipit arcu velit, in rutrum est molestie in. Proin convallis scelerisque facilisis. Integer vestibulum mollis felis eu mollis.\r\n\r\nBuy: Hirise Skinny 199700022 NOK 1195, Levis - NELLY.COM\r\n\r\nSuspendisse suscipit arcu velit, in rutrum est molestie in. Proin convallis scelerisque facilisis. Integer vestibulum mollis felis eu mollis.','sleeveless Lacha','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vel pulvinar diam vulputate quis ,vel pulvinar diam vulputate quis. Donec porttitor volutpat rutrum.  Vulputate quis. Donec porttitor volutpat rutrum. Donec porttitor volutpat rutrum.  Vulputate quis.','publish','open','closed','','lucy-slim-jeans-nok-379-noisy-may','','','2020-12-09 07:07:12','2020-12-09 07:07:12','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=229',0,'product','',0),(172,1,'2013-08-10 10:26:25','2013-08-10 10:26:25','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.\r\n\r\nSS Crew California Sub NOK 199, River Island - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Party Lachas','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','ss-crew-california-sub-river-island','','','2020-11-25 10:13:08','2020-11-25 10:13:08','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=432',0,'product','',0),(173,1,'2013-08-10 10:21:47','2013-08-10 10:21:47','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.\r\n\r\nLand Tee NOK 149, Jack &amp; Jones - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Winder Gowns','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','land-tee-jack-jones','','','2020-12-10 09:38:12','2020-12-10 09:38:12','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=427',0,'product','',0),(174,1,'2013-08-10 10:19:20','2013-08-10 10:19:20','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.\r\n\r\nBjorn Tee SS NOK 199, Jack &amp; Jones - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Mary\'s Ball Gowns','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','bjorn-tee-ss-jack-jones','','','2020-12-10 09:39:24','2020-12-10 09:39:24','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=422',0,'product','',0),(175,1,'2013-08-10 10:17:13','2013-08-10 10:17:13','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.\r\n\r\nWicked SS O-Neck NOK 199, Selected Homme - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Pink Ball Gowns','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','wicked-ss-o-neck-selected-homme','','','2020-12-10 09:40:43','2020-12-10 09:40:43','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=416',0,'product','',0),(176,1,'2013-08-10 10:15:29','2013-08-10 10:15:29','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.\r\n\r\nLawrance Polo Tee NOK 249, Jack &amp; Jones - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Artv Silks','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','lawrance-polo-tee-jack-jones','','','2020-11-25 09:59:55','2020-11-25 09:59:55','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=411',0,'product','',0),(177,1,'2013-08-10 10:09:09','2013-08-10 10:09:09','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.\r\n\r\nRandal Tee NOK 149, Jack &amp; Jones - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Fancy Sarees','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','randal-tee-jack-jones','','','2020-11-25 09:58:04','2020-11-25 09:58:04','',0,'http://uxthemes.wpengine.com/product/randal-tee-jack-jones/',0,'product','',0),(178,1,'2013-08-10 10:09:03','2013-08-10 10:09:03','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida. Suspendisse nibh neque, hendrerit vel nisi at, ultrices adipiscing justo. Nunc ullamcorper molestie felis at pharetra.\r\n\r\nJeansmaker Tee NOK 299, Lee Jeans - NELLY.COM\r\n\r\nMarfa authentic High Life veniam Carles nostrud, pickled meggings assumenda fingerstache keffiyeh Pinterest.','Vintage long Ball','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum iaculis massa nec velit commodo lobortis. Quisque diam lacus, tincidunt vitae eros porta, sagittis rhoncus est. Quisque sed justo a erat lobortis gravida.','publish','open','closed','','jeansmaker-tee-lee-jeans','','','2020-12-10 09:41:38','2020-12-10 09:41:38','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=400',0,'product','',0),(179,1,'2013-08-10 10:01:52','2013-08-10 10:01:52','Marfa authentic High Life veniam. Tumblr post-ironic typewriter, sriracha tote bag kogi you. Pima SS O-Neck NOOS NOK Selected Homme - NELLY.COMMarfa authentic High Life veniam. Tumblr post-ironic typewriter, sriracha tote bag kogi you. Pima SS O-Neck NOOS NOK Selected Homme - NELLY.COM','Red Golden','Marfa authentic High Life veniam. Tumblr post-ironic typewriter, sriracha tote bag kogi you. Pima SS O-Neck NOOS NOK Selected Homme - NELLY.COM','publish','open','closed','','pima-ss-o-neck-noos-selected-homme','','','2020-12-10 09:42:23','2020-12-10 09:42:23','',0,'http://uxthemes.wpengine.com/?post_type=product&#038;p=389',0,'product','',0),(223,1,'2016-08-28 09:39:54','2016-08-28 09:39:54','','Lookbook Summer','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','lookbook-summer','','','2016-08-28 09:39:54','2016-08-28 09:39:54','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8922',0,'featured_item','',0),(224,1,'2016-08-28 09:38:06','2016-08-28 09:38:06','','Another Print Package','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. ','publish','open','closed','','another-print-package','','','2016-08-28 09:38:06','2016-08-28 09:38:06','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8919',0,'featured_item','',0),(225,1,'2016-08-28 09:36:46','2016-08-28 09:36:46','[ux_slider margin=\"13px\"]\n\n[ux_image id=\"16\"]\n\n[ux_image id=\"16\"]\n\n[ux_image id=\"16\"]\n\n\n[/ux_slider]\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>','FL3 Print Package','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','fl3-print-package','','','2016-08-28 09:36:46','2016-08-28 09:36:46','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8917',0,'featured_item','',0),(226,1,'2016-08-28 09:35:26','2016-08-28 09:35:26','','Awesome Pencil Poster','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat','publish','open','closed','','awesome-pencil-poster','','','2016-08-28 09:35:26','2016-08-28 09:35:26','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8915',0,'featured_item','',0),(227,1,'2016-08-28 09:29:58','2016-08-28 09:29:58','','Portfolio typography','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','portfolio-typography','','','2016-08-28 09:29:58','2016-08-28 09:29:58','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8913',0,'featured_item','',0),(228,1,'2016-08-28 09:25:23','2016-08-28 09:25:23','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','Flatsome Poster Print','','publish','open','closed','','flatsome-poster-print','','','2016-08-28 09:25:23','2016-08-28 09:25:23','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8909',0,'featured_item','',0),(229,1,'2016-08-28 09:22:57','2016-08-28 09:22:57','','Magazine','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat','publish','open','closed','','magazine','','','2016-08-28 09:22:57','2016-08-28 09:22:57','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8890',0,'featured_item','',0),(230,1,'2016-08-28 08:57:59','2016-08-28 08:57:59','','Flat T-Shirt Company','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.','publish','open','closed','','flat-t-shirt-company','','','2016-08-28 08:57:59','2016-08-28 08:57:59','',0,'http://flatsome.dev/?post_type=featured_item&amp;p=8887',0,'featured_item','',0),(231,1,'2016-08-09 09:52:05','2016-08-09 09:52:05',' ','','','publish','closed','closed','','8516','','','2016-08-09 09:52:05','2016-08-09 09:52:05','',51,'http://flatsome.dev/?p=8516',2,'nav_menu_item','',0),(254,1,'2015-11-19 10:44:50','2015-11-19 10:44:50',' ','','','publish','closed','closed','','3167','','','2015-11-19 10:44:50','2015-11-19 10:44:50','',51,'http://flatsome.dev/2015/11/19/3167/',1,'nav_menu_item','',0),(255,1,'2015-11-19 10:44:48','2015-11-19 10:44:48',' ','','','publish','closed','closed','','3121','','','2015-11-19 10:44:48','2015-11-19 10:44:48','',0,'http://flatsome.dev/2015/11/19/3121/',3,'nav_menu_item','',0),(256,1,'2015-11-19 10:44:48','2015-11-19 10:44:48',' ','','','publish','closed','closed','','3119','','','2015-11-19 10:44:48','2015-11-19 10:44:48','',51,'http://flatsome.dev/2015/11/19/3119/',4,'nav_menu_item','',0),(267,1,'2015-11-19 10:44:52','2015-11-19 10:44:52',' ','','','publish','closed','closed','','3205','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',51,'http://flatsome.dev/2015/11/19/3205/',10,'nav_menu_item','',0),(268,1,'2015-11-19 10:44:48','2015-11-19 10:44:48',' ','','','publish','closed','closed','','3118','','','2015-11-19 10:44:48','2015-11-19 10:44:48','',0,'http://flatsome.dev/2015/11/19/3118/',5,'nav_menu_item','',0),(269,1,'2020-11-10 08:11:48','2020-11-10 08:11:48','','marlin','','inherit','open','closed','','marlin','','','2020-11-10 08:11:48','2020-11-10 08:11:48','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/marlin.png',0,'attachment','image/png',0),(274,1,'2020-11-10 09:51:36','2020-11-10 09:51:36','','pexels-josé-luis-photographer-2576788','','inherit','open','closed','','pexels-jose-luis-photographer-2576788','','','2020-11-10 09:51:36','2020-11-10 09:51:36','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-jose-luis-photographer-2576788.jpg',0,'attachment','image/jpeg',0),(275,1,'2020-11-10 10:02:49','2020-11-10 10:02:49','','pexels-lucas-da-miranda-1967902','','inherit','open','closed','','pexels-lucas-da-miranda-1967902','','','2020-11-10 10:02:49','2020-11-10 10:02:49','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-lucas-da-miranda-1967902.jpg',0,'attachment','image/jpeg',0),(276,1,'2020-11-10 10:10:49','2020-11-10 10:10:49','','pexels-adam-sabljaković-3214409','','inherit','open','closed','','pexels-adam-sabljakovic-3214409','','','2020-11-10 10:10:49','2020-11-10 10:10:49','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-adam-sabljakovic-3214409.jpg',0,'attachment','image/jpeg',0),(277,1,'2020-11-10 12:29:41','2020-11-10 12:29:41','<!-- wp:html -->\n[ux_slider]\n\n[ux_banner height=\"100%\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.31)\" bg_pos=\"68% 27%\"]\n\n[text_box width=\"52\" width__sm=\"80\" animate=\"bounceIn\" parallax=\"-1\" position_x=\"50\" position_x__sm=\"50\" position_y=\"50\" position_y__sm=\"50\"]\n\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">Now Online!</span></p>\n<h2 class=\"uppercase\"><strong><span style=\"font-size: 200%;\" data-line-height=\"xs\">BIG SalE</span></strong></h2>\n<h3 class=\"lead uppercase\">up to <strong>70%</strong> off</h3>\n[button text=\"Shop Now\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"100%\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"68% 11%\"]\n\n[text_box width=\"52\" width__sm=\"77\" animate=\"fadeInUp\" parallax=\"-1\" position_x=\"10\" position_x__sm=\"5\" position_y=\"50\" position_y__sm=\"50\" text_align=\"left\"]\n\n<p class=\"alt-font\"><span style=\"font-size: 160%;\">New Trends 2016</span></p>\n<h2 class=\"uppercase\"><span style=\"font-size: 150%;\"><strong><span data-line-height=\"xs\">CELEBRATE SUMMER<br /></span></strong></span></h2>\n[button text=\"Shop Now\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row style=\"collapse\" width=\"full-width\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"250px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.12)\" bg_pos=\"42% 18%\" hover=\"zoom-fade\"]\n\n[text_box width=\"75\" position_x=\"50\" position_y=\"50\"]\n\n<h4 class=\"uppercase\">Summer 2017</h4>\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"250px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.2)\" bg_pos=\"50% 57%\" hover=\"zoom-fade\"]\n\n[text_box width=\"70\" position_x=\"10\" position_y=\"50\" text_align=\"left\"]\n\n<h4 class=\"uppercase\">Summer 2017</h4>\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_banner height=\"250px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"31% 0%\" hover=\"zoom-fade\"]\n\n[text_box text_color=\"dark\" width=\"70\" position_x=\"90\" position_y=\"50\" text_align=\"right\"]\n\n<h4 class=\"uppercase\">Summer 2017</h4>\n<h2 class=\"uppercase\"><strong>NEW Summer Trends</strong></h2>\n[button text=\"Shop now\" color=\"white\" style=\"outline\" radius=\"99\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col]\n\n[/row]\n[row h_align=\"center\"]\n\n[col span=\"7\" span__sm=\"12\" padding=\"40px 0px 0px 0px\" align=\"center\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 160%;\">Welcome to our Shop</span></h2>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n[button text=\"About us\" style=\"outline\" size=\"small\" radius=\"99\" link=\"about-us\"]\n\n[button text=\"Shop now\" size=\"small\" radius=\"99\" link=\"shop\"]\n\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\n\n[ux_product_categories style=\"overlay\" type=\"grid\" grid_height=\"400px\" number=\"4\" image_hover=\"zoom\" image_hover_alt=\"glow\" text_pos=\"middle\" text_size=\"large\"]\n\n[title style=\"center\" text=\"Browse products\" size=\"undefined\"]\n\n[ux_products cat=\"81\"]\n\n[ux_banner height=\"426px\" bg=\"17\" bg_pos=\"72% 78%\" parallax=\"3\"]\n\n[text_box width=\"61\" width__sm=\"79\" scale__sm=\"158\" animate=\"fadeInRight\" position_x=\"50\" position_x__sm=\"50\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong>Signup for newsletter</strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n<p>(insert contact form here)</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Shop Feature 1\" margin=\"px px px px\" icon_border=\"1\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Shop Feature 2\" margin=\"px px px px\" icon_border=\"1\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" animate=\"fadeInUp\"]\n\n[featured_box img=\"16\" pos=\"center\" title=\"Shop Feature 3\" margin=\"px px px px\" icon_border=\"1\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"Latest news\" margin_top=\"30px\" size=\"undefined\"]\n\n[blog_posts style=\"vertical\" columns=\"2\" slider_nav_style=\"circle\" slider_nav_position=\"outside\" title_style=\"uppercase\" badge_style=\"circle-inside\" image_height=\"100%\" image_width=\"53\" image_radius=\"100\"]\n\n[title style=\"center\" text=\"Follow Us on Instagram\" icon=\"icon-instagram\" margin_top=\"30px\" size=\"undefined\"]\n\n[ux_instagram_feed username=\"topshop\" type=\"slider\" width=\"full-width\" columns=\"6\" slider_nav_style=\"circle\" slider_nav_color=\"light\"]\n\n\n<!-- /wp:html -->','Fullscreen Fashion','','inherit','closed','closed','','75-revision-v1','','','2020-11-10 12:29:41','2020-11-10 12:29:41','',75,'http://demoweblinks.in/marlins/2020/11/10/75-revision-v1/',0,'revision','',0),(278,1,'2020-11-10 12:38:21','2020-11-10 12:38:21','','pexels-josé-luis-photographer-2576788','','inherit','open','closed','','pexels-jose-luis-photographer-2576788-2','','','2020-11-10 12:38:21','2020-11-10 12:38:21','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-jose-luis-photographer-2576788-1.jpg',0,'attachment','image/jpeg',0),(279,1,'2020-11-13 10:00:15','2020-11-13 10:00:15','[wcmp_vendor]','Vendor Dashboard','','publish','closed','closed','','dashboard','','','2020-11-13 10:00:15','2020-11-13 10:00:15','',0,'http://demoweblinks.in/marlins/dashboard/',0,'page','',0),(280,1,'2020-11-13 10:00:15','2020-11-13 10:00:15','[vendor_registration]','Vendor Registration','','publish','closed','closed','','vendor-registration','','','2020-11-13 10:00:15','2020-11-13 10:00:15','',0,'http://demoweblinks.in/marlins/vendor-registration/',0,'page','',0),(281,1,'2020-11-13 10:27:19','2020-11-13 10:27:19','<!-- wp:shortcode -->\n[wcmp-regi-12]\n<!-- /wp:shortcode -->','V Registation','','publish','closed','closed','','v-registation','','','2020-11-19 11:45:48','2020-11-19 11:45:48','',0,'http://demoweblinks.in/marlins/?page_id=281',0,'page','',0),(282,1,'2020-11-13 10:27:19','2020-11-13 10:27:19','<!-- wp:shortcode -->\n[wcmp-regi-12]\n<!-- /wp:shortcode -->','V Registation','','inherit','closed','closed','','281-revision-v1','','','2020-11-13 10:27:19','2020-11-13 10:27:19','',281,'http://demoweblinks.in/marlins/2020/11/13/281-revision-v1/',0,'revision','',0),(283,1,'2020-11-13 10:29:06','2020-11-13 10:29:06','<!-- wp:shortcode -->\n[wcmp-regi-6]\n<!-- /wp:shortcode -->','V Registation','','inherit','closed','closed','','281-revision-v1','','','2020-11-13 10:29:06','2020-11-13 10:29:06','',281,'http://demoweblinks.in/marlins/2020/11/13/281-revision-v1/',0,'revision','',0),(285,2,'2020-11-13 11:14:33','2020-11-13 11:14:33','','scarters-the-informal_black_hover_480x480','','inherit','open','closed','','scarters-the-informal_black_hover_480x480','','','2020-11-13 11:14:33','2020-11-13 11:14:33','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/scarters-the-informal_black_hover_480x480.png',0,'attachment','image/png',0),(286,1,'2020-11-13 11:17:51','2020-11-13 11:17:51','','Order &ndash; November 13, 2020 @ 11:17 AM','','wc-processing','closed','closed','wc_order_tRC1ZHrwcv2Qr','order-nov-13-2020-1117-am','','','2020-11-13 11:20:55','2020-11-13 11:20:55','',0,'http://demoweblinks.in/marlins/?post_type=shop_order&#038;p=286',0,'shop_order','',3),(287,2,'2020-11-13 11:17:51','2020-11-13 11:17:51','','Order &ndash; November 13, 2020 @ 11:17 AM','','wc-processing','open','closed','wcmp_order_5fae6b5f63ed2','vendor-order-november-13-2020-1117-am','','','2020-11-13 11:20:55','2020-11-13 11:20:55','',286,'http://demoweblinks.in/marlins/?post_type=shop_order&#038;p=287',0,'shop_order','',3),(288,2,'2020-11-13 11:17:51','2020-11-13 11:17:51','','Commission - November 13, 2020 @ 11:17 AM','','private','closed','closed','','commission-november-13-2020-1117-am','','','2020-11-13 11:17:51','2020-11-13 11:17:51','',0,'http://demoweblinks.in/marlins/dc_commission/commission-november-13-2020-1117-am/',0,'dc_commission','',1),(301,1,'2020-11-17 08:01:31','2020-11-17 08:01:31','http://demoweblinks.in/marlins/wp-content/uploads/2020/11/cropped-marlin.png','cropped-marlin.png','','inherit','open','closed','','cropped-marlin-png','','','2020-11-17 08:01:31','2020-11-17 08:01:31','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/cropped-marlin.png',0,'attachment','image/png',0),(309,1,'2020-11-17 08:10:13','2020-11-17 08:10:13','<!-- wp:html -->\n[section bg_color=\"rgb(241, 241, 241)\" padding=\"8px\" margin=\"15px\"]\n\n[row style=\"collapse\" col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\" align=\"center\"]\n\n[featured_box img=\"16\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\n\n<p><span style=\"font-size: 90%;\"><strong>Free Delivery</strong> World Wide* <a href=\"#\">Learn more</a></span></p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\n\n[featured_box img=\"16\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\n\n<p><span style=\"font-size: 90%;\">Loved by our Customers. <strong>5000+</strong> Reviews</span></p>\n\n[/featured_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\" padding=\"0px 15px 0px 15px\"]\n\n[featured_box img=\"16\" img_width=\"20\" pos=\"left\" margin=\"px px px px\"]\n\n<p><span style=\"font-size: 90%;\"><strong>Free Returns</strong> and <strong>Free Shipping</strong></span></p>\n\n[/featured_box]\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box width__sm=\"80\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" border_style=\"dashed\" border_radius=\"undefined\" border_color=\"rgba(0, 0, 0, 0.12)\"]\n\n[text_box width__sm=\"80\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\" text_padding=\"20px 20px 20px 20px\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" image_height=\"106%\" text_bg=\"rgb(255, 255, 255)\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_size=\"large\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\n\n[text_box width=\"58\" width__sm=\"80\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 08:10:13','2020-11-17 08:10:13','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(310,1,'2020-11-17 08:12:39','2020-11-17 08:12:39','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 08:12:39','2020-11-17 08:12:39','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(314,1,'2020-11-17 10:03:48','2020-11-17 10:03:48','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:03:48','2020-11-17 10:03:48','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(315,1,'2020-11-17 10:10:12','2020-11-17 10:10:12','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:10:12','2020-11-17 10:10:12','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(316,1,'2020-11-17 10:11:15','2020-11-17 10:11:15','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Lehenga</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:11:15','2020-11-17 10:11:15','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(317,1,'2020-11-17 10:11:53','2020-11-17 10:11:53','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:11:53','2020-11-17 10:11:53','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(319,1,'2020-11-17 10:17:18','2020-11-17 10:17:18','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"500px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"160px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:17:18','2020-11-17 10:17:18','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(320,1,'2020-11-17 10:18:36','2020-11-17 10:18:36','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:18:36','2020-11-17 10:18:36','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(321,1,'2020-11-17 10:20:30','2020-11-17 10:20:30','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:20:30','2020-11-17 10:20:30','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(322,1,'2020-11-17 10:22:31','2020-11-17 10:22:31','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:22:31','2020-11-17 10:22:31','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(323,1,'2020-11-17 10:22:45','2020-11-17 10:22:45','<!-- wp:html -->\n[ux_banner_grid]\n\n[col_grid span=\"9\" span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"2-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Don\'t Miss</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>Sale ends soon</strong></span></h2>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.17)\"]\n\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"3\" span__sm=\"12\" height=\"1-3\"]\n\n[ux_banner height=\"160px\" bg=\"17\" bg_size=\"thumbnail\" bg_overlay=\"rgba(0, 0, 0, 0.17)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><span style=\"font-size: 130%;\"><strong>SUMMER SALE</strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-17 10:22:45','2020-11-17 10:22:45','',64,'http://demoweblinks.in/marlins/2020/11/17/64-revision-v1/',0,'revision','',0),(325,1,'2020-11-18 11:51:57','2020-11-18 11:51:57','','pexels-jessica-ticozzelli-5670181','','inherit','open','closed','','pexels-jessica-ticozzelli-5670181','','','2020-11-18 11:51:57','2020-11-18 11:51:57','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-jessica-ticozzelli-5670181.jpg',0,'attachment','image/jpeg',0),(327,1,'2020-11-18 11:57:06','2020-11-18 11:57:06','','bg-new','','inherit','open','closed','','bg-new','','','2020-11-18 11:57:06','2020-11-18 11:57:06','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/bg-new.jpg',0,'attachment','image/jpeg',0),(328,1,'2020-11-18 11:57:34','2020-11-18 11:57:34','','pexels-pixabay-458766','','inherit','open','closed','','pexels-pixabay-458766','','','2020-11-18 11:57:34','2020-11-18 11:57:34','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-pixabay-458766.jpg',0,'attachment','image/jpeg',0),(329,1,'2020-11-18 11:58:10','2020-11-18 11:58:10','','pexels-elizaveta-dushechkina-3727149','','inherit','open','closed','','pexels-elizaveta-dushechkina-3727149','','','2020-11-18 11:58:10','2020-11-18 11:58:10','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-elizaveta-dushechkina-3727149.jpg',0,'attachment','image/jpeg',0),(330,1,'2020-11-18 12:03:06','2020-11-18 12:03:06','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"64% 34%\"]\n\n[text_box width=\"54\" width__sm=\"80\" position_x=\"85\" position_y=\"50\" text_align=\"right\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n[button text=\"Browse Now\" size=\"large\" expand=\"0\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-18 12:03:06','2020-11-18 12:03:06','',64,'http://demoweblinks.in/marlins/2020/11/18/64-revision-v1/',0,'revision','',0),(331,1,'2020-11-18 12:06:18','2020-11-18 12:06:18','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-18 12:06:18','2020-11-18 12:06:18','',64,'http://demoweblinks.in/marlins/2020/11/18/64-revision-v1/',0,'revision','',0),(332,1,'2020-11-18 12:08:18','2020-11-18 12:08:18','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Anarkali</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid height=\"303\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"278\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Tops</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_size=\"medium\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"47% 55%\" hover=\"zoom\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">Sarees</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong></strong></span></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-18 12:08:18','2020-11-18 12:08:18','',64,'http://demoweblinks.in/marlins/2020/11/18/64-revision-v1/',0,'revision','',0),(333,1,'2020-11-18 13:15:37','2020-11-18 13:15:37','','slide','','inherit','open','closed','','slide','','','2020-11-18 13:15:37','2020-11-18 13:15:37','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/slide.jpg',0,'attachment','image/jpeg',0),(334,1,'2020-11-18 14:18:13','2020-11-18 14:18:13','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"xsmall\" height=\"370\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase alt-font\"><strong>MARLINS</strong></h2>\n<h4 class=\"alt-font\"><strong>WARDROBE</strong></h4>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[title text=\"Our BestSellers\" size=\"undefined\" link_text=\"Browse All\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\" orderby=\"sales\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[gap height=\"50px\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-18 14:18:13','2020-11-18 14:18:13','',64,'http://demoweblinks.in/marlins/2020/11/18/64-revision-v1/',0,'revision','',0),(335,1,'2020-11-19 05:40:04','2020-11-19 05:40:04','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"xsmall\" height=\"370\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase alt-font\"><strong>MARLINS</strong></h2>\n<h4 class=\"alt-font\"><strong>WARDROBE</strong></h4>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[title text=\"Latest on Sale\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" orderby=\"sales\" show=\"onsale\"]\n\n[title text=\"Weekly Featured Products\" size=\"undefined\" link_text=\"Browse all\" link=\"#\"]\n\n[ux_products columns=\"5\" cat=\"73\" products=\"6\"]\n\n[ux_banner height=\"399px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.08)\" bg_pos=\"53% 43%\" parallax=\"3\" visibility=\"hidden\"]\n\n[text_box width=\"58\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong>Sale Ends Soon</strong></h2>\n<h4 class=\"lead uppercase\">Up to <strong>50% off</strong> selected products</h4>\n[ux_countdown bg_color=\"rgba(255, 255, 255, 0.23)\"]\n\n[button text=\"Browse now\"]\n\n\n[/text_box]\n\n[/ux_banner]\n[gap height=\"44px\"]\n\n[ux_product_categories style=\"bounce\" image_height=\"107%\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 05:40:04','2020-11-19 05:40:04','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(336,1,'2020-11-19 06:14:09','2020-11-19 06:14:09','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase alt-font\"><strong>MARLINS</strong></h2>\n<h4 class=\"alt-font\"><strong>WARDROBE</strong></h4>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 06:14:09','2020-11-19 06:14:09','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(337,1,'2020-11-19 06:24:11','2020-11-19 06:24:11','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong><em>\"Quality is not an act,</em></strong></h2>\n<h2 class=\"uppercase\"><strong><em> it is a habit\"</em></strong></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_gallery]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 06:24:11','2020-11-19 06:24:11','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(338,1,'2020-11-19 06:28:31','2020-11-19 06:28:31','','doctor-icon-avatar-white_136162-58','','inherit','open','closed','','doctor-icon-avatar-white_136162-58','','','2020-11-19 06:28:31','2020-11-19 06:28:31','',166,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/doctor-icon-avatar-white_136162-58.jpg',0,'attachment','image/jpeg',0),(339,1,'2020-11-19 06:33:36','2020-11-19 06:33:36','','pexels-ken-ozuna-2423929','','inherit','open','closed','','pexels-ken-ozuna-2423929','','','2020-11-19 06:33:36','2020-11-19 06:33:36','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-ken-ozuna-2423929.jpg',0,'attachment','image/jpeg',0),(340,1,'2020-11-19 06:34:11','2020-11-19 06:34:11','','pexels-marcio-nascimento-3579181','','inherit','open','closed','','pexels-marcio-nascimento-3579181','','','2020-11-19 06:34:11','2020-11-19 06:34:11','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-marcio-nascimento-3579181.jpg',0,'attachment','image/jpeg',0),(341,1,'2020-11-19 06:34:21','2020-11-19 06:34:21','','pexels-aj-nakasone-1707245','','inherit','open','closed','','pexels-aj-nakasone-1707245','','','2020-11-19 06:34:21','2020-11-19 06:34:21','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-aj-nakasone-1707245.jpg',0,'attachment','image/jpeg',0),(343,1,'2020-11-19 06:36:17','2020-11-19 06:36:17','','pexels-janko-ferlic-1493111','','inherit','open','closed','','pexels-janko-ferlic-1493111','','','2020-11-19 06:36:17','2020-11-19 06:36:17','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-janko-ferlic-1493111.jpg',0,'attachment','image/jpeg',0),(344,1,'2020-11-19 06:37:05','2020-11-19 06:37:05','','pexels-marcelo-chagas-1937434','','inherit','open','closed','','pexels-marcelo-chagas-1937434','','','2020-11-19 06:37:05','2020-11-19 06:37:05','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-marcelo-chagas-1937434.jpg',0,'attachment','image/jpeg',0),(345,1,'2020-11-19 06:40:02','2020-11-19 06:40:02','','pexels-ali-pazani-2587464','','inherit','open','closed','','pexels-ali-pazani-2587464','','','2020-11-19 06:40:02','2020-11-19 06:40:02','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-ali-pazani-2587464.jpg',0,'attachment','image/jpeg',0),(346,1,'2020-11-19 06:46:46','2020-11-19 06:46:46','','pexels-hudson-marques-3435323','','inherit','open','closed','','pexels-hudson-marques-3435323','','','2020-11-19 06:46:46','2020-11-19 06:46:46','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-hudson-marques-3435323.jpg',0,'attachment','image/jpeg',0),(347,1,'2020-11-19 09:57:54','2020-11-19 09:57:54','','download','','inherit','open','closed','','download','','','2020-11-19 09:57:54','2020-11-19 09:57:54','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/download.jpg',0,'attachment','image/jpeg',0),(348,1,'2020-11-19 10:21:47','2020-11-19 10:21:47','','282','','inherit','open','closed','','282','','','2020-11-19 10:21:47','2020-11-19 10:21:47','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/282.jpg',0,'attachment','image/jpeg',0),(349,1,'2020-11-19 10:22:39','2020-11-19 10:22:39','','pexels-caio-cardenas-2101839','','inherit','open','closed','','pexels-caio-cardenas-2101839','','','2020-11-19 10:22:39','2020-11-19 10:22:39','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pexels-caio-cardenas-2101839.jpg',0,'attachment','image/jpeg',0),(350,1,'2020-11-19 11:04:13','2020-11-19 11:04:13','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong><em>\"Quality is not an act,</em></strong></h2>\n<h2 class=\"uppercase\"><strong><em> it is a habit\"</em></strong></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[gap]\n\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[ux_slider infinitive=\"false\" freescroll=\"true\" parallax=\"2\" timer=\"3000\"]\n\n[ux_banner height=\"378px\" bg=\"9147\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"100\" width__sm=\"100\" scale=\"79\" position_x=\"50\" position_y=\"50\"]\n\n[title style=\"bold-center\" text=\"Testimonial\" tag_name=\"h4\" size=\"124\" link=\"#\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 11:04:13','2020-11-19 11:04:13','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(351,1,'2020-11-19 11:12:41','2020-11-19 11:12:41','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong><em>\"Quality is not an act,</em></strong></h2>\n<h2 class=\"uppercase\"><strong><em> it is a habit\"</em></strong></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[gap]\n\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[title style=\"bold-center\" text=\"Testimonial\" tag_name=\"h4\" size=\"124\" link=\"#\"]\n\n[ux_slider infinitive=\"false\" freescroll=\"true\" parallax=\"2\"]\n\n[ux_banner height=\"378px\" bg=\"9147\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"100\" width__sm=\"100\" scale=\"79\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 11:12:41','2020-11-19 11:12:41','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(352,1,'2020-11-19 11:37:48','2020-11-19 11:37:48','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong><em>\"Quality is not an act,</em></strong></h2>\n<h2 class=\"uppercase\"><strong><em> it is a habit\"</em></strong></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[gap]\n\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[title style=\"bold-center\" text=\"Testimonial\" tag_name=\"h4\" size=\"124\" link=\"#\"]\n\n[row col_bg=\"rgb(255,255,255)\" v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, cant wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</p></div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 11:37:48','2020-11-19 11:37:48','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(353,1,'2020-11-19 11:41:39','2020-11-19 11:41:39','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong><em>\"Quality is not an act,</em></strong></h2>\n<h2 class=\"uppercase\"><strong><em> it is a habit\"</em></strong></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[gap]\n\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[title style=\"bold-center\" text=\"Testimonial\" tag_name=\"h4\" size=\"124\" link=\"#\"]\n\n[row col_bg=\"rgb(255,255,255)\" v_align=\"equal\" padding=\"30px 30px 30px 30px\" depth=\"2\" depth_hover=\"5\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9147\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p>The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9149\" image_width=\"121\" pos=\"center\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<div class=\"e-box h-p2 -stacked -radius-none\">\n<p class=\"t-body h-my1\">This theme is amazing, you can customize EVERYTHING! The theme is a game changer for the Envato Market, cant wait for the future with Flatsome. Soo many good experiences from this, THANKS!</p>\n</p></div>\n\n[/testimonial]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[testimonial image=\"9150\" image_width=\"121\" pos=\"center\" name=\"MIRORIM\"]\n\n<p>Excellent work. Very good theme, No need support, works perfectly. Congratulations !! <br />Waiting for version 3.0. Very excited.</p>\n\n[/testimonial]\n\n[/col]\n\n[/row]\n[ux_slider style=\"focus\"]\n\n[ux_banner height=\"378px\" bg=\"9147\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9147\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"78\" width__sm=\"100\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 11:41:39','2020-11-19 11:41:39','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(354,1,'2020-11-19 11:45:47','2020-11-19 11:45:47','<!-- wp:shortcode -->\n[wcmp-regi-12]\n<!-- /wp:shortcode -->','V Registation','','inherit','closed','closed','','281-revision-v1','','','2020-11-19 11:45:47','2020-11-19 11:45:47','',281,'http://demoweblinks.in/marlins/2020/11/19/281-revision-v1/',0,'revision','',0),(355,1,'2020-11-19 11:47:58','2020-11-19 11:47:58','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong><em>\"Quality is not an act,</em></strong></h2>\n<h2 class=\"uppercase\"><strong><em> it is a habit\"</em></strong></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" image_width=\"94\" image_radius=\"11\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[gap]\n\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 11:47:58','2020-11-19 11:47:58','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(356,1,'2020-11-19 11:53:12','2020-11-19 11:53:12','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_banner_grid spacing=\"collapse\" height=\"419\" width=\"full-width\" depth_hover=\"1\"]\n\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"275\" bg_overlay=\"rgba(0, 0, 0, 0.13)\" bg_pos=\"63% 55%\"]\n\n[text_box width=\"87\" position_x=\"50\" position_y=\"50\"]\n\n<h2 class=\"uppercase\"><strong><em>\"Quality is not an act,</em></strong></h2>\n<h2 class=\"uppercase\"><strong><em> it is a habit\"</em></strong></h2>\n[button text=\"Browse Now\" size=\"larger\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n[col_grid span=\"6\" span__sm=\"12\"]\n\n[ux_banner height=\"300px\" bg=\"276\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" hover=\"zoom\"]\n\n[text_box width=\"86\" width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><em><strong>WE DON\'T SELL HAIRCUTS.</strong></em></h3>\n<p> </p>\n<h3 class=\"animated fadeInUp thin-font\" data-animated=\"fadeInUp\"><strong><em>WE SELL EXPERIENCES.</em></strong></h3>\n[button text=\"Browse Now\" size=\"large\" visibility=\"hidden\"]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[gap height=\"50px\"]\n\n[title style=\"bold-center\" text=\"Our Service\" size=\"124\" link=\"#\"]\n\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" show_quick_view=\"0\" out_of_stock=\"exclude\" image_width=\"94\" image_radius=\"11\" image_hover=\"zoom\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[gap]\n\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-19 11:53:12','2020-11-19 11:53:12','',64,'http://demoweblinks.in/marlins/2020/11/19/64-revision-v1/',0,'revision','',0),(358,1,'2020-11-23 13:09:20','2020-11-23 13:09:20','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" show_quick_view=\"0\" out_of_stock=\"exclude\" image_width=\"94\" image_radius=\"11\" image_hover=\"zoom\" text_align=\"left\"]\n\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>OUR PHILOSOPHY</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"17\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"16\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"17\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-23 13:09:20','2020-11-23 13:09:20','',64,'http://demoweblinks.in/marlins/2020/11/23/64-revision-v1/',0,'revision','',0),(361,1,'2020-11-23 13:28:18','2020-11-23 13:28:18','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>Welcome To Marlins</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" show_quick_view=\"0\" out_of_stock=\"exclude\" image_width=\"94\" image_radius=\"11\" image_hover=\"zoom\" text_align=\"left\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"17\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"16\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"17\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[ux_banner_grid spacing=\"collapse\"]\n\n[col_grid span=\"6\" height=\"1-2\"]\n\n\n[/col_grid]\n[col_grid span=\"6\" height=\"1-2\"]\n\n\n[/col_grid]\n[col_grid span=\"6\" height=\"1-2\"]\n\n\n[/col_grid]\n[col_grid span=\"6\" height=\"1-2\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-23 13:28:18','2020-11-23 13:28:18','',64,'http://demoweblinks.in/marlins/2020/11/23/64-revision-v1/',0,'revision','',0),(363,1,'2020-11-23 14:04:37','2020-11-23 14:04:37','','doctor','','inherit','open','closed','','doctor','','','2020-11-23 14:04:37','2020-11-23 14:04:37','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/doctor.png',0,'attachment','image/png',0),(364,1,'2020-11-23 14:05:37','2020-11-23 14:05:37','','newlyweds','','inherit','open','closed','','newlyweds','','','2020-11-23 14:05:37','2020-11-23 14:05:37','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/newlyweds.png',0,'attachment','image/png',0),(365,1,'2020-11-23 14:06:14','2020-11-23 14:06:14','','project-management','','inherit','open','closed','','project-management','','','2020-11-23 14:06:14','2020-11-23 14:06:14','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/project-management.png',0,'attachment','image/png',0),(366,1,'2020-11-23 14:06:50','2020-11-23 14:06:50','','certification','','inherit','open','closed','','certification','','','2020-11-23 14:06:50','2020-11-23 14:06:50','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/certification.png',0,'attachment','image/png',0),(367,1,'2020-11-23 14:07:18','2020-11-23 14:07:18','','online-appointment','','inherit','open','closed','','online-appointment','','','2020-11-23 14:07:18','2020-11-23 14:07:18','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/online-appointment.png',0,'attachment','image/png',0),(368,1,'2020-11-23 14:07:44','2020-11-23 14:07:44','','24-hours','','inherit','open','closed','','24-hours','','','2020-11-23 14:07:44','2020-11-23 14:07:44','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/24-hours.png',0,'attachment','image/png',0),(369,1,'2020-11-23 14:08:07','2020-11-23 14:08:07','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>Welcome To Marlins</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[ux_products style=\"normal\" depth=\"1\" depth_hover=\"5\" show_cat=\"0\" show_rating=\"0\" show_price=\"0\" show_add_to_cart=\"0\" show_quick_view=\"0\" out_of_stock=\"exclude\" image_width=\"94\" image_radius=\"11\" image_hover=\"zoom\" text_align=\"left\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"17\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"16\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"17\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"363\" name=\"Expert Doctors\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"364\" name=\"Groom & Bridal makeup\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"365\" name=\"Latest Technology\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"366\" name=\"Certified Institute\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"Online Appointment\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"24*7  Support\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-23 14:08:07','2020-11-23 14:08:07','',64,'http://demoweblinks.in/marlins/2020/11/23/64-revision-v1/',0,'revision','',0),(370,1,'2020-11-23 14:30:50','2020-11-23 14:30:50','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h2>Welcome To Marlins</h2>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"363\" name=\"Expert Doctors\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"364\" name=\"Groom & Bridal makeup\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"365\" name=\"Latest Technology\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"366\" name=\"Certified Institute\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"Online Appointment\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"24*7  Support\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-23 14:30:50','2020-11-23 14:30:50','',64,'http://demoweblinks.in/marlins/2020/11/23/64-revision-v1/',0,'revision','',0),(371,1,'2020-11-23 14:32:57','2020-11-23 14:32:57','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"363\" name=\"Expert Doctors\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"364\" name=\"Groom & Bridal makeup\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"365\" name=\"Latest Technology\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"366\" name=\"Certified Institute\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"Online Appointment\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"24*7  Support\" image_height=\"100%\" image_width=\"40\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-23 14:32:57','2020-11-23 14:32:57','',64,'http://demoweblinks.in/marlins/2020/11/23/64-revision-v1/',0,'revision','',0),(372,1,'2020-11-24 10:19:55','2020-11-24 10:19:55','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"363\" name=\"Expert Doctors\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"364\" name=\"Groom & Bridal makeup\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"365\" name=\"Latest Technology\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"366\" name=\"Certified Institute\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"Online Appointment\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"24*7  Support\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[title style=\"bold-center\" text=\"Gallery\" size=\"124\" link=\"#\"]\n\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-24 10:19:55','2020-11-24 10:19:55','',64,'http://demoweblinks.in/marlins/2020/11/24/64-revision-v1/',0,'revision','',0),(373,1,'2020-11-24 10:21:14','2020-11-24 10:21:14','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"363\" name=\"Expert Doctors\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"364\" name=\"Groom & Bridal makeup\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"365\" name=\"Latest Technology\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"366\" name=\"Certified Institute\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"Online Appointment\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"24*7  Support\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-24 10:21:14','2020-11-24 10:21:14','',64,'http://demoweblinks.in/marlins/2020/11/24/64-revision-v1/',0,'revision','',0),(382,1,'2020-11-24 10:43:20','2020-11-24 10:43:20','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"363\" name=\"Expert Doctors\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"364\" name=\"Groom & Bridal makeup\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"365\" name=\"Latest Technology\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"366\" name=\"Certified Institute\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"Online Appointment\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"24*7  Support\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-24 10:43:20','2020-11-24 10:43:20','',64,'http://demoweblinks.in/marlins/2020/11/24/64-revision-v1/',0,'revision','',0),(383,1,'2020-11-25 04:25:39','2020-11-25 04:25:39','','TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004','','inherit','open','closed','','tb2vm-jjyjmpufjszfwxxae4vxa_2038118004','','','2020-11-25 04:25:39','2020-11-25 04:25:39','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/TB2vm.JjYJmpuFjSZFwXXaE4VXa_2038118004.jpg',0,'attachment','image/jpeg',0),(384,1,'2020-11-25 04:26:34','2020-11-25 04:26:34','','_mg_4551','','inherit','open','closed','','_mg_4551','','','2020-11-25 04:26:34','2020-11-25 04:26:34','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/mg_4551.jpg',0,'attachment','image/jpeg',0),(385,1,'2020-11-25 04:29:21','2020-11-25 04:29:21','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"383\" name=\"Baby Boy\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"364\" name=\"Groom & Bridal makeup\" image_height=\"100%\" image_width=\"30\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"384\" name=\"baby girl\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 04:29:21','2020-11-25 04:29:21','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(386,1,'2020-11-25 04:31:40','2020-11-25 04:31:40','','marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles','','inherit','open','closed','','marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles','','','2020-11-25 04:31:40','2020-11-25 04:31:40','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/marriage-function-dress-for-female-abu-jani-sandeep-khosla-white-ruffles.jpg',0,'attachment','image/jpeg',0),(387,1,'2020-11-25 04:32:16','2020-11-25 04:32:16','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"383\" name=\"Baby Boy\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"384\" name=\"baby girl\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"386\" name=\"woman\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 04:32:16','2020-11-25 04:32:16','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(388,1,'2020-11-25 04:37:14','2020-11-25 04:37:14','','party-gown-500x500','','inherit','open','closed','','party-gown-500x500','','','2020-11-25 04:37:14','2020-11-25 04:37:14','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/party-gown-500x500-1.jpg',0,'attachment','image/jpeg',0),(389,1,'2020-11-25 04:38:47','2020-11-25 04:38:47','','15777093345314','','inherit','open','closed','','15777093345314','','','2020-11-25 04:38:47','2020-11-25 04:38:47','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/15777093345314.jpg',0,'attachment','image/jpeg',0),(390,1,'2020-11-25 04:39:31','2020-11-25 04:39:31','','Rayon Cotton Palazzo Salwar Suit In Red Colour-SS1771369-A-1200x1799','','inherit','open','closed','','rayon-cotton-palazzo-salwar-suit-in-red-colour-ss1771369-a-1200x1799','','','2020-11-25 04:39:31','2020-11-25 04:39:31','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/Rayon-Cotton-Palazzo-Salwar-Suit-In-Red-Colour-SS1771369-A-1200x1799-1.jpg',0,'attachment','image/jpeg',0),(391,1,'2020-11-25 04:39:49','2020-11-25 04:39:49','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"383\" name=\"Baby Boy\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"384\" name=\"baby girl\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"386\" name=\"woman\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"center\" text=\"woman\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 04:39:49','2020-11-25 04:39:49','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(392,1,'2020-11-25 06:19:37','2020-11-25 06:19:37','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"383\" name=\"Baby Boy\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"384\" name=\"baby girl\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"386\" name=\"woman\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 06:19:37','2020-11-25 06:19:37','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(393,1,'2020-11-25 06:23:00','2020-11-25 06:23:00','','pure-kanchipuram-silk-sarees-500x500','','inherit','open','closed','','pure-kanchipuram-silk-sarees-500x500','','','2020-11-25 06:23:00','2020-11-25 06:23:00','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/pure-kanchipuram-silk-sarees-500x500-1.jpg',0,'attachment','image/jpeg',0),(394,1,'2020-11-25 06:25:45','2020-11-25 06:25:45','','kerala-saree-with-peacock-design_1024x1024','','inherit','open','closed','','kerala-saree-with-peacock-design_1024x1024','','','2020-11-25 06:25:45','2020-11-25 06:25:45','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/kerala-saree-with-peacock-design_1024x1024.jpg',0,'attachment','image/jpeg',0),(395,1,'2020-11-25 06:51:16','2020-11-25 06:51:16','','orange-weaved-silk-fancy-sarees','orange-weaved-silk-fancy-sarees','inherit','open','closed','','orange-weaved-silk-fancy-sarees','','','2020-11-25 06:51:16','2020-11-25 06:51:16','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/orange-weaved-silk-fancy-sarees.jpg',0,'attachment','image/jpeg',0),(396,1,'2020-11-25 06:51:28','2020-11-25 06:51:28','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[ux_gallery ids=\"340,345,347,348\"]\n\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 06:51:28','2020-11-25 06:51:28','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(397,1,'2020-11-25 09:17:19','2020-11-25 09:17:19','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_products style=\"overlay\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\" image_height=\"200%\" image_size=\"medium\" image_overlay=\"rgba(0, 0, 0, 0.58)\" image_hover=\"overlay-add\" image_hover_alt=\"zoom-long\" text_pos=\"middle\" text_size=\"large\" text_hover=\"zoom-in\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 09:17:19','2020-11-25 09:17:19','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(398,1,'2020-11-25 09:18:29','2020-11-25 09:18:29','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 09:18:29','2020-11-25 09:18:29','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(399,1,'2020-11-25 09:57:58','2020-11-25 09:57:58','','Fancy-Sarees-for-Wedding-1-e1570878321198-600x818','','inherit','open','closed','','fancy-sarees-for-wedding-1-e1570878321198-600x818','','','2020-11-25 09:57:58','2020-11-25 09:57:58','',177,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/Fancy-Sarees-for-Wedding-1-e1570878321198-600x818-1.jpeg',0,'attachment','image/jpeg',0),(400,1,'2020-11-25 09:59:30','2020-11-25 09:59:30','','red-fancy-saree','','inherit','open','closed','','red-fancy-saree','','','2020-11-25 09:59:30','2020-11-25 09:59:30','',176,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/red-fancy-saree.jpg',0,'attachment','image/jpeg',0),(401,1,'2020-11-25 10:03:44','2020-11-25 10:03:44','','Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress','','inherit','open','closed','','sparkling-v-neck-evening-dresses-lace-up-back-evening-gowns-cap-sleeves-ball-gown-party-dress','','','2020-11-25 10:03:44','2020-11-25 10:03:44','',175,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/Sparkling-V-Neck-Evening-Dresses-Lace-up-Back-Evening-Gowns-Cap-Sleeves-Ball-Gown-Party-Dress.jpg',0,'attachment','image/jpeg',0),(402,1,'2020-11-25 10:05:09','2020-11-25 10:05:09','','2B800_0','','inherit','open','closed','','2b800_0','','','2020-11-25 10:05:09','2020-11-25 10:05:09','',174,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/2B800_0.jpg',0,'attachment','image/jpeg',0),(403,1,'2020-11-25 10:06:29','2020-11-25 10:06:29','','5e080aeb338a176aaa785c86f560a3cd','','inherit','open','closed','','5e080aeb338a176aaa785c86f560a3cd','','','2020-11-25 10:06:29','2020-11-25 10:06:29','',173,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/5e080aeb338a176aaa785c86f560a3cd.jpg',0,'attachment','image/jpeg',0),(404,1,'2020-11-25 10:11:11','2020-11-25 10:11:11','','218e9c856f410742c2f0e02c9d19fe9a--lehenga-choli-sari','','inherit','open','closed','','218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari','','','2020-11-25 10:11:11','2020-11-25 10:11:11','',171,'http://demoweblinks.in/marlins/wp-content/uploads/2014/06/218e9c856f410742c2f0e02c9d19fe9a-lehenga-choli-sari.jpg',0,'attachment','image/jpeg',0),(405,1,'2020-11-25 10:13:03','2020-11-25 10:13:03','','fancy-anarkali-500x500','','inherit','open','closed','','fancy-anarkali-500x500','','','2020-11-25 10:13:03','2020-11-25 10:13:03','',172,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/fancy-anarkali-500x500-1.jpg',0,'attachment','image/jpeg',0),(406,1,'2020-11-25 10:58:40','2020-11-25 10:58:40','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" cat=\"87\" orderby=\"rand\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 10:58:40','2020-11-25 10:58:40','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(407,1,'2020-11-25 11:00:12','2020-11-25 11:00:12','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING ETHNIC WEAR\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" cat=\"87\" orderby=\"rand\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 11:00:12','2020-11-25 11:00:12','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(409,1,'2020-11-25 13:16:33','2020-11-25 13:16:33','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING ETHNIC WEAR\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" cat=\"87\" orderby=\"rand\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 13:16:33','2020-11-25 13:16:33','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(410,1,'2020-11-25 13:17:44','2020-11-25 13:17:44','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING ETHNIC WEAR\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" cat=\"87\" orderby=\"rand\"]\n\n[ux_banner_grid]\n\n[col_grid height=\"2-3\"]\n\n[ux_image id=\"333\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"274\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"275\"]\n\n\n[/col_grid]\n[col_grid span=\"4\" height=\"1-3\"]\n\n[ux_image id=\"276\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 13:17:44','2020-11-25 13:17:44','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(411,1,'2020-11-25 13:20:28','2020-11-25 13:20:28','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 13:20:28','2020-11-25 13:20:28','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(412,1,'2020-11-25 13:33:55','2020-11-25 13:33:55','','delivery-van','','inherit','open','closed','','delivery-van','','','2020-11-25 13:33:55','2020-11-25 13:33:55','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/delivery-van.png',0,'attachment','image/png',0),(413,1,'2020-11-25 13:34:04','2020-11-25 13:34:04','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 13:34:04','2020-11-25 13:34:04','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(414,1,'2020-11-25 13:35:24','2020-11-25 13:35:24','','lach','D.NO.61    Rs.85,860/-Get a fabulous look with this fish tail lehenga choli over pure georgette base in light onion pink color with Nett Duputta. This awesome set is intricately crafted just for you with lots of detailing done with sequins, stone and cutdana work in various lovely patterns. Portray the glamorous you this season with this spectacularly designed outfit for that most awaited day. (This lehenga can be customized as shown with lehenga length up to 42 inches, choli length 20 inches and waist 38 inches. There might be slight color variation)','inherit','open','closed','','lach','','','2020-11-25 13:35:24','2020-11-25 13:35:24','',171,'http://demoweblinks.in/marlins/wp-content/uploads/2014/06/lach.jpg',0,'attachment','image/jpeg',0),(415,1,'2020-11-25 13:39:33','2020-11-25 13:39:33','','product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332','','inherit','open','closed','','product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332','','','2020-11-25 13:39:33','2020-11-25 13:39:33','',178,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/product-hugerect-2922918-117346-1563509256-f965d2570b3e49fa9954d3230bc0a332.jpg',0,'attachment','image/jpeg',0),(416,1,'2020-11-25 13:40:07','2020-11-25 13:40:07','','ba40461c91a4e07173e6cdf4b1988284','','inherit','open','closed','','ba40461c91a4e07173e6cdf4b1988284','','','2020-11-25 13:40:07','2020-11-25 13:40:07','',179,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/ba40461c91a4e07173e6cdf4b1988284.jpg',0,'attachment','image/jpeg',0),(417,1,'2020-11-25 13:42:31','2020-11-25 13:42:31','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"2000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"2000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 13:42:31','2020-11-25 13:42:31','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(418,1,'2020-11-25 13:43:57','2020-11-25 13:43:57','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"9148\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 13:43:57','2020-11-25 13:43:57','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(419,1,'2020-11-25 13:47:54','2020-11-25 13:47:54','','test-2','','inherit','open','closed','','test-2','','','2020-11-25 13:47:54','2020-11-25 13:47:54','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/test-2.png',0,'attachment','image/png',0),(420,1,'2020-11-25 13:48:18','2020-11-25 13:48:18','','testimonial_author','','inherit','open','closed','','testimonial_author','','','2020-11-25 13:48:18','2020-11-25 13:48:18','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/testimonial_author.png',0,'attachment','image/png',0),(421,1,'2020-11-25 13:49:01','2020-11-25 13:49:01','','test-1','','inherit','open','closed','','test-1','','','2020-11-25 13:49:01','2020-11-25 13:49:01','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/11/test-1.png',0,'attachment','image/png',0),(422,1,'2020-11-25 13:49:09','2020-11-25 13:49:09','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"99% 18%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"419\" image_width=\"116\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"420\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"421\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-25 13:49:09','2020-11-25 13:49:09','',64,'http://demoweblinks.in/marlins/2020/11/25/64-revision-v1/',0,'revision','',0),(428,1,'2020-11-26 07:43:50','2020-11-26 07:43:50','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"63% 37%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"42% 26%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"54% 24%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"party gown\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"salvar\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"419\" image_width=\"116\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"420\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"421\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-26 07:43:50','2020-11-26 07:43:50','',64,'http://demoweblinks.in/marlins/2020/11/26/64-revision-v1/',0,'revision','',0),(429,1,'2020-11-30 12:55:32','2020-11-30 12:55:32','','Home','','publish','closed','closed','','home','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',70,'http://demoweblinks.in/marlins/?p=429',1,'nav_menu_item','',0),(431,1,'2020-11-30 12:59:17','2020-11-30 12:59:17','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"63% 37%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"42% 26%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"54% 24%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p> </p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"Designer wear\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"kurtis\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"419\" image_width=\"116\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"420\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"421\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-11-30 12:59:17','2020-11-30 12:59:17','',64,'http://demoweblinks.in/marlins/2020/11/30/64-revision-v1/',0,'revision','',0),(432,1,'2020-11-30 14:45:10','2020-11-30 14:45:10','<!-- wp:html -->\n[ux_banner height=\"507px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n[text_box position_y=\"80\"]\n\n<h1 class=\"lead\">About Us</h1>\n<p class=\"lead\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat....</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-11-30 14:45:10','2020-11-30 14:45:10','',90,'http://demoweblinks.in/marlins/2020/11/30/90-revision-v1/',0,'revision','',0),(433,1,'2020-11-30 14:46:11','2020-11-30 14:46:11','<!-- wp:html -->\n[ux_banner height=\"507px\" bg=\"17\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-11-30 14:46:11','2020-11-30 14:46:11','',90,'http://demoweblinks.in/marlins/2020/11/30/90-revision-v1/',0,'revision','',0),(434,1,'2020-11-30 14:47:15','2020-11-30 14:47:15','<!-- wp:html -->\n[ux_banner height=\"300px\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-11-30 14:47:15','2020-11-30 14:47:15','',90,'http://demoweblinks.in/marlins/2020/11/30/90-revision-v1/',0,'revision','',0),(435,1,'2020-11-30 20:18:59','2020-11-30 20:18:59','<!-- wp:html -->\n[ux_banner height=\"200px\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"16\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-11-30 20:18:59','2020-11-30 20:18:59','',90,'http://demoweblinks.in/marlins/2020/11/30/90-revision-v1/',0,'revision','',0),(436,1,'2020-11-30 20:20:16','2020-11-30 20:20:16','<!-- wp:html -->\n[ux_banner height=\"200px\" bg_overlay=\"rgba(0, 0, 0, 0.49)\" parallax=\"3\"]\n\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"419\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-11-30 20:20:16','2020-11-30 20:20:16','',90,'http://demoweblinks.in/marlins/2020/11/30/90-revision-v1/',0,'revision','',0),(437,1,'2020-11-30 20:22:46','2020-11-30 20:22:46','<!-- wp:html -->\nTake a look here on how to setup your blog page: http://docs.uxthemes.com/article/243-how-to-setup-your-blog-page\n<!-- /wp:html -->','Blog','','inherit','closed','closed','','89-revision-v1','','','2020-11-30 20:22:46','2020-11-30 20:22:46','',89,'http://demoweblinks.in/marlins/2020/11/30/89-revision-v1/',0,'revision','',0),(438,1,'2020-11-30 20:41:22','2020-11-30 20:41:22',' ','','','publish','closed','closed','','438','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',51,'http://demoweblinks.in/marlins/?p=438',11,'nav_menu_item','',0),(439,1,'2020-11-30 20:45:37','2020-11-30 20:45:37','<!-- wp:html -->\n[map height=\"400px\"]\n\n\n[/map]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-11-30 20:45:37','2020-11-30 20:45:37','',88,'http://demoweblinks.in/marlins/2020/11/30/88-revision-v1/',0,'revision','',0),(440,1,'2020-11-30 20:49:35','2020-11-30 20:49:35','<!-- wp:html -->\n[map height=\"400px\"]\n\n\n[/map]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n[map lat=\"9.931233\" long=\"76.267303\" content_width__sm=\"100\" content_width__md=\"40\" position_x__sm=\"100\" position_y__sm=\"100\"]\n\n<p>Enter street adress here. Or any other information you want.</p>\n\n[/map]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-11-30 20:49:35','2020-11-30 20:49:35','',88,'http://demoweblinks.in/marlins/2020/11/30/88-revision-v1/',0,'revision','',0),(441,1,'2020-11-30 20:51:40','2020-11-30 20:51:40','<!-- wp:html -->\n[map height=\"400px\"]\n\n\n[/map]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-11-30 20:51:40','2020-11-30 20:51:40','',88,'http://demoweblinks.in/marlins/2020/11/30/88-revision-v1/',0,'revision','',0),(442,1,'2020-11-30 20:57:28','2020-11-30 20:57:28','<!-- wp:html -->\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n[map height=\"400px\"]\n\n\n[/map]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-11-30 20:57:28','2020-11-30 20:57:28','',88,'http://demoweblinks.in/marlins/2020/11/30/88-revision-v1/',0,'revision','',0),(443,1,'2020-11-30 20:59:16','2020-11-30 20:59:16','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Frequently Asked Questions\"]\n\n<p class=\"lead\">Please read our FAQ before sending us a message.</p>\n[accordion]\n\n[accordion-item title=\"What are the delivery charges for orders from the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"Which payment methods are accepted in the Online Shop?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"How long will delivery take?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"How secure is shopping in the Online Shop? Is my data protected?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante.</p>\n\n[/accordion-item]\n[accordion-item title=\"What exactly happens after ordering?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n[accordion-item title=\"Do I receive an invoice for my order?\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean id convallis tellus. Nulla aliquam in mi et convallis. Pellentesque rutrum feugiat ante ut imperdiet. Vivamus et dolor nec nisl consectetur vulputate id non ante. </p>\n\n[/accordion-item]\n\n[/accordion]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n[map height=\"400px\"]\n\n\n[/map]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-11-30 20:59:16','2020-11-30 20:59:16','',88,'http://demoweblinks.in/marlins/2020/11/30/88-revision-v1/',0,'revision','',0),(444,1,'2020-12-01 06:54:52','2020-12-01 06:54:52','<!-- wp:html -->\n[ux_image id=\"450\"]\n\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[title style=\"center\" text=\"how does our stiching proposal\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"446\" image_width=\"75\"]\n\n<h4>Pick</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"447\" image_width=\"75\"]\n\n<h4>Stitch</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"448\" image_width=\"75\"]\n\n<h4>Deliver</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[contact-form-7 id=\"12\"]\n\n\n<!-- /wp:html -->','stitching','','publish','closed','closed','','stitching','','','2020-12-14 04:13:02','2020-12-14 04:13:02','',0,'http://demoweblinks.in/marlins/?page_id=444',0,'page','',0),(445,1,'2020-12-01 06:54:52','2020-12-01 06:54:52','','stitching','','inherit','closed','closed','','444-revision-v1','','','2020-12-01 06:54:52','2020-12-01 06:54:52','',444,'http://demoweblinks.in/marlins/2020/12/01/444-revision-v1/',0,'revision','',0),(446,1,'2020-12-01 07:02:03','2020-12-01 07:02:03','','measure-up','','inherit','open','closed','','measure-up','','','2020-12-01 07:02:03','2020-12-01 07:02:03','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/measure-up.png',0,'attachment','image/png',0),(447,1,'2020-12-01 07:02:27','2020-12-01 07:02:27','','design','','inherit','open','closed','','design','','','2020-12-01 07:02:27','2020-12-01 07:02:27','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/design.png',0,'attachment','image/png',0),(448,1,'2020-12-01 07:08:17','2020-12-01 07:08:17','','get-product-on-your-doorstep','','inherit','open','closed','','get-product-on-your-doorstep','','','2020-12-01 07:08:17','2020-12-01 07:08:17','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/get-product-on-your-doorstep.png',0,'attachment','image/png',0),(449,1,'2020-12-01 07:08:54','2020-12-01 07:08:54','<!-- wp:html -->\n[row]\n\n[col span__sm=\"12\"]\n\n[title style=\"center\" text=\"How Does Tailor Junction Work?\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"446\" image_width=\"75\"]\n\n<h4>Pick</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"447\" image_width=\"75\"]\n\n<h4>Stitch</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"448\" image_width=\"75\"]\n\n<h4>Deliver</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','stitching','','inherit','closed','closed','','444-revision-v1','','','2020-12-01 07:08:54','2020-12-01 07:08:54','',444,'http://demoweblinks.in/marlins/2020/12/01/444-revision-v1/',0,'revision','',0),(450,1,'2020-12-01 07:12:24','2020-12-01 07:12:24','','banner 6','','inherit','open','closed','','banner-6','','','2020-12-01 07:12:24','2020-12-01 07:12:24','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/banner-6.jpg',0,'attachment','image/jpeg',0),(451,1,'2020-12-01 07:13:14','2020-12-01 07:13:14','<!-- wp:html -->\n[ux_image id=\"450\"]\n\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[title style=\"center\" text=\"How Does Tailor Junction Work?\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"446\" image_width=\"75\"]\n\n<h4>Pick</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"447\" image_width=\"75\"]\n\n<h4>Stitch</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"448\" image_width=\"75\"]\n\n<h4>Deliver</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[row]\n\n[col span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','stitching','','inherit','closed','closed','','444-revision-v1','','','2020-12-01 07:13:14','2020-12-01 07:13:14','',444,'http://demoweblinks.in/marlins/2020/12/01/444-revision-v1/',0,'revision','',0),(452,1,'2020-12-01 07:14:31','2020-12-01 07:14:31','','Stitching','','publish','closed','closed','','stitching','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=452',9,'nav_menu_item','',0),(453,1,'2020-12-01 07:15:02','2020-12-01 07:15:02','<!-- wp:html -->\n[block id=\"elements-overview\"]\n<!-- /wp:html -->','Elements','','inherit','closed','closed','','97-revision-v1','','','2020-12-01 07:15:02','2020-12-01 07:15:02','',97,'http://demoweblinks.in/marlins/2020/12/01/97-revision-v1/',0,'revision','',0),(454,1,'2020-12-01 07:17:11','2020-12-01 07:17:11','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"63% 37%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"42% 26%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"54% 24%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p>&nbsp;</p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,&nbsp;It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.&nbsp;</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"Designer wear\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"kurtis\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"419\" image_width=\"116\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"420\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"421\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-12-01 07:17:11','2020-12-01 07:17:11','',64,'http://demoweblinks.in/marlins/2020/12/01/64-revision-v1/',0,'revision','',0),(455,1,'2020-12-01 07:19:23','2020-12-01 07:19:23','<!-- wp:html -->\n[ux_banner height=\"200px\" bg_overlay=\"rgba(0, 0, 0, 0.49)\"]\n\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"419\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-12-01 07:19:23','2020-12-01 07:19:23','',90,'http://demoweblinks.in/marlins/2020/12/01/90-revision-v1/',0,'revision','',0),(462,1,'2020-12-01 07:23:33','2020-12-01 07:23:33','<!-- wp:html -->\n[ux_image id=\"450\"]\n\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[title style=\"center\" text=\"How Does Tailor Junction Work?\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"446\" image_width=\"75\"]\n\n<h4>Pick</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"447\" image_width=\"75\"]\n\n<h4>Stitch</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"448\" image_width=\"75\"]\n\n<h4>Deliver</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[row width=\"full-width\"]\n\n[col span__sm=\"12\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','stitching','','inherit','closed','closed','','444-revision-v1','','','2020-12-01 07:23:33','2020-12-01 07:23:33','',444,'http://demoweblinks.in/marlins/2020/12/01/444-revision-v1/',0,'revision','',0),(463,1,'2020-12-01 07:24:58','2020-12-01 07:24:58','<!-- wp:html -->\n[ux_image id=\"450\"]\n\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[title style=\"center\" text=\"How Does Tailor Junction Work?\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"446\" image_width=\"75\"]\n\n<h4>Pick</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"447\" image_width=\"75\"]\n\n<h4>Stitch</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"448\" image_width=\"75\"]\n\n<h4>Deliver</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','stitching','','inherit','closed','closed','','444-revision-v1','','','2020-12-01 07:24:58','2020-12-01 07:24:58','',444,'http://demoweblinks.in/marlins/2020/12/01/444-revision-v1/',0,'revision','',0),(464,1,'2020-12-01 07:26:11','2020-12-01 07:26:11','<!-- wp:html -->\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"419\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-12-01 07:26:11','2020-12-01 07:26:11','',90,'http://demoweblinks.in/marlins/2020/12/01/90-revision-v1/',0,'revision','',0),(468,1,'2020-12-07 12:30:58','2020-12-07 12:30:58',' ','','','publish','closed','closed','','468','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=468',8,'nav_menu_item','',0),(469,1,'2020-12-07 12:30:58','2020-12-07 12:30:58',' ','','','publish','closed','closed','','469','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=469',7,'nav_menu_item','',0),(470,1,'2020-12-07 12:30:58','2020-12-07 12:30:58',' ','','','publish','closed','closed','','470','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=470',4,'nav_menu_item','',0),(471,1,'2020-12-07 12:30:58','2020-12-07 12:30:58',' ','','','publish','closed','closed','','471','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=471',6,'nav_menu_item','',0),(472,1,'2020-12-07 12:30:58','2020-12-07 12:30:58',' ','','','publish','closed','closed','','472','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=472',3,'nav_menu_item','',0),(473,1,'2020-12-07 12:30:58','2020-12-07 12:30:58',' ','','','publish','closed','closed','','473','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=473',5,'nav_menu_item','',0),(474,1,'2020-12-07 12:40:24','2020-12-07 12:40:24','<!-- wp:html -->\n[ux_image id=\"450\"]\n\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[title style=\"center\" text=\"How Does Tailor Junction Work?\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"446\" image_width=\"75\"]\n\n<h4>Pick</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"447\" image_width=\"75\"]\n\n<h4>Stitch</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"448\" image_width=\"75\"]\n\n<h4>Deliver</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[contact-form-7 id=\"12\"]\n\n\n<!-- /wp:html -->','stitching','','inherit','closed','closed','','444-revision-v1','','','2020-12-07 12:40:24','2020-12-07 12:40:24','',444,'http://demoweblinks.in/marlins/2020/12/07/444-revision-v1/',0,'revision','',0),(477,1,'2020-12-09 06:39:43','2020-12-09 06:39:43','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[map height=\"400px\"]\n\n\n[/map]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-09 06:39:43','2020-12-09 06:39:43','',88,'http://demoweblinks.in/marlins/2020/12/09/88-revision-v1/',0,'revision','',0),(478,1,'2020-12-09 06:42:53','2020-12-09 06:42:53','<!-- wp:html -->\n[gap height=\"50px\"]\n\n[ux_banner height=\"500px\"]\n\n[text_box position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"uppercase\"><strong></strong></h3>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/text_box]\n\n[/ux_banner]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"419\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-12-09 06:42:53','2020-12-09 06:42:53','',90,'http://demoweblinks.in/marlins/2020/12/09/90-revision-v1/',0,'revision','',0),(479,1,'2020-12-09 06:57:06','2020-12-09 06:57:06','','pexels-jéshoots-4970','','inherit','open','closed','','pexels-jeshoots-4970','','','2020-12-09 06:57:06','2020-12-09 06:57:06','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/pexels-jeshoots-4970.jpg',0,'attachment','image/jpeg',0),(480,1,'2020-12-09 06:59:30','2020-12-09 06:59:30','','pexels-pixabay-326576 (1)','','inherit','open','closed','','pexels-pixabay-326576-1','','','2020-12-09 06:59:30','2020-12-09 06:59:30','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/pexels-pixabay-326576-1.jpg',0,'attachment','image/jpeg',0),(481,1,'2020-12-09 07:01:21','2020-12-09 07:01:21','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[map height=\"400px\" lat=\"9.960735\" long=\"76.335271\"]\n\n\n[/map]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-09 07:01:21','2020-12-09 07:01:21','',88,'http://demoweblinks.in/marlins/2020/12/09/88-revision-v1/',0,'revision','',0),(482,1,'2020-12-09 07:03:00','2020-12-09 07:03:00','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[map height=\"400px\" lat=\"9.960735\" long=\"76.335271\" zoom=\"14\" content_bg=\"rgb(255, 255, 255)\"]\n\n\n[/map]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-09 07:03:00','2020-12-09 07:03:00','',88,'http://demoweblinks.in/marlins/2020/12/09/88-revision-v1/',0,'revision','',0),(483,1,'2020-12-09 07:10:03','2020-12-09 07:10:03','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"480\" image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[map height=\"400px\" lat=\"9.960735\" long=\"76.335271\" zoom=\"14\" content_bg=\"rgb(255, 255, 255)\"]\n\n\n[/map]\n\n[/col]\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-09 07:10:03','2020-12-09 07:10:03','',88,'http://demoweblinks.in/marlins/2020/12/09/88-revision-v1/',0,'revision','',0),(484,1,'2020-12-09 07:10:48','2020-12-09 07:10:48','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"480\" image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n[col span=\"6\"]\n\n[map height=\"400px\" lat=\"9.960735\" long=\"76.335271\" zoom=\"14\" content_bg=\"rgb(255, 255, 255)\"]\n\n\n[/map]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-09 07:10:48','2020-12-09 07:10:48','',88,'http://demoweblinks.in/marlins/2020/12/09/88-revision-v1/',0,'revision','',0),(487,1,'2020-12-10 07:47:57','2020-12-10 07:47:57','','lehenga-choli-modern-1','','inherit','open','closed','','lehenga-choli-modern-1','','','2020-12-10 07:47:57','2020-12-10 07:47:57','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/lehenga-choli-modern-1.jpg',0,'attachment','image/jpeg',0),(488,1,'2020-12-10 07:48:11','2020-12-10 07:48:11','','282ef5282280ee6b61dbf90f57012f45','','inherit','open','closed','','282ef5282280ee6b61dbf90f57012f45','','','2020-12-10 07:48:11','2020-12-10 07:48:11','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/282ef5282280ee6b61dbf90f57012f45.jpg',0,'attachment','image/jpeg',0),(489,1,'2020-12-10 07:59:32','2020-12-10 07:59:32','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n&nbsp;\r\n\r\n<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','ROYAL BLUE DESIGNER LEHENGA','','publish','open','closed','','royal-blue-designer-lehenga','','','2020-12-10 07:59:32','2020-12-10 07:59:32','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=489',0,'product','',0),(490,1,'2020-12-10 07:58:48','2020-12-10 07:58:48','','0064642_impeccable-royal-blue-designer-lehenga_324','','inherit','open','closed','','0064642_impeccable-royal-blue-designer-lehenga_324','','','2020-12-10 07:58:48','2020-12-10 07:58:48','',489,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0064642_impeccable-royal-blue-designer-lehenga_324.jpeg',0,'attachment','image/jpeg',0),(491,1,'2020-12-10 07:59:01','2020-12-10 07:59:01','','0064644_impeccable-royal-blue-designer-lehenga_324','','inherit','open','closed','','0064644_impeccable-royal-blue-designer-lehenga_324','','','2020-12-10 07:59:01','2020-12-10 07:59:01','',489,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0064644_impeccable-royal-blue-designer-lehenga_324.jpeg',0,'attachment','image/jpeg',0),(492,1,'2020-12-10 07:59:12','2020-12-10 07:59:12','','0064645_impeccable-royal-blue-designer-lehenga_324','','inherit','open','closed','','0064645_impeccable-royal-blue-designer-lehenga_324','','','2020-12-10 07:59:12','2020-12-10 07:59:12','',489,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0064645_impeccable-royal-blue-designer-lehenga_324.jpeg',0,'attachment','image/jpeg',0),(493,1,'2020-12-10 07:59:20','2020-12-10 07:59:20','','0064646_impeccable-royal-blue-designer-lehenga_324','','inherit','open','closed','','0064646_impeccable-royal-blue-designer-lehenga_324','','','2020-12-10 07:59:20','2020-12-10 07:59:20','',489,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0064646_impeccable-royal-blue-designer-lehenga_324.jpeg',0,'attachment','image/jpeg',0),(494,1,'2020-12-10 08:07:46','2020-12-10 08:07:46','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Glorious grey designer bridal gown','','publish','open','closed','','glorious-grey-designer-bridal-gown','','','2020-12-10 08:07:46','2020-12-10 08:07:46','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=494',0,'product','',0),(495,1,'2020-12-10 08:07:14','2020-12-10 08:07:14','','0054982_glorious-grey-designer-bridal-gown_324','','inherit','open','closed','','0054982_glorious-grey-designer-bridal-gown_324','','','2020-12-10 08:07:14','2020-12-10 08:07:14','',494,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0054982_glorious-grey-designer-bridal-gown_324.jpeg',0,'attachment','image/jpeg',0),(496,1,'2020-12-10 08:07:25','2020-12-10 08:07:25','','0054983_glorious-grey-designer-bridal-gown_324','','inherit','open','closed','','0054983_glorious-grey-designer-bridal-gown_324','','','2020-12-10 08:07:25','2020-12-10 08:07:25','',494,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0054983_glorious-grey-designer-bridal-gown_324.jpeg',0,'attachment','image/jpeg',0),(497,1,'2020-12-10 08:07:36','2020-12-10 08:07:36','','0054984_glorious-grey-designer-bridal-gown_324','','inherit','open','closed','','0054984_glorious-grey-designer-bridal-gown_324','','','2020-12-10 08:07:36','2020-12-10 08:07:36','',494,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0054984_glorious-grey-designer-bridal-gown_324.jpeg',0,'attachment','image/jpeg',0),(498,1,'2020-12-10 08:19:42','2020-12-10 08:19:42','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Distinct orange & maroon designer kurti','','publish','open','closed','','distinct-orange-maroon-designer-kurti','','','2020-12-10 08:19:43','2020-12-10 08:19:43','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=498',0,'product','',0),(499,1,'2020-12-10 08:19:06','2020-12-10 08:19:06','','0071716_distinct-orange-maroon-designer-kurti_324','','inherit','open','closed','','0071716_distinct-orange-maroon-designer-kurti_324','','','2020-12-10 08:19:06','2020-12-10 08:19:06','',498,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0071716_distinct-orange-maroon-designer-kurti_324.jpeg',0,'attachment','image/jpeg',0),(500,1,'2020-12-10 08:19:18','2020-12-10 08:19:18','','0071717_distinct-orange-maroon-designer-kurti_324','','inherit','open','closed','','0071717_distinct-orange-maroon-designer-kurti_324','','','2020-12-10 08:19:18','2020-12-10 08:19:18','',498,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0071717_distinct-orange-maroon-designer-kurti_324.jpeg',0,'attachment','image/jpeg',0),(501,1,'2020-12-10 08:24:19','2020-12-10 08:24:19','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Fabulous white & red designer kurti','','publish','open','closed','','fabulous-white-red-designer-kurti','','','2020-12-10 08:24:19','2020-12-10 08:24:19','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=501',0,'product','',0),(502,1,'2020-12-10 08:23:46','2020-12-10 08:23:46','','0071705_fabulous-white-red-designer-kurti_324','','inherit','open','closed','','0071705_fabulous-white-red-designer-kurti_324','','','2020-12-10 08:23:46','2020-12-10 08:23:46','',501,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0071705_fabulous-white-red-designer-kurti_324.jpeg',0,'attachment','image/jpeg',0),(503,1,'2020-12-10 08:24:02','2020-12-10 08:24:02','','0071704_fabulous-white-red-designer-kurti_324','','inherit','open','closed','','0071704_fabulous-white-red-designer-kurti_324','','','2020-12-10 08:24:02','2020-12-10 08:24:02','',501,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0071704_fabulous-white-red-designer-kurti_324.jpeg',0,'attachment','image/jpeg',0),(504,1,'2020-12-10 08:31:57','2020-12-10 08:31:57','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Peacock printed grey designer palazzos','','publish','open','closed','','peacock-printed-grey-designer-palazzos','','','2020-12-10 08:33:08','2020-12-10 08:33:08','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=504',0,'product','',0),(505,1,'2020-12-10 08:31:24','2020-12-10 08:31:24','','0058163_peacock-printed-grey-designer-palazzos_324','','inherit','open','closed','','0058163_peacock-printed-grey-designer-palazzos_324','','','2020-12-10 08:31:24','2020-12-10 08:31:24','',504,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0058163_peacock-printed-grey-designer-palazzos_324.jpeg',0,'attachment','image/jpeg',0),(506,1,'2020-12-10 08:31:33','2020-12-10 08:31:33','','0058162_peacock-printed-grey-designer-palazzos_324','','inherit','open','closed','','0058162_peacock-printed-grey-designer-palazzos_324','','','2020-12-10 08:31:33','2020-12-10 08:31:33','',504,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0058162_peacock-printed-grey-designer-palazzos_324.jpeg',0,'attachment','image/jpeg',0),(508,1,'2020-12-10 08:42:00','2020-12-10 08:42:00','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Classy beige designer flared palazzo','','publish','open','closed','','classy-beige-designer-flared-palazzo','','','2020-12-10 08:42:00','2020-12-10 08:42:00','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=508',0,'product','',0),(509,1,'2020-12-10 08:41:38','2020-12-10 08:41:38','','0058116_classy-beige-designer-flared-palazzo_324','','inherit','open','closed','','0058116_classy-beige-designer-flared-palazzo_324','','','2020-12-10 08:41:38','2020-12-10 08:41:38','',508,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0058116_classy-beige-designer-flared-palazzo_324.jpeg',0,'attachment','image/jpeg',0),(510,1,'2020-12-10 08:41:50','2020-12-10 08:41:50','','0058117_classy-beige-designer-flared-palazzo_324','','inherit','open','closed','','0058117_classy-beige-designer-flared-palazzo_324','','','2020-12-10 08:41:50','2020-12-10 08:41:50','',508,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0058117_classy-beige-designer-flared-palazzo_324.jpeg',0,'attachment','image/jpeg',0),(511,1,'2020-12-10 08:45:08','2020-12-10 08:45:08','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Stunning pink & gold half & half saree','','publish','open','closed','','stunning-pink-gold-half-half-saree','','','2020-12-10 08:45:08','2020-12-10 08:45:08','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=511',0,'product','',0),(512,1,'2020-12-10 08:44:23','2020-12-10 08:44:23','','0074064_stunning-pink-gold-half-half-saree_324','','inherit','open','closed','','0074064_stunning-pink-gold-half-half-saree_324','','','2020-12-10 08:44:23','2020-12-10 08:44:23','',511,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0074064_stunning-pink-gold-half-half-saree_324.jpeg',0,'attachment','image/jpeg',0),(513,1,'2020-12-10 08:44:44','2020-12-10 08:44:44','','0074065_stunning-pink-gold-half-half-saree_324','','inherit','open','closed','','0074065_stunning-pink-gold-half-half-saree_324','','','2020-12-10 08:44:44','2020-12-10 08:44:44','',511,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0074065_stunning-pink-gold-half-half-saree_324.jpeg',0,'attachment','image/jpeg',0),(514,1,'2020-12-10 08:48:53','2020-12-10 08:48:53','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Adorning Orange Colored Banarasi Silk Saree','','publish','open','closed','','adorning-orange-colored-banarasi-silk-saree','','','2020-12-10 08:48:53','2020-12-10 08:48:53','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=514',0,'product','',0),(515,1,'2020-12-10 08:48:26','2020-12-10 08:48:26','','0079144_adorning-orange-colored-banarasi-silk-saree_324','','inherit','open','closed','','0079144_adorning-orange-colored-banarasi-silk-saree_324','','','2020-12-10 08:48:26','2020-12-10 08:48:26','',514,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0079144_adorning-orange-colored-banarasi-silk-saree_324.jpeg',0,'attachment','image/jpeg',0),(516,1,'2020-12-10 08:48:36','2020-12-10 08:48:36','','0079145_adorning-orange-colored-banarasi-silk-saree_324','','inherit','open','closed','','0079145_adorning-orange-colored-banarasi-silk-saree_324','','','2020-12-10 08:48:36','2020-12-10 08:48:36','',514,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0079145_adorning-orange-colored-banarasi-silk-saree_324.jpeg',0,'attachment','image/jpeg',0),(517,1,'2020-12-10 08:48:44','2020-12-10 08:48:44','','0079146_adorning-orange-colored-banarasi-silk-saree_324','','inherit','open','closed','','0079146_adorning-orange-colored-banarasi-silk-saree_324','','','2020-12-10 08:48:44','2020-12-10 08:48:44','',514,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0079146_adorning-orange-colored-banarasi-silk-saree_324.jpeg',0,'attachment','image/jpeg',0),(518,1,'2020-12-10 08:56:06','2020-12-10 08:56:06','<strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Beige Colored Embroidered Net Gharara Suit With Dupatta (Unstitched suit)','','publish','open','closed','','beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit','','','2020-12-10 08:56:06','2020-12-10 08:56:06','',0,'http://demoweblinks.in/marlins/?post_type=product&#038;p=518',0,'product','',0),(519,1,'2020-12-10 08:55:40','2020-12-10 08:55:40','','0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324','','inherit','open','closed','','0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324','','','2020-12-10 08:55:40','2020-12-10 08:55:40','',518,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0093766_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg',0,'attachment','image/jpeg',0),(520,1,'2020-12-10 08:55:50','2020-12-10 08:55:50','','0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324','','inherit','open','closed','','0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324','','','2020-12-10 08:55:50','2020-12-10 08:55:50','',518,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0093768_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg',0,'attachment','image/jpeg',0),(521,1,'2020-12-10 08:55:58','2020-12-10 08:55:58','','0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324','','inherit','open','closed','','0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324','','','2020-12-10 08:55:58','2020-12-10 08:55:58','',518,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/0093769_beige-colored-embroidered-net-gharara-suit-with-dupatta-unstitched-suit_324.jpeg',0,'attachment','image/jpeg',0),(522,1,'2020-12-10 09:04:21','2020-12-10 09:04:21','','0093780_subtle-peach-colored-designer-saree_324','','inherit','open','closed','','0093780_subtle-peach-colored-designer-saree_324','','','2020-12-10 09:04:21','2020-12-10 09:04:21','',166,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/0093780_subtle-peach-colored-designer-saree_324.jpeg',0,'attachment','image/jpeg',0),(523,1,'2020-12-10 09:04:33','2020-12-10 09:04:33','','0093781_subtle-peach-colored-designer-saree_324','','inherit','open','closed','','0093781_subtle-peach-colored-designer-saree_324','','','2020-12-10 09:04:33','2020-12-10 09:04:33','',166,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/0093781_subtle-peach-colored-designer-saree_324.jpeg',0,'attachment','image/jpeg',0),(524,1,'2020-12-10 09:04:44','2020-12-10 09:04:44','','0093782_subtle-peach-colored-designer-saree_324','','inherit','open','closed','','0093782_subtle-peach-colored-designer-saree_324','','','2020-12-10 09:04:44','2020-12-10 09:04:44','',166,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/0093782_subtle-peach-colored-designer-saree_324.jpeg',0,'attachment','image/jpeg',0),(525,1,'2020-12-10 09:24:11','2020-12-10 09:24:11','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"63% 37%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"42% 26%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"54% 24%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p>&nbsp;</p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,&nbsp;It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.&nbsp;</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"Designer wear\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"Party Wear\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"kurtis\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"394\" name=\"kerala sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"419\" image_width=\"116\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"420\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"421\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-12-10 09:24:11','2020-12-10 09:24:11','',64,'http://demoweblinks.in/marlins/2020/12/10/64-revision-v1/',0,'revision','',0),(526,1,'2020-12-10 09:25:44','2020-12-10 09:25:44','<!-- wp:html -->\n[ux_banner_grid width=\"full-width\"]\n\n[col_grid span__sm=\"12\"]\n\n[ux_slider]\n\n[ux_banner height=\"500px\" bg=\"327\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"63% 37%\"]\n\n[text_box text_color=\"dark\" width=\"56\" width__sm=\"80\" scale=\"91\" position_x=\"54\" position_y=\"50\" text_align=\"left\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Latest Fashion News for AutumN</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"325\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"42% 26%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"500px\" bg=\"329\" bg_overlay=\"rgba(0, 0, 0, 0.06)\" bg_pos=\"54% 24%\"]\n\n[text_box width__sm=\"80\" position_x=\"50\" position_y=\"50\"]\n\n<h3 class=\"alt-font\">A cool Top header</h3>\n<h2 class=\"uppercase\"><span style=\"font-size: 100%;\"><strong>Five Key Elements for your Living room</strong></span></h2>\n[divider]\n\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n\n[/col_grid]\n\n[/ux_banner_grid]\n[section label=\"Simple Center\" bg_color=\"rgb(245, 245, 245)\" padding=\"60px\" height=\"300px\"]\n\n[row h_align=\"center\"]\n\n[col span__sm=\"12\" align=\"center\"]\n\n<p>&nbsp;</p>\n<h1>Welcome To Marlins</h1>\n<p><strong>Lorem Ipsum</strong>&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>\n<p><strong>Lorem Ipsum</strong> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s,&nbsp;It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.&nbsp;</p>\n\n[/col]\n\n[/row]\n\n[/section]\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"388\" style=\"push\" name=\"Designer wear\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"389\" style=\"push\" name=\"saree\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"390\" style=\"push\" name=\"kurtis\" image_height=\"100%\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n[title style=\"bold-center\" text=\"saree COLLECTION\" size=\"106\"]\n\n[row col_style=\"dashed\"]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"393\" name=\"Kancheepuram Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"512\" name=\"party wear saree\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"395\" name=\"Fancy Sarees\" image_height=\"100%\"]\n\n\n[/team_member]\n\n[/col]\n\n[/row]\n[gap]\n\n[title style=\"bold-center\" text=\"BEST SELLING products\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" orderby=\"rand\"]\n\n[title style=\"bold-center\" text=\"Gowns\" size=\"106\"]\n\n[ux_products style=\"bounce\" col_spacing=\"collapse\" slider_nav_style=\"circle\" auto_slide=\"4000\" cat=\"87\" orderby=\"rand\"]\n\n[ux_slider style=\"focus\" pause_hover=\"false\"]\n\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"419\" image_width=\"116\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"420\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n[ux_banner height=\"378px\" bg=\"9148\" bg_overlay=\"rgba(0, 0, 0, 0.68)\" bg_pos=\"79% 68%\"]\n\n[text_box width=\"90\" width__sm=\"100\" scale=\"85\" position_x=\"50\" position_y=\"50\"]\n\n[testimonial image=\"421\" image_width=\"142\" name=\"Mark Jance\" company=\"Facebook\"]\n\n<p class=\"lead\">The overall use of flatsome is very VERY useful. It lacks very few, if any, things! I loved it and have created my first ever website Punsteronline.com! Best yet, flatsome gets free updates that are great! (and the support is amazing as well!:)</p>\n\n[/testimonial]\n\n[/text_box]\n\n[/ux_banner]\n\n[/ux_slider]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"367\" name=\"online booking\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"412\" name=\"Home delivery\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[team_member img=\"368\" name=\"Assistance\" image_height=\"100%\" image_width=\"28\"]\n\n<p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','Mega Shop','','inherit','closed','closed','','64-revision-v1','','','2020-12-10 09:25:44','2020-12-10 09:25:44','',64,'http://demoweblinks.in/marlins/2020/12/10/64-revision-v1/',0,'revision','',0),(527,1,'2020-12-10 09:27:56','2020-12-10 09:27:56','','0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','inherit','open','closed','','0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','','2020-12-10 09:27:56','2020-12-10 09:27:56','',167,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/0094353_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg',0,'attachment','image/jpeg',0),(528,1,'2020-12-10 09:28:09','2020-12-10 09:28:09','','0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','inherit','open','closed','','0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','','2020-12-10 09:28:09','2020-12-10 09:28:09','',167,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/0094354_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg',0,'attachment','image/jpeg',0),(529,1,'2020-12-10 09:28:19','2020-12-10 09:28:19','','0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','inherit','open','closed','','0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','','2020-12-10 09:28:19','2020-12-10 09:28:19','',167,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/0094355_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg',0,'attachment','image/jpeg',0),(530,1,'2020-12-10 09:28:20','2020-12-10 09:28:20','','0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','inherit','open','closed','','0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324','','','2020-12-10 09:28:20','2020-12-10 09:28:20','',167,'http://demoweblinks.in/marlins/wp-content/uploads/2014/08/0094356_arresting-bottle-green-colored-kanjivaram-silk-saree_324.jpeg',0,'attachment','image/jpeg',0),(531,1,'2020-12-10 09:37:07','2020-12-10 09:37:07','','0054982_glorious-grey-designer-bridal-gown_324 (1)','','inherit','open','closed','','0054982_glorious-grey-designer-bridal-gown_324-1','','','2020-12-10 09:37:07','2020-12-10 09:37:07','',173,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054982_glorious-grey-designer-bridal-gown_324-1.jpeg',0,'attachment','image/jpeg',0),(532,1,'2020-12-10 09:37:34','2020-12-10 09:37:34','','0054982_glorious-grey-designer-bridal-gown_324 (1)','','inherit','open','closed','','0054982_glorious-grey-designer-bridal-gown_324-1-2','','','2020-12-10 09:37:34','2020-12-10 09:37:34','',173,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054982_glorious-grey-designer-bridal-gown_324-1-1.jpeg',0,'attachment','image/jpeg',0),(533,1,'2020-12-10 09:37:35','2020-12-10 09:37:35','','0054983_glorious-grey-designer-bridal-gown_324 (1)','','inherit','open','closed','','0054983_glorious-grey-designer-bridal-gown_324-1','','','2020-12-10 09:37:35','2020-12-10 09:37:35','',173,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054983_glorious-grey-designer-bridal-gown_324-1.jpeg',0,'attachment','image/jpeg',0),(534,1,'2020-12-10 09:38:02','2020-12-10 09:38:02','','0054984_glorious-grey-designer-bridal-gown_324 (1)','','inherit','open','closed','','0054984_glorious-grey-designer-bridal-gown_324-1','','','2020-12-10 09:38:02','2020-12-10 09:38:02','',173,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054984_glorious-grey-designer-bridal-gown_324-1.jpeg',0,'attachment','image/jpeg',0),(535,1,'2020-12-10 09:38:58','2020-12-10 09:38:58','','0054949_sensational-mauve-pink-designer-gown_324','','inherit','open','closed','','0054949_sensational-mauve-pink-designer-gown_324','','','2020-12-10 09:38:58','2020-12-10 09:38:58','',174,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054949_sensational-mauve-pink-designer-gown_324.jpeg',0,'attachment','image/jpeg',0),(536,1,'2020-12-10 09:39:15','2020-12-10 09:39:15','','0054952_sensational-mauve-pink-designer-gown_324','','inherit','open','closed','','0054952_sensational-mauve-pink-designer-gown_324','','','2020-12-10 09:39:15','2020-12-10 09:39:15','',174,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054952_sensational-mauve-pink-designer-gown_324.jpeg',0,'attachment','image/jpeg',0),(537,1,'2020-12-10 09:39:16','2020-12-10 09:39:16','','0054951_sensational-mauve-pink-designer-gown_324','','inherit','open','closed','','0054951_sensational-mauve-pink-designer-gown_324','','','2020-12-10 09:39:16','2020-12-10 09:39:16','',174,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054951_sensational-mauve-pink-designer-gown_324.jpeg',0,'attachment','image/jpeg',0),(538,1,'2020-12-10 09:39:18','2020-12-10 09:39:18','','0054950_sensational-mauve-pink-designer-gown_324','','inherit','open','closed','','0054950_sensational-mauve-pink-designer-gown_324','','','2020-12-10 09:39:18','2020-12-10 09:39:18','',174,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0054950_sensational-mauve-pink-designer-gown_324.jpeg',0,'attachment','image/jpeg',0),(539,1,'2020-12-10 09:40:20','2020-12-10 09:40:20','','0059165_mesmerizing-pink-designer-bridal-gown_324','','inherit','open','closed','','0059165_mesmerizing-pink-designer-bridal-gown_324','','','2020-12-10 09:40:20','2020-12-10 09:40:20','',175,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0059165_mesmerizing-pink-designer-bridal-gown_324.jpeg',0,'attachment','image/jpeg',0),(540,1,'2020-12-10 09:40:35','2020-12-10 09:40:35','','0059167_mesmerizing-pink-designer-bridal-gown_324','','inherit','open','closed','','0059167_mesmerizing-pink-designer-bridal-gown_324','','','2020-12-10 09:40:35','2020-12-10 09:40:35','',175,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0059167_mesmerizing-pink-designer-bridal-gown_324.jpeg',0,'attachment','image/jpeg',0),(541,1,'2020-12-10 09:40:36','2020-12-10 09:40:36','','0059166_mesmerizing-pink-designer-bridal-gown_324','','inherit','open','closed','','0059166_mesmerizing-pink-designer-bridal-gown_324','','','2020-12-10 09:40:36','2020-12-10 09:40:36','',175,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0059166_mesmerizing-pink-designer-bridal-gown_324.jpeg',0,'attachment','image/jpeg',0),(542,1,'2020-12-10 09:41:21','2020-12-10 09:41:21','','0082232_delightful-blue-colored-partywear-net-gown_324','','inherit','open','closed','','0082232_delightful-blue-colored-partywear-net-gown_324','','','2020-12-10 09:41:21','2020-12-10 09:41:21','',178,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0082232_delightful-blue-colored-partywear-net-gown_324.jpeg',0,'attachment','image/jpeg',0),(543,1,'2020-12-10 09:41:33','2020-12-10 09:41:33','','0082233_delightful-blue-colored-partywear-net-gown_324','','inherit','open','closed','','0082233_delightful-blue-colored-partywear-net-gown_324','','','2020-12-10 09:41:33','2020-12-10 09:41:33','',178,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0082233_delightful-blue-colored-partywear-net-gown_324.jpeg',0,'attachment','image/jpeg',0),(544,1,'2020-12-10 09:42:07','2020-12-10 09:42:07','','0079092_awesome-maroon-colored-designer-embroidered-gown_324','','inherit','open','closed','','0079092_awesome-maroon-colored-designer-embroidered-gown_324','','','2020-12-10 09:42:07','2020-12-10 09:42:07','',179,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0079092_awesome-maroon-colored-designer-embroidered-gown_324.jpeg',0,'attachment','image/jpeg',0),(545,1,'2020-12-10 09:42:19','2020-12-10 09:42:19','','0079093_awesome-maroon-colored-designer-embroidered-gown_324','','inherit','open','closed','','0079093_awesome-maroon-colored-designer-embroidered-gown_324','','','2020-12-10 09:42:19','2020-12-10 09:42:19','',179,'http://demoweblinks.in/marlins/wp-content/uploads/2013/08/0079093_awesome-maroon-colored-designer-embroidered-gown_324.jpeg',0,'attachment','image/jpeg',0),(546,1,'2020-12-10 12:21:23','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2020-12-10 12:21:23','0000-00-00 00:00:00','',0,'http://demoweblinks.in/marlins/?p=546',1,'nav_menu_item','',0),(547,1,'2020-12-10 12:33:19','2020-12-10 12:33:19','','Shop','','publish','closed','closed','','shop-2','','','2020-12-10 12:33:19','2020-12-10 12:33:19','',0,'http://demoweblinks.in/marlins/?p=547',2,'nav_menu_item','',0),(549,1,'2020-12-11 04:16:23','2020-12-11 04:16:23','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"480\" image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n[col span=\"6\"]\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3920.9078694729005!2d76.24315751479978!3d10.664258992397693!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ba7e822fca45acb%3A0x99e8ec7e6647472a!2sENLIVEN+uPVC+WINDOWS!5e0!3m2!1sen!2sin!4v1533098645769\" width=\"100%\" height=\"450px;\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\n\n\n[/map]\n\n[/col]\n\n[/row]\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-11 04:16:23','2020-12-11 04:16:23','',88,'http://demoweblinks.in/marlins/2020/12/11/88-revision-v1/',0,'revision','',0),(550,1,'2020-12-11 04:16:47','2020-12-11 04:16:47','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"480\" image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n[col span=\"6\"]\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3920.9078694729005!2d76.24315751479978!3d10.664258992397693!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ba7e822fca45acb%3A0x99e8ec7e6647472a!2sENLIVEN+uPVC+WINDOWS!5e0!3m2!1sen!2sin!4v1533098645769\" width=\"100%\" height=\"450px;\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\n\n\n\n\n[/col]\n\n[/row]\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-11 04:16:47','2020-12-11 04:16:47','',88,'http://demoweblinks.in/marlins/2020/12/11/88-revision-v1/',0,'revision','',0),(551,1,'2020-12-11 04:17:38','2020-12-11 04:17:38','<!-- wp:html -->\n[gap]\n\n[row]\n\n[col span=\"6\" span__sm=\"12\"]\n\n[ux_image id=\"480\" image_size=\"medium\"]\n\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"6\"]\n\n[title text=\"Send us an email\"]\n\n[contact-form-7 id=\"6\"]\n\n\n[/col]\n[col span=\"6\"]\n\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3929.063943945948!2d76.35996151428209!3d10.011577075582984!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080c9d4968ed6b%3A0xac7018beb464c0b!2sInfopark!5e0!3m2!1sen!2sin!4v1607660240044!5m2!1sen!2sin\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0;\" allowfullscreen=\"\" aria-hidden=\"false\" tabindex=\"0\"></iframe>\n\n\n\n\n[/col]\n\n[/row]\n<!-- /wp:html -->','Contact','','inherit','closed','closed','','88-revision-v1','','','2020-12-11 04:17:38','2020-12-11 04:17:38','',88,'http://demoweblinks.in/marlins/2020/12/11/88-revision-v1/',0,'revision','',0),(554,1,'2020-12-11 11:51:44','2020-12-11 11:51:44','','marlins-wardrobe-ernakulam-1luz4dwsav','','inherit','open','closed','','marlins-wardrobe-ernakulam-1luz4dwsav','','','2020-12-11 11:51:44','2020-12-11 11:51:44','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/marlins-wardrobe-ernakulam-1luz4dwsav.jpg',0,'attachment','image/jpeg',0),(555,1,'2020-12-11 11:52:07','2020-12-11 11:52:07','','marlins-wardrobe-ernakulam-0vhxbhdwep','','inherit','open','closed','','marlins-wardrobe-ernakulam-0vhxbhdwep','','','2020-12-11 11:52:07','2020-12-11 11:52:07','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/marlins-wardrobe-ernakulam-0vhxbhdwep.jpg',0,'attachment','image/jpeg',0),(556,1,'2020-12-11 11:52:31','2020-12-11 11:52:31','','marlins-wardrobe-ernakulam-lbbfkejaye','','inherit','open','closed','','marlins-wardrobe-ernakulam-lbbfkejaye','','','2020-12-11 11:52:31','2020-12-11 11:52:31','',0,'http://demoweblinks.in/marlins/wp-content/uploads/2020/12/marlins-wardrobe-ernakulam-lbbfkejaye.jpg',0,'attachment','image/jpeg',0),(557,1,'2020-12-11 11:53:38','2020-12-11 11:53:38','<!-- wp:html -->\n[gap height=\"50px\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[ux_banner_grid]\n\n[col_grid span=\"3\"]\n\n[ux_image id=\"555\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"556\"]\n\n\n[/col_grid]\n[col_grid span=\"3\" height=\"1-2\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"419\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-12-11 11:53:38','2020-12-11 11:53:38','',90,'http://demoweblinks.in/marlins/2020/12/11/90-revision-v1/',0,'revision','',0),(558,1,'2020-12-11 11:54:01','2020-12-11 11:54:01','<!-- wp:html -->\n[gap height=\"50px\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[ux_banner_grid]\n\n[col_grid span=\"3\"]\n\n[ux_image id=\"555\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"556\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"419\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-12-11 11:54:01','2020-12-11 11:54:01','',90,'http://demoweblinks.in/marlins/2020/12/11/90-revision-v1/',0,'revision','',0),(559,1,'2020-12-11 11:54:54','2020-12-11 11:54:54','<!-- wp:html -->\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n\n[/col]\n\n[/row]\n[ux_banner_grid]\n\n[col_grid span=\"3\"]\n\n[ux_image id=\"555\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"556\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"419\" name=\"Jane Gray\" title=\"Public Relations\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"July Wood\" title=\"Customer Support\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-12-11 11:54:54','2020-12-11 11:54:54','',90,'http://demoweblinks.in/marlins/2020/12/11/90-revision-v1/',0,'revision','',0),(560,1,'2020-12-11 11:57:10','2020-12-11 11:57:10','<!-- wp:html -->\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n\n[/col]\n\n[/row]\n[ux_banner_grid]\n\n[col_grid span=\"3\"]\n\n[ux_image id=\"555\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"556\"]\n\n\n[/col_grid]\n[col_grid span=\"3\"]\n\n[ux_image id=\"554\"]\n\n\n[/col_grid]\n\n[/ux_banner_grid]\n[row]\n\n[col span__sm=\"12\"]\n\n<p class=\"lead text-center\"><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit. Morbi fermentum justo vitae convallis varius. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis. Nulla tristique risus ut justo pulvinar mattis. Phasellus aliquet egestas mauris in venenatis.</p>\n[divider align=\"center\"]\n\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"421\" name=\"Troy Gray\" title=\"CEO / Founder\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"3\" span__sm=\"12\"]\n\n[team_member img=\"420\" name=\"Richy Lace\" title=\"Marketing Director\" facebook=\"#\" twitter=\"#\" email=\"#\" pinterest=\"#\" linkedin=\"#\" image_height=\"100%\" image_width=\"80\" image_radius=\"100\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy.</p>\n\n[/team_member]\n\n[/col]\n[col span=\"6\" span__sm=\"12\"]\n\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/col]\n\n[/row]\n\n<!-- /wp:html -->','About','','inherit','closed','closed','','90-revision-v1','','','2020-12-11 11:57:10','2020-12-11 11:57:10','',90,'http://demoweblinks.in/marlins/2020/12/11/90-revision-v1/',0,'revision','',0),(561,1,'2020-12-14 04:12:37','2020-12-14 04:12:37','<!-- wp:html -->\n[ux_image id=\"450\"]\n\n[gap height=\"50px\"]\n\n[row]\n\n[col span__sm=\"12\"]\n\n[title style=\"center\" text=\"how does our stiching proposal\"]\n\n\n[/col]\n\n[/row]\n[row]\n\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"446\" image_width=\"75\"]\n\n<h4>Pick</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"447\" image_width=\"75\"]\n\n<h4>Stitch</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n[col span=\"4\" span__sm=\"12\"]\n\n[ux_image_box img=\"448\" image_width=\"75\"]\n\n<h4>Deliver</h4>\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>\n\n[/ux_image_box]\n\n[/col]\n\n[/row]\n[contact-form-7 id=\"12\"]\n\n\n<!-- /wp:html -->','stitching','','inherit','closed','closed','','444-revision-v1','','','2020-12-14 04:12:37','2020-12-14 04:12:37','',444,'http://demoweblinks.in/marlins/2020/12/14/444-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_social_users`
--

DROP TABLE IF EXISTS `wp_social_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_social_users` (
  `ID` int(11) NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `identifier` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `register_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  KEY `ID` (`ID`,`type`),
  KEY `identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_social_users`
--

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

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(19,1,0),(20,1,0),(21,1,0),(22,16,0),(22,17,0),(23,16,0),(23,18,0),(23,19,0),(23,20,0),(23,21,0),(24,16,0),(24,18,0),(24,19,0),(24,20,0),(24,21,0),(25,16,0),(26,16,0),(166,2,0),(166,24,0),(166,25,0),(166,26,0),(166,27,0),(166,81,0),(167,2,0),(167,9,0),(167,13,0),(167,29,0),(167,30,0),(167,31,0),(167,81,0),(168,2,0),(168,83,0),(169,2,0),(169,84,0),(170,2,0),(170,85,0),(171,2,0),(171,24,0),(171,37,0),(171,38,0),(171,39,0),(171,40,0),(171,41,0),(171,85,0),(172,2,0),(172,15,0),(172,25,0),(172,26,0),(172,42,0),(173,4,0),(173,25,0),(173,26,0),(173,43,0),(173,87,0),(174,2,0),(174,25,0),(174,26,0),(174,43,0),(174,87,0),(175,2,0),(175,25,0),(175,26,0),(175,43,0),(175,87,0),(176,2,0),(176,25,0),(176,26,0),(176,43,0),(176,83,0),(177,2,0),(177,25,0),(177,26,0),(177,43,0),(177,83,0),(178,2,0),(178,25,0),(178,26,0),(178,44,0),(178,87,0),(179,2,0),(179,24,0),(179,25,0),(179,26,0),(179,27,0),(179,87,0),(223,64,0),(224,65,0),(225,65,0),(226,65,0),(227,65,0),(228,65,0),(229,65,0),(230,64,0),(231,66,0),(254,66,0),(255,66,0),(256,66,0),(267,67,0),(268,66,0),(429,67,0),(438,67,0),(452,67,0),(468,67,0),(469,67,0),(470,67,0),(471,67,0),(472,67,0),(473,67,0),(489,2,0),(489,89,0),(494,2,0),(494,88,0),(498,2,0),(498,91,0),(501,2,0),(501,91,0),(504,2,0),(504,90,0),(508,2,0),(508,90,0),(511,2,0),(511,91,0),(514,2,0),(514,89,0),(518,2,0),(518,88,0),(547,67,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,4),(2,2,'product_type','',0,22),(3,3,'product_type','',0,0),(4,4,'product_type','',0,1),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,1),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,1),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,1),(16,16,'category','',0,5),(17,17,'post_format','',0,1),(18,18,'post_tag','',0,2),(19,19,'post_tag','',0,2),(20,20,'post_tag','',0,2),(21,21,'post_tag','',0,2),(24,24,'product_tag','',0,3),(25,25,'product_tag','',0,9),(26,26,'product_tag','',0,9),(27,27,'product_tag','',0,2),(29,29,'product_tag','',0,1),(30,30,'product_tag','',0,1),(31,31,'product_tag','',0,1),(37,37,'product_tag','',0,1),(38,38,'product_tag','',0,1),(39,39,'product_tag','',0,1),(40,40,'product_tag','',0,1),(41,41,'product_tag','',0,1),(42,42,'product_tag','',0,1),(43,43,'product_tag','',0,5),(44,44,'product_tag','',0,1),(46,46,'product_tag','',0,0),(47,47,'product_tag','',0,0),(48,48,'product_tag','',0,0),(49,49,'product_tag','',0,0),(50,50,'product_tag','',0,0),(51,51,'product_tag','',0,0),(52,52,'product_tag','',0,0),(53,53,'product_tag','',0,0),(54,54,'product_tag','',0,0),(55,55,'product_tag','',0,0),(62,62,'product_tag','',0,0),(63,63,'product_tag','',0,0),(64,64,'featured_item_category','',0,2),(65,65,'featured_item_category','',0,6),(66,66,'nav_menu','',0,5),(67,67,'nav_menu','',0,11),(68,68,'wcmp_spmv','Used for minimum price products under all single product multi vendor concept.',0,0),(69,69,'wcmp_spmv','Used for maximum price products under all single product multi vendor concept.',0,0),(70,70,'wcmp_spmv','Used for top rated vendor products under all single product multi vendor concept.',0,0),(71,71,'wcmp_gtin','',0,0),(72,72,'wcmp_gtin','',0,0),(73,73,'wcmp_gtin','',0,0),(74,74,'wcmp_gtin','',0,0),(75,75,'wcmp_gtin','',0,0),(76,76,'wcmp_gtin','',0,0),(77,77,'wcmp_gtin','',0,0),(78,78,'wcmp_gtin','',0,0),(79,79,'product_shipping_class','',0,0),(80,80,'dc_vendor_shop','',0,0),(81,81,'product_cat','',0,2),(83,83,'product_cat','',0,3),(84,84,'product_cat','',0,1),(85,85,'product_cat','',0,2),(86,86,'product_cat','',0,0),(87,87,'product_cat','',0,5),(88,88,'product_cat','',0,2),(89,89,'product_cat','',0,2),(90,90,'product_cat','',0,2),(91,91,'product_cat','',0,3),(92,92,'product_cat','',0,0),(93,93,'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) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (5,24,'product_count_product_tag','3'),(6,25,'product_count_product_tag','9'),(7,26,'product_count_product_tag','9'),(8,27,'product_count_product_tag','2'),(11,29,'product_count_product_tag','1'),(12,30,'product_count_product_tag','1'),(13,31,'product_count_product_tag','1'),(24,37,'product_count_product_tag','1'),(25,38,'product_count_product_tag','1'),(26,39,'product_count_product_tag','1'),(27,40,'product_count_product_tag','1'),(28,41,'product_count_product_tag','1'),(29,42,'product_count_product_tag','1'),(30,43,'product_count_product_tag','5'),(31,44,'product_count_product_tag','1'),(34,46,'product_count_product_tag','0'),(35,47,'product_count_product_tag','0'),(36,48,'product_count_product_tag','0'),(37,49,'product_count_product_tag','0'),(38,50,'product_count_product_tag','0'),(39,51,'product_count_product_tag','0'),(40,52,'product_count_product_tag','0'),(41,53,'product_count_product_tag','0'),(42,54,'product_count_product_tag','0'),(43,55,'product_count_product_tag','0'),(56,62,'product_count_product_tag','0'),(57,63,'product_count_product_tag','0'),(58,79,'vendor_id','2'),(59,79,'vendor_shipping_origin','GB'),(60,80,'_vendor_user_id','2'),(61,81,'order','0'),(62,81,'product_count_product_cat','2'),(63,15,'product_count_product_cat','1'),(68,83,'order','0'),(69,83,'commision','0'),(70,83,'display_type',''),(71,83,'thumbnail_id','0'),(72,84,'order','0'),(73,84,'commision','0'),(74,84,'display_type',''),(75,84,'thumbnail_id','0'),(76,85,'order','0'),(77,85,'commision','0'),(78,85,'display_type',''),(79,85,'thumbnail_id','0'),(80,86,'order','0'),(81,86,'commision','0'),(82,86,'display_type',''),(83,86,'thumbnail_id','0'),(84,87,'order','0'),(85,87,'commision','0'),(86,87,'display_type',''),(87,87,'thumbnail_id','0'),(89,83,'product_count_product_cat','3'),(90,84,'product_count_product_cat','1'),(91,85,'product_count_product_cat','2'),(92,87,'product_count_product_cat','5'),(93,88,'order','0'),(94,89,'order','0'),(95,90,'order','0'),(96,91,'order','0'),(97,92,'order','0'),(98,93,'order','0'),(99,88,'product_count_product_cat','2'),(100,89,'product_count_product_cat','2'),(101,91,'product_count_product_cat','3'),(102,90,'product_count_product_cat','2');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Style','style',0),(17,'Video','post-format-video',0),(18,'brooklyn','brooklyn',0),(19,'fashion','fashion',0),(20,'style','style-2',0),(21,'women','women-3',0),(24,'jeans','jeans-2',0),(25,'man','man',0),(26,'t-shirt','t-shirt',0),(27,'white','white',0),(29,'Diesel','diesel',0),(30,'shoe','shoe',0),(31,'stars','stars',0),(37,'fit','fit',0),(38,'levis','levis',0),(39,'party','party',0),(40,'washed-out','washed-out',0),(41,'women','women-2',0),(42,'River Island','river-island',0),(43,'Jack and Jones','jack-and-jones',0),(44,'Lee','lee',0),(46,'bag','bag',0),(47,'classic','classic',0),(48,'leather','leather',0),(49,'sweden','sweden',0),(50,'green','green',0),(51,'nypd','nypd',0),(52,'Converse','converse',0),(53,'rock chick','rock-chick',0),(54,'vans','vans',0),(55,'run','run',0),(62,'Jumper','jumper',0),(63,'Pink','pink',0),(64,'Lookbook','lookbook',0),(65,'Design','design',0),(66,'Secondary','secondary',0),(67,'Main','main',0),(68,'Min Price','min-price',0),(69,'Max Price','max-price',0),(70,'Top rated vendor','top-rated-vendor',0),(71,'UPC','upc',0),(72,'EAN','ean',0),(73,'ISBN','isbn',0),(74,'ISSN','issn',0),(75,'ISMN','ismn',0),(76,'JAN','jan',0),(77,'ITF-14','itf-14',0),(78,'MPUIN','mpuin',0),(79,'sonuvalakam-2','sonuvalakam-2',0),(80,'sonuvalakam','sonuvalakam',0),(81,'Kancheepuram Sarees','kancheepuram-sarees',0),(83,'Fancy Sarees','fancy-sarees',0),(84,'party gown','party-gown',0),(85,'Lachas','lachas',0),(86,'Lehengas','lehengas',0),(87,'Gowns','gowns',0),(88,'Ladies Wear','ladies-wear',0),(89,'Designer Wear','designer-wear',0),(90,'Leggings','leggings',0),(91,'Kurtis | Top | Saries','kurtis-top-saries',0),(92,'Churidar Materials','churidar-materials',0),(93,'Bottoms etc..','bottoms-etc',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=112 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','Marlins'),(2,1,'first_name','sonu'),(3,1,'last_name','s'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','562'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:19:\"2409:4073:95:f4f5::\";}'),(19,1,'_woocommerce_tracks_anon_id','woo:0PtcsQ9r+AFN/avoNb3safjS'),(20,1,'wc_last_active','1629676800'),(24,1,'nav_menu_recently_edited','67'),(25,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(26,1,'metaboxhidden_nav-menus','a:8:{i:0;s:20:\"add-post-type-blocks\";i:1;s:21:\"add-post-type-product\";i:2;s:27:\"add-post-type-featured_item\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:15:\"add-product_tag\";i:6;s:26:\"add-featured_item_category\";i:7;s:21:\"add-featured_item_tag\";}'),(27,1,'wp_user-settings','libraryContent=browse'),(28,1,'wp_user-settings-time','1607589716'),(42,2,'nickname','sonuvalakam'),(43,2,'first_name',''),(44,2,'last_name',''),(45,2,'description',''),(46,2,'rich_editing','true'),(47,2,'syntax_highlighting','true'),(48,2,'comment_shortcuts','false'),(49,2,'admin_color','fresh'),(50,2,'use_ssl','0'),(51,2,'show_admin_bar_front','true'),(52,2,'locale',''),(53,2,'wp_capabilities','a:1:{s:9:\"dc_vendor\";b:1;}'),(54,2,'wp_user_level','0'),(55,2,'wcmp_vendor_fields','a:2:{i:1;a:3:{s:5:\"value\";s:18:\"wrtryu7i8o90poiuyt\";s:5:\"label\";s:19:\"Company Description\";s:4:\"type\";s:8:\"textarea\";}i:2;a:3:{s:5:\"value\";s:2:\"on\";s:5:\"label\";s:19:\"Quality Certificate\";s:4:\"type\";s:8:\"checkbox\";}}'),(56,2,'session_tokens','a:1:{s:64:\"f88b954b6119139023e862ad819321533df128be3ae569b0c81bf391d69f6e0d\";a:4:{s:10:\"expiration\";i:1606475450;s:2:\"ip\";s:12:\"157.44.203.7\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36\";s:5:\"login\";i:1605265850;}}'),(57,2,'wc_last_active','1605225600'),(58,2,'shipping_class_id','79'),(59,2,'_vendor_term_id','80'),(60,2,'_vendor_page_title','sonuvalakam'),(61,2,'_vendor_added_product','1'),(63,1,'last_update','1607658343'),(64,1,'billing_first_name','sonu'),(65,1,'billing_last_name','s'),(66,1,'billing_company','ghjkl'),(67,1,'billing_address_1','dfgfhj'),(68,1,'billing_address_2','ftygu'),(69,1,'billing_city','kochi'),(70,1,'billing_state','KL'),(71,1,'billing_postcode','68316'),(72,1,'billing_country','IN'),(73,1,'billing_email','sonuvalakam@gmail.com'),(74,1,'billing_phone','09447727591'),(75,1,'shipping_method',''),(77,1,'paying_customer','1'),(79,1,'_order_count','2'),(84,1,'closedpostboxes_page','a:1:{i:0;s:22:\"flatsome_page_options2\";}'),(85,1,'metaboxhidden_page','a:0:{}'),(88,1,'woocommerce_admin_activity_panel_inbox_last_read','1607658342128'),(92,1,'meta-box-order_page','a:3:{s:4:\"side\";s:47:\"flatsome_page_options2,ht_ctc_settings_meta_box\";s:6:\"normal\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),(94,1,'closedpostboxes_nav-menus','a:0:{}'),(96,1,'session_tokens','a:2:{s:64:\"614140a912228aee01017cd5dec0a3b77b029ee8a8cae92086d05a7c9dc64fc2\";a:4:{s:10:\"expiration\";i:1629872885;s:2:\"ip\";s:37:\"2409:4073:95:f4f5:adf2:9f2c:8934:2550\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36\";s:5:\"login\";i:1629700085;}s:64:\"b87936d2de1e303fcfc3aab3e6fe7b7d12b4221ef699281ea0e117f801c86001\";a:4:{s:10:\"expiration\";i:1629872896;s:2:\"ip\";s:37:\"2409:4073:95:f4f5:adf2:9f2c:8934:2550\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36\";s:5:\"login\";i:1629700096;}}'),(97,3,'nickname','krystyna.eichel94'),(98,3,'first_name',''),(99,3,'last_name',''),(100,3,'description',''),(101,3,'rich_editing','true'),(102,3,'syntax_highlighting','true'),(103,3,'comment_shortcuts','false'),(104,3,'admin_color','fresh'),(105,3,'use_ssl','0'),(106,3,'show_admin_bar_front','true'),(107,3,'locale',''),(108,3,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(109,3,'wp_user_level','0'),(110,3,'session_tokens','a:1:{s:64:\"97bef6878560c568b8c3bee5b8a6a6bb8f12ce6b40c1009f282a5530236e8c8e\";a:4:{s:10:\"expiration\";i:1629004634;s:2:\"ip\";s:15:\"195.140.212.162\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:52.0) Gecko/20100101 Firefox/4FD9\";s:5:\"login\";i:1627795034;}}'),(111,3,'wc_last_active','1627776000');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'Marlins','$P$B1et57QYzWd4TJdbKyBTpUCWMwZ9481','marlins','joaijo93@gmail.com','http://demoweblinks.in/marlins','2020-11-09 14:43:33','',0,'Marlins'),(2,'sonuvalakam','$P$B5AKE.mz6KBaxMdqi7TKQKCMu2m30k/','sonuvalakam','sonuvalakam@gmail.com','','2020-11-13 11:10:49','',0,'sonuvalakam'),(3,'krystyna.eichel94','$P$Bfc7e/Zth54B5Hl3x87VTWpuHFPhmI1','krystyna-eichel94','krystyna.eichel94@hounslowminicoaches.co.uk','','2021-08-01 05:17:13','',0,'krystyna.eichel94');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=14789 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_note_actions`
--

LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,''),(2,2,'open-marketing-hub','Open marketing hub','http://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(6,6,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,''),(7,7,'continue-profiler','Continue Store Setup','http://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&path=/setup-wizard','unactioned',1,''),(8,7,'skip-profiler','Skip Setup','http://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&reset_profiler=0','actioned',0,''),(186,8,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,''),(208,9,'learn-more','Learn more','https://docs.woocommerce.com/document/managing-orders/?utm_source=inbox','actioned',0,''),(218,10,'tracking-opt-in','Activate usage tracking','','actioned',1,''),(222,11,'share-feedback','Share feedback','https://automattic.survey.fm/new-onboarding-survey','actioned',0,''),(223,12,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback'),(224,12,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback'),(245,15,'home-screen-feedback-share-feedback','Share feedback','https://automattic.survey.fm/home-screen-survey','actioned',0,''),(1232,20,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(1474,14,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1476,17,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1639,27,'install-mollie','Install Mollie','https://wordpress.org/plugins/mollie-payments-for-woocommerce/','actioned',1,''),(4757,48,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(6142,49,'mercadopago_q3_2021_EN','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN','actioned',1,''),(8118,54,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(8161,43,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned',1,''),(8162,42,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,''),(8163,31,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(8164,21,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,''),(8165,22,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(8181,34,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','actioned',1,''),(8197,50,'learn-more','Learn more','https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch','unactioned',1,''),(8368,23,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),(8369,24,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,''),(8370,30,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,''),(8371,30,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),(8372,28,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),(8373,29,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,''),(8628,52,'browse_extensions','Browse extensions','https://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,''),(8629,53,'browse_extensions','Browse extensions','https://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,''),(11358,38,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(11359,39,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(11873,63,'wc_simple_payments_m2_reader_launch_q1_2022','Learn more','https://woocommerce.com/in-person-payments/','actioned',0,''),(11948,55,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,''),(11949,56,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,''),(11950,57,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,''),(13065,64,'wcpay_applepay_q1_2022','Let your customers know about Apple Pay','https://developer.apple.com/apple-pay/marketing/','actioned',0,''),(13066,65,'stripe_applepay_q1_2022','Add Apple Pay','http://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=checkout&section=stripe','actioned',0,''),(13067,66,'square_applepay_q1_2022','Add Apple Pay','http://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=square','actioned',0,''),(14068,67,'lead_gen_existing_customers_1','Yes, please','https://woocommerce.com/take-your-business-to-the-next-level/?utm_source=inbox_note&utm_medium=product&utm_campaign=lead_gen_existing_customers_1','actioned',0,''),(14370,71,'pinterest_gtm_q2_2021','Get started for free','https://woocommerce.com/products/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_gtm_q2_2021','unactioned',1,''),(14444,73,'woocommerce_payments_subscriptions_nopayments_q2_2022','Start selling subscriptions','https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_nopayments_q2_2022','actioned',0,''),(14445,74,'woocommerce_payments_subscriptions_yespayments_q2_2022','Get started','https://woocommerce.com/document/payments/subscriptions/?utm_source=inbox_note&utm_medium=product&utm_campaign=woocommerce_payments_subscriptions_yespayments_q2_2022#section-2','actioned',0,''),(14750,61,'browse_extensions','Browse extensions','https://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,''),(14751,58,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/?utm_source=inbox_note&utm_medium=product&utm_campaign=wayflyer_bnpl_q4_2021','actioned',1,''),(14752,59,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_usps_q4_2021','actioned',1,''),(14753,60,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/?utm_source=inbox_note&utm_medium=product&utm_campaign=wc_shipping_mobile_app_q4_2021','actioned',1,''),(14754,3,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(14755,4,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(14756,5,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(14757,19,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(14758,18,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','actioned',1,''),(14759,25,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox_note&utm_medium=product&utm_campaign=optimizing-the-checkout-flow','actioned',1,''),(14760,26,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',1,''),(14761,32,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,''),(14762,33,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,''),(14763,36,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads?utm_source=inbox_note&utm_medium=product&utm_campaign=get-started','actioned',1,''),(14764,35,'update-wc-subscriptions-3-0-15','View latest version','https://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned',1,''),(14765,37,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,''),(14766,40,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,''),(14767,41,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,''),(14768,44,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',1,''),(14769,44,'dismiss','Dismiss','','actioned',0,''),(14770,45,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',1,''),(14771,45,'dismiss','Dismiss','','actioned',0,''),(14772,46,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',1,''),(14773,46,'dismiss','Dismiss','','actioned',0,''),(14774,47,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=learn-more','unactioned',1,''),(14775,47,'dismiss','Dismiss','','actioned',0,''),(14776,51,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',1,''),(14777,62,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',1,''),(14778,68,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,''),(14779,68,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned',0,''),(14780,69,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,''),(14781,69,'dismiss','Dismiss','','actioned',0,''),(14782,70,'pinterest_03_2022_update','Update Instructions','https://woocommerce.com/document/pinterest-for-woocommerce/?utm_source=inbox_note&utm_medium=product&utm_campaign=pinterest_03_2022_update#section-3','actioned',0,''),(14783,72,'setup_task_initiative_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned',0,''),(14784,77,'affirm_q2_2022','Get started for free','https://woocommerce.com/products/woocommerce-gateway-affirm/?utm_source=inbox_note&utm_medium=product&utm_campaign=affirm_q2_2022','unactioned',1,''),(14785,75,'setup_task_second_survey_q2_2022_share_your_input','Share your input','https://t.maze.co/87390007','actioned',0,''),(14786,76,'store_setup_survey_survey_q2_2022_share_your_thoughts','Tell us how it’s going','https://automattic.survey.fm/store-setup-survey-2022','actioned',0,''),(14787,78,'wc-admin-EU-consumer-protection','Learn more about these changes','https://ec.europa.eu/info/law/law-topic/consumer-protection-law/review-eu-consumer-law_en#guidance','actioned',1,''),(14788,79,'googlelistings_multicountrygtm_q22022','Get Google Listings & Ads – free','https://woocommerce.com/products/google-listings-and-ads/?utm_source=inbox_note&utm_medium=product&utm_campaign=googlelistings_multicountrygtm_q22022','actioned',1,'');
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_notes`
--

DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
  `layout` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `image` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_notes`
--

LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-admin-onboarding-email-marketing','info','en_US','Tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2020-11-09 14:48:34',NULL,0,'plain','',0,'info'),(2,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2020-11-09 14:48:34',NULL,0,'plain','',0,'info'),(3,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2020-11-09 14:48:34',NULL,0,'plain','',0,'info'),(4,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2020-11-09 14:48:34',NULL,0,'plain','',0,'info'),(5,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2020-11-09 14:48:34',NULL,0,'plain','',0,'info'),(6,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2020-11-09 14:48:34',NULL,0,'plain','',0,'info'),(7,'wc-admin-onboarding-profiler-reminder','update','en_US','Welcome to WooCommerce! Set up your store and start selling','We\'re here to help you going through the most important steps to get your store up and running.','{}','unactioned','woocommerce-admin','2020-11-09 14:48:34',NULL,0,'plain','',0,'info'),(8,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2020-11-11 17:08:19',NULL,0,'plain','',0,'info'),(9,'wc-admin-orders-milestone','info','en_US','First order received','Congratulations on getting your first order! Now is a great time to learn how to manage your orders.','{}','unactioned','woocommerce-admin','2020-11-13 11:48:37',NULL,0,'plain','',0,'info'),(10,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://demoweblinks.in/marlins/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2020-11-16 19:15:03',NULL,0,'plain','',0,'info'),(11,'wc-admin-store-notice-giving-feedback-2','info','en_US','Give feedback','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2020-11-17 16:22:35',NULL,0,'plain','',0,'info'),(12,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2020-11-17 16:22:35',NULL,0,'plain','',0,'info'),(13,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2020-11-20 23:43:41',NULL,0,'plain','',0,'info'),(14,'wcpay-subscriptions-2020-11','marketing','en_US','Manage subscriber payments from your store\'s dashboard','Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>  – now supporting <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Subscriptions</a>! <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2020-11-20 23:43:41',NULL,0,'plain','',0,'info'),(15,'wc-admin-home-screen-feedback','info','en_US','Help us improve the WooCommerce Home screen','We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.','{}','unactioned','woocommerce-admin','2020-11-23 03:45:09',NULL,0,'plain','',0,'info'),(16,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2020-12-10 19:13:46',NULL,0,'plain','',0,'info'),(17,'wcpay-subscriptions-2020-12','marketing','en_US','Manage payments from your store\'s dashboard','Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>! Zero setup fees or monthly fees. Just pay-as-you-go, starting at just 2.9% + $0.30 per transaction for U.S.-issued cards. <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2020-12-10 19:13:46',NULL,0,'plain','',0,'info'),(18,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2021-01-21 21:09:18',NULL,0,'plain','',0,'info'),(19,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-01-27 22:27:07',NULL,0,'plain','',0,'info'),(20,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','{}','unactioned','woocommerce-admin','2021-02-07 15:37:49',NULL,0,'plain','',0,'info'),(21,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.','{}','pending','woocommerce.com','2021-02-12 18:01:01',NULL,0,'plain','',0,'info'),(22,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-02-12 18:01:01',NULL,0,'plain','',0,'info'),(23,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-02-12 18:01:01',NULL,0,'plain','',0,'info'),(24,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-02-12 18:01:01',NULL,0,'plain','',0,'info'),(25,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-02-17 14:57:44',NULL,0,'plain','',0,'info'),(26,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2021-02-17 14:57:44',NULL,0,'plain','',0,'info'),(27,'wc-admin-effortless-payments-by-mollie','info','en_US','Effortless payments by Mollie','Offer global and local payment methods, get onboarded in minutes and supported in your language – try it now!','{}','pending','woocommerce.com','2021-02-20 14:48:39',NULL,0,'plain','',0,'info'),(28,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-20 16:47:56',NULL,0,'plain','',0,'info'),(29,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-03-20 16:47:56',NULL,0,'plain','',0,'info'),(30,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','pending','woocommerce.com','2021-03-30 19:14:05',NULL,0,'plain','',0,'info'),(31,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','{}','pending','woocommerce.com','2021-04-01 15:59:03',NULL,0,'plain','',0,'info'),(32,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2021-04-16 17:53:07',NULL,0,'plain','',0,'info'),(33,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2021-05-14 15:49:14',NULL,0,'plain','',0,'info'),(34,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes – Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.','{}','pending','woocommerce.com','2021-05-14 15:49:14',NULL,0,'plain','',0,'info'),(35,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2021-05-31 19:27:56',NULL,0,'plain','',0,'info'),(36,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2021-06-07 18:45:46',NULL,0,'plain','',0,'info'),(37,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2021-06-10 17:48:14',NULL,0,'plain','',0,'info'),(38,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-06-13 14:51:45',NULL,0,'plain','',0,'info'),(39,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-06-13 14:51:45',NULL,0,'plain','',0,'info'),(40,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','pending','woocommerce.com','2021-06-22 16:34:29',NULL,0,'plain','',0,'info'),(41,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','{}','pending','woocommerce.com','2021-06-22 16:34:29',NULL,0,'plain','',0,'info'),(42,'eu_vat_changes_2021','marketing','en_US','Get your business ready for the new EU tax regulations','On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.','{}','pending','woocommerce.com','2021-06-23 16:44:41',NULL,0,'plain','',0,'info'),(43,'wayflyer_q3_2021','marketing','en_US','Grow your revenue with Wayflyer financing and analytics','Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.','{}','pending','woocommerce.com','2021-07-16 11:12:22',NULL,0,'plain','',0,'info'),(44,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-16 11:12:22',NULL,0,'plain','',0,'info'),(45,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-16 11:12:22',NULL,0,'plain','',0,'info'),(46,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','unactioned','woocommerce.com','2021-07-16 11:12:22',NULL,0,'plain','',0,'info'),(47,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-07-16 11:12:22',NULL,0,'plain','',0,'info'),(48,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','{}','unactioned','woocommerce-admin','2021-08-06 20:36:53',NULL,0,'plain','',0,'info'),(49,'mercadopago_q3_2021_EN','marketing','en_US','Get paid with Mercado Pago Checkout','Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2021-08-31 15:28:10',NULL,0,'plain','',0,'info'),(50,'bbpos-chipper-launch','marketing','en_US','Ready to grow your business beyond online?','Collect payment in person for orders placed online using WooCommerce In-Person Payments. The BBPOS Chipper card reader can process payments securely, and keep everything synced in your WooCommerce Payments dashboard – no matter where you are.','{}','pending','woocommerce.com','2021-10-15 18:44:11',NULL,0,'plain','',0,'info'),(51,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','{}','pending','woocommerce.com','2021-11-05 01:27:02',NULL,0,'plain','',0,'info'),(52,'new_in_app_marketplace_2021_1','info','en_US','Grow your business with extensions','Check out our NEW Extensions tab to see our favorite extensions for growing your business, and discover the most popular extensions in the WooCommerce Marketplace.','{}','pending','woocommerce.com','2021-11-08 22:58:53',NULL,0,'plain','',0,'info'),(53,'new_in_app_marketplace_2021_2','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','pending','woocommerce.com','2021-11-08 22:58:53',NULL,0,'plain','',0,'info'),(54,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','{}','unactioned','woocommerce-admin','2021-11-09 21:06:20',NULL,0,'plain','',0,'info'),(55,'stripe_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-12 00:10:17',NULL,0,'plain','',0,'info'),(56,'square_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-12 00:10:17',NULL,0,'plain','',0,'info'),(57,'wcpay_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','{}','pending','woocommerce.com','2021-11-12 00:10:17',NULL,0,'plain','',0,'info'),(58,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','{}','pending','woocommerce.com','2021-11-12 00:10:17',NULL,0,'plain','',0,'info'),(59,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2021-11-12 00:10:17',NULL,0,'plain','',0,'info'),(60,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','{}','pending','woocommerce.com','2021-11-12 00:10:17',NULL,0,'plain','',0,'info'),(61,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','{}','pending','woocommerce.com','2021-11-23 16:50:16',NULL,0,'plain','',0,'info'),(62,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','{}','pending','woocommerce.com','2022-01-05 18:18:04',NULL,0,'plain','',0,'info'),(63,'wc_simple_payments_m2_reader_launch_q1_2022','marketing','en_US','Take quick and easy in-person payments','WooCommerce is continuing to power up your business with our new Simple Payments feature, built exclusively for WooCommerce In-Person Payments. Capture quick and simple payments anywhere else your customers are – or offer a local pickup option with payment taken in-person for orders placed online.','{}','pending','woocommerce.com','2022-02-05 07:59:49',NULL,0,'plain','',0,'info'),(64,'wcpay_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Diane does','See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.','{}','pending','woocommerce.com','2022-02-07 18:52:32',NULL,0,'plain','',0,'info'),(65,'stripe_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Thomas does','Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&amp;utm_medium=inboxnotification&amp;utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings &gt; Payments &gt; Stripe.','{}','pending','woocommerce.com','2022-02-07 18:52:32',NULL,0,'plain','',0,'info'),(66,'square_applepay_q1_2022','marketing','en_US','Increase conversions with a faster checkout experience','By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings &gt; Payments &gt; Square.','{}','pending','woocommerce.com','2022-02-07 18:52:32',NULL,0,'plain','',0,'info'),(67,'lead_gen_existing_customers_1','marketing','en_US','Talk to a consultant','As your business grows, you want to optimize costs, streamline operations, and sell more. We can help. Talk to us about how you can get the most out of WooCommerce.','{}','pending','woocommerce.com','2022-02-11 17:42:07',NULL,0,'plain','',0,'info'),(68,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','{}','unactioned','woocommerce.com','2022-03-10 19:00:58',NULL,0,'plain','',0,'info'),(69,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','{}','pending','woocommerce.com','2022-03-10 19:00:58',NULL,0,'plain','',0,'info'),(70,'pinterest_03_2022_update','marketing','en_US','Your Pinterest for WooCommerce plugin is out of date!','Update to the latest version of Pinterest for WooCommerce to continue using this plugin and keep your store connected with Pinterest. To update, visit <strong>Plugins &gt; Installed Plugins</strong>, and click on “update now” under Pinterest for WooCommerce.','{}','pending','woocommerce.com','2022-03-23 21:45:53',NULL,0,'plain','',0,'info'),(71,'pinterest_gtm_q2_2021','marketing','en_US','Get your products in front of a large, engaged audience','Did you know that shoppers on Pinterest spend twice as much as people on other social platforms? With the new, official Pinterest for WooCommerce, you can turn your product catalog into shoppable Pins and showcase them to 400+ million monthly users looking to buy.','{}','unactioned','woocommerce.com','2022-04-24 20:10:36',NULL,0,'plain','',0,'info'),(72,'setup_task_initiative_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','pending','woocommerce.com','2022-04-26 18:44:24',NULL,0,'plain','',0,'info'),(73,'woocommerce_payments_subscriptions_nopayments_q2_2022','marketing','en_US','Sell subscriptions online – without a paid extension','Say hello to WooCommerce Payments – now with built-in subscriptions functionality. Get free access to the features you need to start earning recurring revenue online. Pay as you go, with no setup costs or monthly fees.','{}','pending','woocommerce.com','2022-04-26 18:44:24',NULL,0,'plain','',0,'info'),(74,'woocommerce_payments_subscriptions_yespayments_q2_2022','marketing','en_US','Sell subscriptions online – no extra extension required','It\'s here! WooCommerce Payments now features built-in subscriptions functionality. No need to install an extra, paid extension – we\'ve made it simpler than ever to start earning recurring revenue. Ready to grow your business?','{}','pending','woocommerce.com','2022-04-26 18:44:24',NULL,0,'plain','',0,'info'),(75,'setup_task_second_survey_q2_2022','survey','en_US','We want to know what matters most to you','Take 2 minutes to give us your input on what is important for you while setting up your store and help shape the future of WooCommerce together.','{}','pending','woocommerce.com','2022-05-10 12:35:12',NULL,0,'plain','',0,'info'),(76,'store_setup_survey_survey_q2_2022','survey','en_US','How is your store setup going?','Our goal is to make sure you have all the right tools to start setting up your store in the smoothest way possible.\r\nWe’d love to know if we hit our mark and how we can improve. To collect your thoughts, we made a 2-minute survey.','{}','pending','woocommerce.com','2022-05-10 12:35:12',NULL,0,'plain','',0,'info'),(77,'affirm_q2_2022','marketing','en_US','Boost your business with flexible payments','Expand your customer base with smarter payment options for more shoppers. With Affirm,  you can offer the most relevant payment options at every price point – from four interest-free payments every two weeks to longer installments up to 36 months. Fast-track your revenue goals today!','{}','pending','woocommerce.com','2022-05-15 02:04:51',NULL,0,'plain','',0,'info'),(78,'wc-admin-EU-consumer-protection','marketing','en_US','Important changes to EU consumer protection laws','New regulations to help modernize and strengthen consumer protection laws in the European Union (EU) take effect on May 28, 2022. These rules impact all merchants selling to the EU, regardless of where their business is located. Further detailed information is available on the European Commission\'s official website.','{}','unactioned','woocommerce.com','2022-05-15 02:04:51',NULL,0,'plain','',0,'info'),(79,'googlelistings_multicountrygtm_q22022','marketing','en_US','Expand your audience with Multi-Country Advertising','It\'s time to expand your audience with Multi-Country Advertising, an exciting new feature in Google Listings &amp; Ads. Reach more potential customers in as many regions as you like within a single campaign, all from the convenience of your WooCommerce dashboard.','{}','unactioned','woocommerce.com','2022-05-16 15:41:20',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_category_lookup`
--

DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_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_category_lookup`
--

LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_category_lookup` VALUES (15,15),(81,81),(83,83),(84,84),(85,85),(86,86),(87,87),(88,88),(89,89),(90,90),(91,91),(92,92),(93,93);
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_customer_lookup`
--

LOCK TABLES `wp_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_customer_lookup` VALUES (1,1,'Marlins','sonu','s','joaijo93@gmail.com','2021-08-23 00:00:00','2020-11-09 14:43:33','IN','68316','kochi','KL');
/*!40000 ALTER TABLE `wp_wc_customer_lookup` 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_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wp_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT '0',
  `product_gross_revenue` double NOT NULL DEFAULT '0',
  `coupon_amount` double NOT NULL DEFAULT '0',
  `tax_amount` double NOT NULL DEFAULT '0',
  `shipping_amount` double NOT NULL DEFAULT '0',
  `shipping_tax_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_product_lookup`
--

LOCK TABLES `wp_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_order_product_lookup` VALUES (1,286,284,0,1,'2020-11-13 11:17:51',1,1999,1999,0,0,0,0),(2,287,284,0,1,'2020-11-13 11:17:51',1,1999,1999,0,0,0,0);
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_order_stats`
--

DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `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',
  `num_items_sold` int(11) NOT NULL DEFAULT '0',
  `total_sales` double NOT NULL DEFAULT '0',
  `tax_total` double NOT NULL DEFAULT '0',
  `shipping_total` double NOT NULL DEFAULT '0',
  `net_total` double NOT NULL DEFAULT '0',
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_stats`
--

LOCK TABLES `wp_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */;
INSERT INTO `wp_wc_order_stats` VALUES (286,0,'2020-11-13 11:17:51','2020-11-13 11:17:51',1,1999,0,0,1999,0,'wc-processing',1);
/*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT '0',
  `order_tax` double NOT NULL DEFAULT '0',
  `total_tax` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wp_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT '0',
  `downloadable` tinyint(1) DEFAULT '0',
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT '0',
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT '0',
  `average_rating` decimal(3,2) DEFAULT '0.00',
  `total_sales` bigint(20) DEFAULT '0',
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_meta_lookup`
--

LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (166,'',0,0,1599.0000,1599.0000,1,NULL,'instock',4,4.00,156,'',''),(167,'',0,0,17500.0000,17500.0000,0,NULL,'outofstock',3,4.33,402337,'',''),(168,'',0,0,1200.0000,1200.0000,1,NULL,'instock',0,0.00,127,'',''),(169,'',0,0,1500.0000,1500.0000,1,NULL,'instock',2,3.50,125,'',''),(170,'',0,0,29.0000,29.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(171,'',0,0,3100.0000,3100.0000,1,NULL,'instock',2,3.00,75,'',''),(172,'',0,0,2999.0000,2999.0000,0,NULL,'instock',3,3.67,32,'taxable',''),(173,'',0,0,29.0000,29.0000,0,0,'outofstock',2,4.00,266,'',''),(174,'',0,0,46800.0000,46800.0000,1,NULL,'instock',2,3.50,2928,'',''),(175,'00012',0,0,26500.0000,26500.0000,1,NULL,'instock',3,4.00,1312,'',''),(176,'',0,0,2876.0000,2876.0000,1,NULL,'instock',2,4.50,100,'',''),(177,'',0,0,1233.0000,1233.0000,1,NULL,'instock',0,0.00,54,'',''),(178,'',0,0,32500.0000,32500.0000,1,NULL,'instock',0,0.00,35634,'',''),(179,'',0,0,39999.0000,39999.0000,1,NULL,'instock',1,5.00,63,'',''),(284,'',0,0,1999.0000,1999.0000,1,NULL,'instock',0,0.00,2,'taxable',''),(486,'',0,0,2100.0000,2100.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(489,'',0,0,8000.0000,8000.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(494,'',0,0,29500.0000,29500.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(498,'',0,0,2500.0000,2500.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(501,'',0,0,3200.0000,3200.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(504,'',0,0,1900.0000,1900.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(508,'',0,0,1300.0000,1300.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(511,'',0,0,5500.0000,5500.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(514,'',0,0,5650.0000,5650.0000,1,NULL,'instock',0,0.00,0,'taxable',''),(518,'',0,0,4600.0000,4600.0000,0,NULL,'instock',0,0.00,0,'taxable','');
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT '0',
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_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_reserved_stock`
--

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

--
-- Table structure for table `wp_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) 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_wc_tax_rate_classes`
--

LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` 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_wcmp_cust_answers`
--

DROP TABLE IF EXISTS `wp_wcmp_cust_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_cust_answers` (
  `ans_ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `ques_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `ans_details` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ans_by` bigint(20) unsigned NOT NULL DEFAULT '0',
  `ans_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `ans_vote` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`ans_ID`),
  UNIQUE KEY `ques_id` (`ques_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wcmp_cust_answers`
--

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

--
-- Table structure for table `wp_wcmp_cust_questions`
--

DROP TABLE IF EXISTS `wp_wcmp_cust_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_cust_questions` (
  `ques_ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `product_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `ques_details` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ques_by` bigint(20) unsigned NOT NULL DEFAULT '0',
  `ques_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `ques_vote` longtext COLLATE utf8mb4_unicode_520_ci,
  `status` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`ques_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wcmp_cust_questions`
--

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

--
-- Table structure for table `wp_wcmp_products_map`
--

DROP TABLE IF EXISTS `wp_wcmp_products_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_products_map` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `product_map_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `product_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  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_wcmp_products_map`
--

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

--
-- Table structure for table `wp_wcmp_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_wcmp_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_shipping_zone_locations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_id` int(11) DEFAULT NULL,
  `zone_id` int(11) DEFAULT NULL,
  `location_code` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `location_type` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT 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_wcmp_shipping_zone_locations`
--

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

--
-- Table structure for table `wp_wcmp_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_wcmp_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_shipping_zone_methods` (
  `instance_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `zone_id` int(11) unsigned NOT NULL,
  `vendor_id` int(11) NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `settings` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wcmp_shipping_zone_methods`
--

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

--
-- Table structure for table `wp_wcmp_vendor_ledger`
--

DROP TABLE IF EXISTS `wp_wcmp_vendor_ledger`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_vendor_ledger` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `vendor_id` int(11) NOT NULL,
  `order_id` bigint(20) NOT NULL,
  `ref_id` bigint(20) NOT NULL,
  `ref_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `ref_info` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `ref_status` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `ref_updated` timestamp NULL DEFAULT NULL,
  `credit` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `debit` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `balance` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`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_wcmp_vendor_ledger`
--

LOCK TABLES `wp_wcmp_vendor_ledger` WRITE;
/*!40000 ALTER TABLE `wp_wcmp_vendor_ledger` DISABLE KEYS */;
INSERT INTO `wp_wcmp_vendor_ledger` VALUES (1,2,287,288,'commission','Commission generated for Order &ndash; <a href=\"http://demoweblinks.in/marlins/dashboard/vendor-orders/287\" target=\"_blank\">#287</a>','unpaid','2020-11-13 11:17:51','0','','0','2020-11-13 11:17:51');
/*!40000 ALTER TABLE `wp_wcmp_vendor_ledger` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wcmp_vendor_orders`
--

DROP TABLE IF EXISTS `wp_wcmp_vendor_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_vendor_orders` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `order_id` bigint(20) NOT NULL,
  `commission_id` bigint(20) NOT NULL,
  `commission_status` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'unpaid',
  `commission_paid_date` timestamp NULL DEFAULT NULL,
  `vendor_id` bigint(20) NOT NULL,
  `shipping_status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_id` bigint(20) NOT NULL,
  `line_item_type` longtext COLLATE utf8mb4_unicode_520_ci,
  `product_id` bigint(20) NOT NULL,
  `variation_id` bigint(20) NOT NULL DEFAULT '0',
  `quantity` bigint(20) NOT NULL DEFAULT '1',
  `commission_amount` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `shipping` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `shipping_tax_amount` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
  `is_trashed` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `vendor_orders` (`order_id`,`vendor_id`,`commission_id`,`order_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wcmp_vendor_orders`
--

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

--
-- Table structure for table `wp_wcmp_visitors_stats`
--

DROP TABLE IF EXISTS `wp_wcmp_visitors_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wcmp_visitors_stats` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `vendor_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_cookie` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_id` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ip` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `lat` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `lon` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `city` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zip` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `regionCode` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `region` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `countryCode` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `country` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `isp` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `timezone` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `visitor` (`vendor_id`,`session_id`),
  KEY `vendor_id` (`vendor_id`),
  KEY `user_id` (`user_id`),
  KEY `user_cookie` (`user_cookie`(191)),
  KEY `session_id` (`session_id`),
  KEY `ip` (`ip`)
) 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_wcmp_visitors_stats`
--

LOCK TABLES `wp_wcmp_visitors_stats` WRITE;
/*!40000 ALTER TABLE `wp_wcmp_visitors_stats` DISABLE KEYS */;
INSERT INTO `wp_wcmp_visitors_stats` VALUES (1,2,1,'wcmp_cookie5fae6b028c4a0','','157.44.203.7','9.9671','76.2904','Ernakulam','682036','KL','Kerala','IN','India','Reliance Jio Infocomm Limited','Asia/Kolkata','2020-11-13 11:16:24');
/*!40000 ALTER TABLE `wp_wcmp_visitors_stats` 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`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) 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 AUTO_INCREMENT=25 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 */;
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES (1,1,'_product_id','284'),(2,1,'_variation_id','0'),(3,1,'_qty','1'),(4,1,'_tax_class',''),(5,1,'_line_subtotal','1999'),(6,1,'_line_subtotal_tax','0'),(7,1,'_line_total','1999'),(8,1,'_line_tax','0'),(9,1,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(10,2,'_product_id','284'),(11,2,'_variation_id','0'),(12,2,'_qty','1'),(13,2,'_tax_class',''),(14,2,'_line_subtotal','1999'),(15,2,'_line_subtotal_tax','0'),(16,2,'_line_total','1999'),(17,2,'_line_tax','0'),(18,2,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(19,2,'_vendor_order_item_id','1'),(20,2,'_vendor_item_commission','0'),(21,2,'commission','0'),(22,2,'commission_rate','a:4:{s:4:\"mode\";s:6:\"vendor\";s:4:\"type\";s:7:\"percent\";s:14:\"commission_val\";d:0;s:16:\"commission_fixed\";i:0;}'),(23,1,'_vendor_id','2'),(24,1,'Sold By','sonuvalakam');
/*!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 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_order_items`
--

LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_order_items` VALUES (1,'INFORMAL Bag','line_item',286),(2,'INFORMAL Bag','line_item',287);
/*!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 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 */;
/*!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 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 */;
/*!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 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 */;
/*!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 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 */;
/*!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 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 */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
/*!50112 SET @disable_bulk_load = IF (@is_rocksdb_supported, 'SET SESSION rocksdb_bulk_load = @old_rocksdb_bulk_load', 'SET @dummy_rocksdb_bulk_load = 0') */;
/*!50112 PREPARE s FROM @disable_bulk_load */;
/*!50112 EXECUTE s */;
/*!50112 DEALLOCATE PREPARE s */;
/*!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 2022-05-20  7:53:47
